@charset "UTF-8";
/*$theme_primary: #0071ba;*/
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 96, 158, 0.7);
            box-shadow: 0 0 0 0 rgba(0, 96, 158, 0.7);
    -webkit-transform: scale(0.99);
            transform: scale(0.99);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(0, 96, 158, 0);
            box-shadow: 0 0 0 10px rgba(0, 96, 158, 0);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 96, 158, 0);
            box-shadow: 0 0 0 0 rgba(0, 96, 158, 0);
    -webkit-transform: scale(0.99);
            transform: scale(0.99);
  }
}
@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 96, 158, 0.7);
            box-shadow: 0 0 0 0 rgba(0, 96, 158, 0.7);
    -webkit-transform: scale(0.99);
            transform: scale(0.99);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(0, 96, 158, 0);
            box-shadow: 0 0 0 10px rgba(0, 96, 158, 0);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 96, 158, 0);
            box-shadow: 0 0 0 0 rgba(0, 96, 158, 0);
    -webkit-transform: scale(0.99);
            transform: scale(0.99);
  }
}
@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px) scale(0.95);
            transform: translateY(-10px) scale(0.95);
  }
  50% {
    -webkit-transform: translateY(2px) scale(1.01);
            transform: translateY(2px) scale(1.01);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px) scale(0.95);
            transform: translateY(-10px) scale(0.95);
  }
  50% {
    -webkit-transform: translateY(2px) scale(1.01);
            transform: translateY(2px) scale(1.01);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
/*!
 * Bootstrap v4.4.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #0148c4;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #3ca4ff;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: rgb(0, 127.2, 238.5);
  text-decoration: underline;
}

a:not([href]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 2.1875rem;
}

h2, .h2 {
  font-size: 1.75rem;
}

h3, .h3 {
  font-size: 1.53125rem;
}

h4, .h4 {
  font-size: 1.3125rem;
}

h5, .h5 {
  font-size: 1.09375rem;
}

h6, .h6 {
  font-size: 0.875rem;
}

.lead {
  font-size: 1.09375rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 80%;
  font-weight: 400;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.09375rem;
}

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #6c757d;
}

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container-fluid, .container-xl, .container-lg, .container-md, .container-sm {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333333333%;
          flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.row-cols-4 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.6666666667%;
          flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8.3333333333%;
          flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.6666666667%;
          flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333333333%;
          flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41.6666666667%;
          flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58.3333333333%;
          flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.6666666667%;
          flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 83.3333333333%;
          flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 91.6666666667%;
          flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.order-last {
  -webkit-box-ordinal-group: 14;
      -ms-flex-order: 13;
          order: 13;
}

.order-0 {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
      -ms-flex-order: 11;
          order: 11;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
      -ms-flex-order: 12;
          order: 12;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-md-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-md-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-md-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-md-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-md-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-md-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-md-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}
.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}
.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: rgb(183.88, 203.76, 238.48);
}
.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: rgb(122.92, 159.84, 224.32);
}

.table-hover .table-primary:hover {
  background-color: rgb(163.1867092652, 188.8510543131, 233.6732907348);
}
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: rgb(163.1867092652, 188.8510543131, 233.6732907348);
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: rgb(213.84, 216.36, 218.6);
}
.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: rgb(178.56, 183.24, 187.4);
}

.table-hover .table-secondary:hover {
  background-color: rgb(200.3075090253, 203.6560288809, 206.6324909747);
}
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: rgb(200.3075090253, 203.6560288809, 206.6324909747);
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: rgb(194.8, 230.36, 202.92);
}
.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: rgb(143.2, 209.24, 158.28);
}

.table-hover .table-success:hover {
  background-color: rgb(176.7059405941, 222.9540594059, 187.2665346535);
}
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: rgb(176.7059405941, 222.9540594059, 187.2665346535);
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: rgb(190.04, 228.96, 235.12);
}
.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: rgb(134.36, 206.64, 218.08);
}

.table-hover .table-info:hover {
  background-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: rgb(255, 237.64, 185.56);
}
.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: rgb(255, 222.76, 126.04);
}

.table-hover .table-warning:hover {
  background-color: rgb(255, 231.265, 160.06);
}
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: rgb(255, 231.265, 160.06);
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: rgb(245.2, 198.44, 202.92);
}
.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: rgb(236.8, 149.96, 158.28);
}

.table-hover .table-danger:hover {
  background-color: rgb(241.4341772152, 176.7058227848, 182.9073417722);
}
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: rgb(241.4341772152, 176.7058227848, 182.9073417722);
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: rgb(253.04, 253.32, 253.6);
}
.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: rgb(251.36, 251.88, 252.4);
}

.table-hover .table-light:hover {
  background-color: rgb(238.165, 240.57, 242.975);
}
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: rgb(238.165, 240.57, 242.975);
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: rgb(198.16, 199.84, 201.52);
}
.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: rgb(149.44, 152.56, 155.68);
}

.table-hover .table-dark:hover {
  background-color: rgb(185.0216751269, 187.09, 189.1583248731);
}
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: rgb(185.0216751269, 187.09, 189.1583248731);
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: rgb(69.1465517241, 77.125, 85.1034482759);
}
.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #fff;
  background-color: #343a40;
}
.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: rgb(69.1465517241, 77.125, 85.1034482759);
}
.table-dark.table-bordered {
  border: 0;
}
.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}
.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-responsive > .table-bordered {
  border: 0;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    -webkit-transition: none;
    transition: none;
  }
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: rgb(70.4416243655, 137.2969543147, 254.0583756345);
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(1, 72, 196, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(1, 72, 196, 0.25);
}
.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.09375rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.765625rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.765625rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.09375rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

select.form-control[size], select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}
.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #28a745;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.765625rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0.25rem;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #28a745;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #28a745;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #28a745;
  padding-right: calc(0.75em + 2.3125rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  border-color: #28a745;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #28a745;
}
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: rgb(51.6956521739, 206.3043478261, 87);
  background-color: rgb(51.6956521739, 206.3043478261, 87);
}
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #28a745;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.765625rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #dc3545;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #dc3545;
  padding-right: calc(0.75em + 2.3125rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  border-color: #dc3545;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #dc3545;
}
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: rgb(227.5316455696, 96.4683544304, 109.0253164557);
  background-color: rgb(227.5316455696, 96.4683544304, 109.0253164557);
}
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #dc3545;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #dc3545;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form-inline .form-check {
  width: 100%;
}
@media (min-width: 576px) {
  .form-inline label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group,
  .form-inline .custom-select {
    width: auto;
  }
  .form-inline .form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    -webkit-transition: none;
    transition: none;
  }
}
.btn:hover {
  color: #212529;
  text-decoration: none;
}
.btn:focus, .btn.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(1, 72, 196, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(1, 72, 196, 0.25);
}
.btn.disabled, .btn:disabled {
  opacity: 0.65;
}
a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #0148c4;
  border-color: #0148c4;
}
.btn-primary:hover {
  color: #fff;
  background-color: rgb(0.8058375635, 58.0203045685, 157.9441624365);
  border-color: rgb(0.7411167513, 53.3604060914, 145.2588832487);
}
.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: rgb(0.8058375635, 58.0203045685, 157.9441624365);
  border-color: rgb(0.7411167513, 53.3604060914, 145.2588832487);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(39.1, 99.45, 204.85, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(39.1, 99.45, 204.85, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #0148c4;
  border-color: #0148c4;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: rgb(0.7411167513, 53.3604060914, 145.2588832487);
  border-color: rgb(0.6763959391, 48.7005076142, 132.5736040609);
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(39.1, 99.45, 204.85, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(39.1, 99.45, 204.85, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:hover {
  color: #fff;
  background-color: rgb(90.2703862661, 97.7929184549, 104.4796137339);
  border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
}
.btn-secondary:focus, .btn-secondary.focus {
  color: #fff;
  background-color: rgb(90.2703862661, 97.7929184549, 104.4796137339);
  border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(130.05, 137.7, 144.5, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(130.05, 137.7, 144.5, 0.5);
}
.btn-secondary.disabled, .btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
  border-color: rgb(78.4506437768, 84.9881974249, 90.7993562232);
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(130.05, 137.7, 144.5, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(130.05, 137.7, 144.5, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:hover {
  color: #fff;
  background-color: rgb(32.6086956522, 136.1413043478, 56.25);
  border-color: rgb(30.1449275362, 125.8550724638, 52);
}
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: rgb(32.6086956522, 136.1413043478, 56.25);
  border-color: rgb(30.1449275362, 125.8550724638, 52);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(72.25, 180.2, 96.9, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(72.25, 180.2, 96.9, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: rgb(30.1449275362, 125.8550724638, 52);
  border-color: rgb(27.6811594203, 115.5688405797, 47.75);
}
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(72.25, 180.2, 96.9, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(72.25, 180.2, 96.9, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:hover {
  color: #fff;
  background-color: rgb(18.75, 132.0652173913, 150);
  border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
}
.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: rgb(18.75, 132.0652173913, 150);
  border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
}
.btn-info.disabled, .btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
  border-color: rgb(15.9166666667, 112.1086956522, 127.3333333333);
}
.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #212529;
  background-color: rgb(223.75, 167.8125, 0);
  border-color: rgb(211, 158.25, 0);
}
.btn-warning:focus, .btn-warning.focus {
  color: #212529;
  background-color: rgb(223.75, 167.8125, 0);
  border-color: rgb(211, 158.25, 0);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(221.7, 169.6, 12.1, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(221.7, 169.6, 12.1, 0.5);
}
.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: rgb(211, 158.25, 0);
  border-color: rgb(198.25, 148.6875, 0);
}
.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(221.7, 169.6, 12.1, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(221.7, 169.6, 12.1, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  color: #fff;
  background-color: rgb(200.082278481, 34.667721519, 50.5158227848);
  border-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}
.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: rgb(200.082278481, 34.667721519, 50.5158227848);
  border-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(225.25, 83.3, 96.9, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(225.25, 83.3, 96.9, 0.5);
}
.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
  border-color: rgb(178.3481012658, 30.9018987342, 45.0284810127);
}
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(225.25, 83.3, 96.9, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(225.25, 83.3, 96.9, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #212529;
  background-color: rgb(225.6875, 229.875, 234.0625);
  border-color: rgb(218.25, 223.5, 228.75);
}
.btn-light:focus, .btn-light.focus {
  color: #212529;
  background-color: rgb(225.6875, 229.875, 234.0625);
  border-color: rgb(218.25, 223.5, 228.75);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(215.75, 217.2, 218.65, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(215.75, 217.2, 218.65, 0.5);
}
.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: rgb(218.25, 223.5, 228.75);
  border-color: rgb(210.8125, 217.125, 223.4375);
}
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(215.75, 217.2, 218.65, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(215.75, 217.2, 218.65, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:hover {
  color: #fff;
  background-color: rgb(34.8534482759, 38.875, 42.8965517241);
  border-color: rgb(29.1379310345, 32.5, 35.8620689655);
}
.btn-dark:focus, .btn-dark.focus {
  color: #fff;
  background-color: rgb(34.8534482759, 38.875, 42.8965517241);
  border-color: rgb(29.1379310345, 32.5, 35.8620689655);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(82.45, 87.55, 92.65, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(82.45, 87.55, 92.65, 0.5);
}
.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: rgb(29.1379310345, 32.5, 35.8620689655);
  border-color: rgb(23.4224137931, 26.125, 28.8275862069);
}
.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(82.45, 87.55, 92.65, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(82.45, 87.55, 92.65, 0.5);
}

.btn-outline-primary {
  color: #0148c4;
  border-color: #0148c4;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #0148c4;
  border-color: #0148c4;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(1, 72, 196, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(1, 72, 196, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #0148c4;
  background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #0148c4;
  border-color: #0148c4;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(1, 72, 196, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(1, 72, 196, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
  color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:focus, .btn-outline-success.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:focus, .btn-outline-info.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}
.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:focus, .btn-outline-warning.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:focus, .btn-outline-danger.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:focus, .btn-outline-light.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:focus, .btn-outline-dark.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #3ca4ff;
  text-decoration: none;
}
.btn-link:hover {
  color: rgb(0, 127.2, 238.5);
  text-decoration: underline;
}
.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.09375rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.765625rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

.fade {
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    -webkit-transition: none;
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    -webkit-transition: none;
    transition: none;
  }
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 0.875rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropleft .dropdown-toggle::after {
  display: none;
}
.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^=top], .dropdown-menu[x-placement^=right], .dropdown-menu[x-placement^=bottom], .dropdown-menu[x-placement^=left] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: rgb(21.6283783784, 24.25, 26.8716216216);
  text-decoration: none;
  background-color: #f8f9fa;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #0148c4;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.765625rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
  z-index: 1;
}
.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}
.btn-group-toggle > .btn input[type=radio],
.btn-group-toggle > .btn input[type=checkbox],
.btn-group-toggle > .btn-group > .btn input[type=radio],
.btn-group-toggle > .btn-group > .btn input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-control-plaintext,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0%;
          flex: 1 1 0%;
  min-width: 0;
  margin-bottom: 0;
}
.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}
.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}
.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}
.input-group > .form-control:not(:last-child),
.input-group > .custom-select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .custom-file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.input-group-prepend .btn,
.input-group-append .btn {
  position: relative;
  z-index: 2;
}
.input-group-prepend .btn:focus,
.input-group-append .btn:focus {
  z-index: 3;
}
.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.input-group-text input[type=radio],
.input-group-text input[type=checkbox] {
  margin-top: 0;
}

.input-group-lg > .form-control:not(textarea),
.input-group-lg > .custom-select {
  height: calc(1.5em + 1rem + 2px);
}

.input-group-lg > .form-control,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.09375rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control:not(textarea),
.input-group-sm > .custom-select {
  height: calc(1.5em + 0.5rem + 2px);
}

.input-group-sm > .form-control,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.765625rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 1.75rem;
}

.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-control {
  position: relative;
  display: block;
  min-height: 1.3125rem;
  padding-left: 1.5rem;
}

.custom-control-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.15625rem;
  opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #0148c4;
  background-color: #0148c4;
}
.custom-control-input:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(1, 72, 196, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(1, 72, 196, 0.25);
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: rgb(70.4416243655, 137.2969543147, 254.0583756345);
}
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: rgb(121.1827411168, 169.6573604061, 254.3172588832);
  border-color: rgb(121.1827411168, 169.6573604061, 254.3172588832);
}
.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}
.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}
.custom-control-label::before {
  position: absolute;
  top: 0.15625rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 1px;
}
.custom-control-label::after {
  position: absolute;
  top: 0.15625rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: no-repeat 50%/50% 50%;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #0148c4;
  background-color: #0148c4;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(1, 72, 196, 0.5);
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(1, 72, 196, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(1, 72, 196, 0.5);
}

.custom-switch {
  padding-left: 2.25rem;
}
.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}
.custom-switch .custom-control-label::after {
  top: calc(0.15625rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: 0.5rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label::after {
    -webkit-transition: none;
    transition: none;
  }
}
.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
  -webkit-transform: translateX(0.75rem);
          transform: translateX(0.75rem);
}
.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(1, 72, 196, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.custom-select:focus {
  border-color: rgb(70.4416243655, 137.2969543147, 254.0583756345);
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(1, 72, 196, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(1, 72, 196, 0.25);
}
.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}
.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}
.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}
.custom-select::-ms-expand {
  display: none;
}
.custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.custom-select-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.765625rem;
}

.custom-select-lg {
  height: calc(1.5em + 1rem + 2px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.09375rem;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin: 0;
  opacity: 0;
}
.custom-file-input:focus ~ .custom-file-label {
  border-color: rgb(70.4416243655, 137.2969543147, 254.0583756345);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(1, 72, 196, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(1, 72, 196, 0.25);
}
.custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}
.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}
.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.5em + 0.75rem);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 0.25rem 0.25rem 0;
}

.custom-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.custom-range:focus {
  outline: none;
}
.custom-range:focus::-webkit-slider-thumb {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(1, 72, 196, 0.25);
          box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(1, 72, 196, 0.25);
}
.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(1, 72, 196, 0.25);
}
.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(1, 72, 196, 0.25);
}
.custom-range::-moz-focus-outer {
  border: 0;
}
.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #0148c4;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
}
.custom-range::-webkit-slider-thumb:active {
  background-color: rgb(121.1827411168, 169.6573604061, 254.3172588832);
}
.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #0148c4;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.custom-range::-moz-range-thumb {
  -moz-appearance: none;
       appearance: none;
}
.custom-range::-moz-range-thumb:active {
  background-color: rgb(121.1827411168, 169.6573604061, 254.3172588832);
}
.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #0148c4;
  border: 0;
  border-radius: 1rem;
  -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    -ms-transition: none;
    transition: none;
  }
}
.custom-range::-ms-thumb {
  appearance: none;
}
.custom-range::-ms-thumb:active {
  background-color: rgb(121.1827411168, 169.6573604061, 254.3172588832);
}
.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}
.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}
.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-moz-range-track {
  cursor: default;
}
.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    -webkit-transition: none;
    transition: none;
  }
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}
.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-item {
  margin-bottom: -1px;
}
.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #0148c4;
}

.nav-fill .nav-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-align: center;
}

.nav-justified .nav-item {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.5rem 1rem;
}
.navbar .container,
.navbar .container-fluid,
.navbar .container-sm,
.navbar .container-md,
.navbar .container-lg,
.navbar .container-xl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.navbar-brand {
  display: inline-block;
  padding-top: 0.3359375rem;
  padding-bottom: 0.3359375rem;
  margin-right: 1rem;
  font-size: 1.09375rem;
  line-height: inherit;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.09375rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 576px) {
  .navbar-expand-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-xl {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-xl {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-xl {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-xl {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .navbar-expand-xl .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  padding-right: 0;
  padding-left: 0;
}
.navbar-expand {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.navbar-expand .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.navbar-expand .navbar-collapse {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-text a {
  color: #fff;
}
.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.card-body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

.card-img,
.card-img-top,
.card-img-bottom {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-deck {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group > .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  .card-group > .card {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .card-columns {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion > .card {
  overflow: hidden;
}
.accordion > .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion > .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion > .card > .card-header {
  border-radius: 0;
  margin-bottom: -1px;
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #3ca4ff;
  background-color: #fff;
  border: 1px solid #dee2e6;
}
.page-link:hover {
  z-index: 2;
  color: rgb(0, 127.2, 238.5);
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 3;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(1, 72, 196, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(1, 72, 196, 0.25);
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #0148c4;
  border-color: #0148c4;
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.09375rem;
  line-height: 1.5;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.765625rem;
  line-height: 1.5;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .badge {
    -webkit-transition: none;
    transition: none;
  }
}
a.badge:hover, a.badge:focus {
  text-decoration: none;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

.badge-primary {
  color: #fff;
  background-color: #0148c4;
}
a.badge-primary:hover, a.badge-primary:focus {
  color: #fff;
  background-color: rgb(0.7411167513, 53.3604060914, 145.2588832487);
}
a.badge-primary:focus, a.badge-primary.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(1, 72, 196, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(1, 72, 196, 0.5);
}

.badge-secondary {
  color: #fff;
  background-color: #6c757d;
}
a.badge-secondary:hover, a.badge-secondary:focus {
  color: #fff;
  background-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
}
a.badge-secondary:focus, a.badge-secondary.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.badge-success {
  color: #fff;
  background-color: #28a745;
}
a.badge-success:hover, a.badge-success:focus {
  color: #fff;
  background-color: rgb(30.1449275362, 125.8550724638, 52);
}
a.badge-success:focus, a.badge-success.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.badge-info {
  color: #fff;
  background-color: #17a2b8;
}
a.badge-info:hover, a.badge-info:focus {
  color: #fff;
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
}
a.badge-info:focus, a.badge-info.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.badge-warning {
  color: #212529;
  background-color: #ffc107;
}
a.badge-warning:hover, a.badge-warning:focus {
  color: #212529;
  background-color: rgb(211, 158.25, 0);
}
a.badge-warning:focus, a.badge-warning.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.badge-danger {
  color: #fff;
  background-color: #dc3545;
}
a.badge-danger:hover, a.badge-danger:focus {
  color: #fff;
  background-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}
a.badge-danger:focus, a.badge-danger.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}
a.badge-light:hover, a.badge-light:focus {
  color: #212529;
  background-color: rgb(218.25, 223.5, 228.75);
}
a.badge-light:focus, a.badge-light.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}
a.badge-dark:hover, a.badge-dark:focus {
  color: #fff;
  background-color: rgb(29.1379310345, 32.5, 35.8620689655);
}
a.badge-dark:focus, a.badge-dark.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}
@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 3.8125rem;
}
.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: rgb(0.52, 37.44, 101.92);
  background-color: rgb(204.2, 218.4, 243.2);
  border-color: rgb(183.88, 203.76, 238.48);
}
.alert-primary hr {
  border-top-color: rgb(163.1867092652, 188.8510543131, 233.6732907348);
}
.alert-primary .alert-link {
  color: rgb(0.2611167513, 18.8004060914, 51.1788832487);
}

.alert-secondary {
  color: rgb(56.16, 60.84, 65);
  background-color: rgb(225.6, 227.4, 229);
  border-color: rgb(213.84, 216.36, 218.6);
}
.alert-secondary hr {
  border-top-color: rgb(200.3075090253, 203.6560288809, 206.6324909747);
}
.alert-secondary .alert-link {
  color: rgb(32.5205150215, 35.2305579399, 37.6394849785);
}

.alert-success {
  color: rgb(20.8, 86.84, 35.88);
  background-color: rgb(212, 237.4, 217.8);
  border-color: rgb(194.8, 230.36, 202.92);
}
.alert-success hr {
  border-top-color: rgb(176.7059405941, 222.9540594059, 187.2665346535);
}
.alert-success .alert-link {
  color: rgb(10.9449275362, 45.6950724638, 18.88);
}

.alert-info {
  color: rgb(11.96, 84.24, 95.68);
  background-color: rgb(208.6, 236.4, 240.8);
  border-color: rgb(190.04, 228.96, 235.12);
}
.alert-info hr {
  border-top-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}
.alert-info .alert-link {
  color: rgb(6.2933333333, 44.3269565217, 50.3466666667);
}

.alert-warning {
  color: rgb(132.6, 100.36, 3.64);
  background-color: rgb(255, 242.6, 205.4);
  border-color: rgb(255, 237.64, 185.56);
}
.alert-warning hr {
  border-top-color: rgb(255, 231.265, 160.06);
}
.alert-warning .alert-link {
  color: rgb(82.9625954198, 62.7912977099, 2.2774045802);
}

.alert-danger {
  color: rgb(114.4, 27.56, 35.88);
  background-color: rgb(248, 214.6, 217.8);
  border-color: rgb(245.2, 198.44, 202.92);
}
.alert-danger hr {
  border-top-color: rgb(241.4341772152, 176.7058227848, 182.9073417722);
}
.alert-danger .alert-link {
  color: rgb(73.3010989011, 17.6589010989, 22.9898901099);
}

.alert-light {
  color: rgb(128.96, 129.48, 130);
  background-color: rgb(253.6, 253.8, 254);
  border-color: rgb(253.04, 253.32, 253.6);
}
.alert-light hr {
  border-top-color: rgb(238.165, 240.57, 242.975);
}
.alert-light .alert-link {
  color: rgb(103.5492351816, 103.98, 104.4107648184);
}

.alert-dark {
  color: rgb(27.04, 30.16, 33.28);
  background-color: rgb(214.4, 215.6, 216.8);
  border-color: rgb(198.16, 199.84, 201.52);
}
.alert-dark hr {
  border-top-color: rgb(185.0216751269, 187.09, 189.1583248731);
}
.alert-dark .alert-link {
  color: rgb(4.1779310345, 4.66, 5.1420689655);
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.65625rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.progress-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #0148c4;
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    -webkit-transition: none;
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  -webkit-animation: progress-bar-stripes 1s linear infinite;
          animation: progress-bar-stripes 1s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    -webkit-animation: none;
            animation: none;
  }
}

.media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.media-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.list-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}
.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #0148c4;
  border-color: #0148c4;
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.list-group-horizontal .list-group-item:first-child {
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}
.list-group-horizontal .list-group-item:last-child {
  border-top-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}
.list-group-horizontal .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}
.list-group-horizontal .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .list-group-horizontal-sm .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-sm .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .list-group-horizontal-md .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-md .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .list-group-horizontal-lg .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-lg .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .list-group-horizontal-xl .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xl .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
.list-group-flush .list-group-item {
  border-right-width: 0;
  border-left-width: 0;
  border-radius: 0;
}
.list-group-flush .list-group-item:first-child {
  border-top-width: 0;
}
.list-group-flush:last-child .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: rgb(0.52, 37.44, 101.92);
  background-color: rgb(183.88, 203.76, 238.48);
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: rgb(0.52, 37.44, 101.92);
  background-color: rgb(163.1867092652, 188.8510543131, 233.6732907348);
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: rgb(0.52, 37.44, 101.92);
  border-color: rgb(0.52, 37.44, 101.92);
}

.list-group-item-secondary {
  color: rgb(56.16, 60.84, 65);
  background-color: rgb(213.84, 216.36, 218.6);
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: rgb(56.16, 60.84, 65);
  background-color: rgb(200.3075090253, 203.6560288809, 206.6324909747);
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: rgb(56.16, 60.84, 65);
  border-color: rgb(56.16, 60.84, 65);
}

.list-group-item-success {
  color: rgb(20.8, 86.84, 35.88);
  background-color: rgb(194.8, 230.36, 202.92);
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: rgb(20.8, 86.84, 35.88);
  background-color: rgb(176.7059405941, 222.9540594059, 187.2665346535);
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: rgb(20.8, 86.84, 35.88);
  border-color: rgb(20.8, 86.84, 35.88);
}

.list-group-item-info {
  color: rgb(11.96, 84.24, 95.68);
  background-color: rgb(190.04, 228.96, 235.12);
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: rgb(11.96, 84.24, 95.68);
  background-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: rgb(11.96, 84.24, 95.68);
  border-color: rgb(11.96, 84.24, 95.68);
}

.list-group-item-warning {
  color: rgb(132.6, 100.36, 3.64);
  background-color: rgb(255, 237.64, 185.56);
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: rgb(132.6, 100.36, 3.64);
  background-color: rgb(255, 231.265, 160.06);
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: rgb(132.6, 100.36, 3.64);
  border-color: rgb(132.6, 100.36, 3.64);
}

.list-group-item-danger {
  color: rgb(114.4, 27.56, 35.88);
  background-color: rgb(245.2, 198.44, 202.92);
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: rgb(114.4, 27.56, 35.88);
  background-color: rgb(241.4341772152, 176.7058227848, 182.9073417722);
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: rgb(114.4, 27.56, 35.88);
  border-color: rgb(114.4, 27.56, 35.88);
}

.list-group-item-light {
  color: rgb(128.96, 129.48, 130);
  background-color: rgb(253.04, 253.32, 253.6);
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: rgb(128.96, 129.48, 130);
  background-color: rgb(238.165, 240.57, 242.975);
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: rgb(128.96, 129.48, 130);
  border-color: rgb(128.96, 129.48, 130);
}

.list-group-item-dark {
  color: rgb(27.04, 30.16, 33.28);
  background-color: rgb(198.16, 199.84, 201.52);
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: rgb(27.04, 30.16, 33.28);
  background-color: rgb(185.0216751269, 187.09, 189.1583248731);
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: rgb(27.04, 30.16, 33.28);
  border-color: rgb(27.04, 30.16, 33.28);
}

.close {
  float: right;
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}
.close:hover {
  color: #000;
  text-decoration: none;
}
.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

a.close.disabled {
  pointer-events: none;
}

.toast {
  max-width: 350px;
  overflow: hidden;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  opacity: 0;
  border-radius: 0.25rem;
}
.toast:not(:last-child) {
  margin-bottom: 0.75rem;
}
.toast.showing {
  opacity: 1;
}
.toast.show {
  display: block;
  opacity: 1;
}
.toast.hide {
  display: none;
}

.toast-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.25rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.toast-body {
  padding: 0.75rem;
}

.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    -webkit-transition: none;
    transition: none;
  }
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
}
.modal.show .modal-dialog {
  -webkit-transform: none;
          transform: none;
}
.modal.modal-static .modal-dialog {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}
.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: calc(100% - 1rem);
}
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  content: "";
}
.modal-dialog-centered.modal-dialog-scrollable {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}
.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.765625rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[x-placement^=top] {
  padding: 0.4rem 0;
}
.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=top] .arrow {
  bottom: 0;
}
.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=top] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-right, .bs-tooltip-auto[x-placement^=right] {
  padding: 0 0.4rem;
}
.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=right] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=right] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=bottom] {
  padding: 0.4rem 0;
}
.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=bottom] .arrow {
  top: 0;
}
.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-left, .bs-tooltip-auto[x-placement^=left] {
  padding: 0 0.4rem;
}
.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=left] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=left] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.765625rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}
.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}
.popover .arrow::before, .popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top, .bs-popover-auto[x-placement^=top] {
  margin-bottom: 0.5rem;
}
.bs-popover-top > .arrow, .bs-popover-auto[x-placement^=top] > .arrow {
  bottom: calc(-0.5rem - 1px);
}
.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^=top] > .arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^=top] > .arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-right, .bs-popover-auto[x-placement^=right] {
  margin-left: 0.5rem;
}
.bs-popover-right > .arrow, .bs-popover-auto[x-placement^=right] > .arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}
.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^=right] > .arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^=right] > .arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom, .bs-popover-auto[x-placement^=bottom] {
  margin-top: 0.5rem;
}
.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^=bottom] > .arrow {
  top: calc(-0.5rem - 1px);
}
.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^=bottom] > .arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^=bottom] > .arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid rgb(247.35, 247.35, 247.35);
}

.bs-popover-left, .bs-popover-auto[x-placement^=left] {
  margin-right: 0.5rem;
}
.bs-popover-left > .arrow, .bs-popover-auto[x-placement^=left] > .arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}
.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^=left] > .arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^=left] > .arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  background-color: rgb(247.35, 247.35, 247.35);
  border-bottom: 1px solid rgb(234.6, 234.6, 234.6);
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529;
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    -webkit-transition: none;
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transform: none;
          transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  -webkit-transition: opacity 0s 0.6s;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    -webkit-transition: none;
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    -webkit-transition: none;
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: no-repeat 50%/100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators li {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    -webkit-transition: none;
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

@-webkit-keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spinner-border 0.75s linear infinite;
          animation: spinner-border 0.75s linear infinite;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@-webkit-keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
  }
}

@keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
  }
}
.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: spinner-grow 0.75s linear infinite;
          animation: spinner-grow 0.75s linear infinite;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #0148c4 !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: rgb(0.7411167513, 53.3604060914, 145.2588832487) !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: rgb(84.3605150215, 91.3905579399, 97.6394849785) !important;
}

.bg-success {
  background-color: #28a745 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: rgb(30.1449275362, 125.8550724638, 52) !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667) !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: rgb(211, 158.25, 0) !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: rgb(189.2151898734, 32.7848101266, 47.7721518987) !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: rgb(218.25, 223.5, 228.75) !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: rgb(29.1379310345, 32.5, 35.8620689655) !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #0148c4 !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #28a745 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded-sm {
  border-radius: 0.2rem !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-lg {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

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

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

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

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

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

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.8571428571%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 1 auto !important;
          flex: 1 1 auto !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
      -ms-flex-positive: 1 !important;
          flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
      flex-shrink: 1 !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
}

.align-items-start {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
      -ms-flex-align: baseline !important;
          align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
      align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
      align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
      align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
      align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
      align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
      align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
      -ms-grid-row-align: auto !important;
      align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
      align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
      -ms-grid-row-align: center !important;
      align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
      -ms-grid-row-align: stretch !important;
      align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}

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

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

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }
  .float-sm-right {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
}
.overflow-auto {
  overflow: auto !important;
}

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

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
          box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

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

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

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

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

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

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

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

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

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

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

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

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

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

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

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

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

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

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

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

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

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

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

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #0148c4 !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: rgb(0.6116751269, 44.0406091371, 119.8883248731) !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: rgb(72.5407725322, 78.5858369099, 83.9592274678) !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:hover, a.text-success:focus {
  color: rgb(25.2173913043, 105.2826086957, 43.5) !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: rgb(14.5, 102.1304347826, 116) !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: rgb(185.5, 139.125, 0) !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: rgb(167.4810126582, 29.0189873418, 42.2848101266) !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
  color: rgb(203.375, 210.75, 218.125) !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: rgb(17.7068965517, 19.75, 21.7931034483) !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
  a:not(.btn) {
    text-decoration: underline;
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  @page {
    size: a3;
  }
  body {
    min-width: 992px !important;
  }
  .container {
    min-width: 992px !important;
  }
  .navbar {
    display: none;
  }
  .badge {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }
  .table-dark {
    color: inherit;
  }
  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #dee2e6;
  }
  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}
.mw-sm {
  max-width: 180px;
}
.mw-md {
  max-width: 360px;
}
.mw-lg {
  max-width: 540px;
}
.mw-xl {
  max-width: 720px;
}
.mw-xxl {
  max-width: 900px;
}

html {
  background-color: #1e2939;
  min-height: 100vh;
  overflow-y: scroll;
}
html.locked {
  max-height: 100vh;
  overflow-y: hidden;
}

body {
  background-color: #1e2939;
  min-height: 100vh;
  padding-right: 0 !important;
}

div[id^=svp_] {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

h2 {
  font-size: 1.8rem;
}

p:last-child {
  margin-bottom: 0;
}

.text-muted {
  color: #acacac !important;
}

.text-low {
  color: #222 !important;
}

.text-link {
  color: #007bff;
  cursor: pointer;
}
.text-link:hover, .text-link:active {
  color: #0056b3;
  text-decoration: underline;
}

input:-webkit-autofill::first-line,
.mce-content-body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 0.9rem;
}

small {
  font-size: 0.8rem;
}

.subheading {
  border-bottom: 1px solid #ced4da;
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  padding-bottom: 0.25rem;
}
.subheading:not(:first-child) {
  margin-top: 1.5rem;
}
.subheading:not(:last-child) {
  margin-bottom: 1rem;
}

.alertify-notifier.ajs-right {
  right: -20px !important;
}
.alertify-notifier .ajs-message {
  border-radius: 0.25rem !important;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  padding: 0.75rem 1.25rem !important;
}
.alertify-notifier .ajs-message.ajs-success {
  background-color: #d4edda !important;
  border: 1px solid #c3e6cb !important;
  color: #155724 !important;
}
.alertify-notifier .ajs-message.ajs-error {
  background-color: #f8d7da !important;
  border: 1px solid #f5c6cb !important;
  color: #721c24 !important;
}
.alertify-notifier .ajs-message.ajs-warning {
  background-color: #fff3cd !important;
  border: 1px solid #ffeeba !important;
  color: #856404 !important;
}

#dashboard-nodata {
  padding: 15px;
}
#dashboard-nodata h2 {
  margin-bottom: 1.5rem;
}

.campaigns-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -15px;
}
.campaigns-grid .grid-item {
  background-clip: border-box;
  background-color: #1e2939;
  border: 1px solid #364153;
  border-radius: 0.5rem;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 15px;
  min-width: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  word-wrap: break-word;
}
@media only screen and (min-width: 768px) {
  .campaigns-grid .grid-item {
    width: calc(50% - 30px);
  }
}
@media only screen and (min-width: 1200px) {
  .campaigns-grid .grid-item {
    width: calc(33.3333333333% - 30px);
  }
}
.campaigns-grid .grid-item .chart-tools {
  background-color: #1e2939;
  border-bottom: 1px solid #364153;
  border-radius: 0.5rem 0.5rem 0 0;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  min-height: 41px;
  padding: 0.5rem 1.5rem;
}
.campaigns-grid .grid-item .chart-tools .tools,
.campaigns-grid .grid-item .chart-tools .available-charts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.campaigns-grid .grid-item .chart-tools .tools i,
.campaigns-grid .grid-item .chart-tools .available-charts i {
  background-color: #0148c4;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1.1588832487, 83.4395939086, 227.1411167513)), to(rgb(0.9, 64.8, 176.4)));
  background-image: linear-gradient(to bottom, rgb(1.1588832487, 83.4395939086, 227.1411167513), rgb(0.9, 64.8, 176.4));
  color: #fff;
  cursor: pointer;
  padding: 5px;
}
.campaigns-grid .grid-item .chart-tools .tools i:hover,
.campaigns-grid .grid-item .chart-tools .available-charts i:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(37.0121827411, 115.9771573604, 253.8878172589)), to(rgb(0.9, 64.8, 176.4)));
  background-image: linear-gradient(to bottom, rgb(37.0121827411, 115.9771573604, 253.8878172589), rgb(0.9, 64.8, 176.4));
}
.campaigns-grid .grid-item .chart-tools .tools i:first-of-type,
.campaigns-grid .grid-item .chart-tools .available-charts i:first-of-type {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.campaigns-grid .grid-item .chart-tools .tools i:last-of-type,
.campaigns-grid .grid-item .chart-tools .available-charts i:last-of-type {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}
.campaigns-grid .grid-item .chart-tools .tools i:not(:last-of-type),
.campaigns-grid .grid-item .chart-tools .available-charts i:not(:last-of-type) {
  border-right: 1px solid #1e2939;
}
.campaigns-grid .grid-item .chart-tools .available-charts i:first-of-type {
  margin-left: 5px;
}
.campaigns-grid .grid-item .chart-title {
  background-color: #1e2939;
  border-bottom: 1px solid #364153;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0;
  padding: 1rem 1.5rem;
}
.campaigns-grid .grid-item .chart-title label {
  display: block;
  margin-bottom: 0;
  padding: 5px 0;
}
.campaigns-grid .grid-item .chart-container {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.campaigns-grid .grid-item .chart-container .chart-body {
  background-color: #1e2939;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  min-height: 1px;
}
.campaigns-grid .grid-item .chart-container .chart-body .chart-body-data {
  padding: 1.5rem;
}
.campaigns-grid .grid-item .chart-container .chart-body ul[id*=list-chart-body-data-] {
  list-style: none;
  margin: -1.5rem;
  max-height: 400px;
  overflow-y: auto;
  padding: 0;
}
.campaigns-grid .grid-item .chart-container .chart-body ul[id*=list-chart-body-data-] li {
  color: #fff;
  margin: 0;
  padding: 0.5rem 1.5rem;
}
.campaigns-grid .grid-item .chart-container .chart-body ul[id*=list-chart-body-data-] li:nth-child(odd) {
  background-color: rgb(28.5, 38.95, 54.15);
}
.campaigns-grid .grid-item .chart-container .chart-body ul[id*=list-chart-body-data-] li:nth-child(even) {
  background-color: rgb(27, 36.9, 51.3);
}
.campaigns-grid .grid-item .chart-container .chart-body ul[id*=list-chart-body-data-] li:last-of-type {
  border-radius: 0 0 0.5rem 0.5rem;
}
.campaigns-grid .grid-item .chart-container .chart-body .aqua-custom-highchart-legend {
  background-color: #1e2939;
  border-top: 1px solid #364153;
  color: #fff;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-top: 0;
  max-height: 200px;
  overflow-y: scroll;
  padding: 0.75rem 1.5rem;
}
.campaigns-grid .grid-item .chart-container .chart-body .aqua-custom-highchart-legend .aqua-highchart-legend-item-left {
  float: left;
  margin-right: 15px;
  width: calc(100% - 65px);
}
.campaigns-grid .grid-item .chart-container .chart-body .aqua-custom-highchart-legend .aqua-highchart-legend-item-left .aqua-highcharts-legend-item-title {
  color: #fff;
}
.campaigns-grid .grid-item .chart-container .chart-body .aqua-custom-highchart-legend .aqua-highchart-legend-item-left .aqua-highcharts-legend-item-subtitle {
  color: #acacac;
}
.campaigns-grid .grid-item .chart-container .chart-body .aqua-custom-highchart-legend .aqua-highchart-legend-item-right {
  float: right;
  text-align: right;
  width: 50px;
}
.campaigns-grid .grid-item .chart-container .chart-body .aqua-custom-highchart-legend label {
  margin: 0;
}
.campaigns-grid .grid-item .chart-container .chart-body .aqua-custom-highchart-legend hr {
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
.campaigns-grid .grid-item .chart-container .chart-body .aqua-custom-highchart-legend hr:last-of-type {
  display: none;
}
.campaigns-grid .grid-item .chart-container .chart-body .chart-body-breadcrumbs {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #1e2939;
  border-radius: 0.5rem;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 1rem;
  padding: 0.25rem 0.75rem;
}
.campaigns-grid .grid-item .chart-container .chart-body .chart-body-breadcrumbs span {
  color: #fff;
}
.campaigns-grid .grid-item .chart-container .chart-body .chart-body-breadcrumbs i {
  margin-right: 5px;
}
.campaigns-grid .grid-item .chart-container .chart-body .chart-body-breadcrumbs a, .campaigns-grid .grid-item .chart-container .chart-body .chart-body-breadcrumbs span {
  display: block;
}
.campaigns-grid .grid-item .chart-container .chart-body .chart-body-breadcrumbs a:not(:last-child)::after, .campaigns-grid .grid-item .chart-container .chart-body .chart-body-breadcrumbs span:not(:last-child)::after {
  content: "/";
  color: #acacac;
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
.campaigns-grid .grid-item .chart-container .chart-body .chart-body-breadcrumbs a {
  color: #3ca4ff;
  cursor: pointer;
}
.campaigns-grid .grid-item .chart-container .chart-body .chart-body-breadcrumbs a:hover, .campaigns-grid .grid-item .chart-container .chart-body .chart-body-breadcrumbs a:active {
  text-decoration: underline;
}
.campaigns-grid .grid-item .chart-container .chart-body .chart-body-breadcrumbs span {
  font-weight: 500;
}
.campaigns-grid .grid-item .chart-container .chart-body .chart-body-respondents,
.campaigns-grid .grid-item .chart-container .chart-body .chart-body-answers {
  border-radius: 0.5rem;
  max-height: 430px;
  overflow-y: auto;
}
.campaigns-grid .grid-item .chart-container .chart-body .chart-body-respondents li,
.campaigns-grid .grid-item .chart-container .chart-body .chart-body-answers li {
  padding: 5px 10px;
}
.campaigns-grid .grid-item .chart-container .chart-body .chart-body-respondents li:not(:last-of-type),
.campaigns-grid .grid-item .chart-container .chart-body .chart-body-answers li:not(:last-of-type) {
  border-bottom: 1px solid rgb(24, 32.8, 45.6);
}
.campaigns-grid .grid-item .chart-container .chart-body .chart-body-respondents {
  list-style: none;
  margin: 0;
  padding: 0;
}
.campaigns-grid .grid-item .chart-container .chart-body .chart-body-respondents li {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.campaigns-grid .grid-item .chart-container .chart-body .chart-body-respondents li label {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin: 0;
}
.campaigns-grid .grid-item .chart-container .chart-body .chart-body-respondents li i {
  cursor: pointer;
  margin: 0 !important;
  padding: 3px;
}
.campaigns-grid .grid-item .chart-container .chart-body .chart-body-respondents li:nth-child(odd) {
  background-color: rgb(28.5, 38.95, 54.15);
}
.campaigns-grid .grid-item .chart-container .chart-body .chart-body-respondents li:nth-child(even) {
  background-color: rgb(27, 36.9, 51.3);
}
.campaigns-grid .grid-item .chart-container .chart-body .chart-body-answers {
  color: #fff;
  list-style: none;
  margin: 0;
  padding: 0;
}
.campaigns-grid .grid-item .chart-container .chart-body .chart-body-answers li {
  font-size: 0.8rem;
  font-weight: 700;
}
.campaigns-grid .grid-item .chart-container .chart-body .chart-body-answers li .answer {
  font-size: 0.875rem;
  font-weight: 400;
}

g.highcharts-axis-labels text {
  color: #fff !important;
  fill: #fff !important;
}

.highcharts-title,
.highcharts-subtitle,
.highcharts-legend-item text,
.highcharts-axis-title,
.highcharts-tooltip text,
.highcharts-data-label text {
  color: #fff !important;
  fill: #fff !important;
}

.highcharts-legend-item-hidden text {
  color: #acacac !important;
  fill: #acacac !important;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
  background-color: #111;
  color: #fff;
}
.bootstrap-datetimepicker-widget.dropdown-menu .fa {
  color: #fff !important;
}
.bootstrap-datetimepicker-widget .picker-switch:hover {
  background: #1e2939;
}
.bootstrap-datetimepicker-widget table > thead > tr:first-child > th:hover,
.bootstrap-datetimepicker-widget table > thead > tr:last-child > th:hover,
.bootstrap-datetimepicker-widget table td span:hover,
.bootstrap-datetimepicker-widget table td.day:hover,
.bootstrap-datetimepicker-widget table td.hour:hover,
.bootstrap-datetimepicker-widget table td.minute:hover,
.bootstrap-datetimepicker-widget table td.second:hover {
  background: #1e2939;
}

.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {
  border-bottom-color: #101828;
}

.card-table .dataTables_wrapper thead tr th.sorting:before {
  bottom: 70%;
}
.card-table .dataTables_wrapper thead tr th.sorting:after {
  top: 30%;
}
.card-table .dataTables_wrapper .dataTables_paginate {
  border-top: 1px solid #dee2e6;
  margin-top: 0 !important;
  padding: 0.75rem;
  width: 100%;
}
.card-table .dataTables_wrapper .dataTables_paginate .paginate_button {
  border-radius: 0.25rem;
  color: #fff !important;
}
.card-table .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:not(.current) {
  color: #585858 !important;
}
.card-table .dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background-color: #0148c4;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0153e3), to(#0141b0));
  background-image: linear-gradient(to bottom, #0153e3, #0141b0);
  border-color: #0148c4;
  color: #fff !important;
}
.card-table .dataTables_wrapper .dataTables_paginate .paginate_button:hover, .card-table .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  background-color: #013a9e;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#2574fe), to(#0141b0));
  background-image: linear-gradient(to bottom, #2574fe, #0141b0);
  border-color: #013591;
  color: #fff !important;
}

.date-picker-wrapper {
  background-color: #1e2939 !important;
  border-color: #364153 !important;
  z-index: 300 !important;
}
.date-picker-wrapper .normal-top .selection-top {
  color: #fff !important;
}
.date-picker-wrapper .normal-top .start-day,
.date-picker-wrapper .normal-top .end-day {
  color: #fff !important;
}
.date-picker-wrapper .month-wrapper {
  background-color: #182030 !important;
  border-color: #444 !important;
}
.date-picker-wrapper .month-wrapper table .day.valid {
  color: #fff !important;
}
.date-picker-wrapper .month-wrapper table .day.valid.checked, .date-picker-wrapper .month-wrapper table .day.valid.hovering {
  color: #000 !important;
}
.date-picker-wrapper .month-wrapper table .day.real-today {
  color: #000 !important;
}
.date-picker-wrapper .gap .gap-top-mask {
  background-color: #444 !important;
}
.date-picker-wrapper .gap .gap-bottom-mask {
  background-color: #182030 !important;
}
.date-picker-wrapper .gap .gap-lines .gap-line .gap-1 {
  border-bottom-color: #364153 !important;
  border-left-color: #182030 !important;
  border-top-color: #364153 !important;
}
.date-picker-wrapper .gap .gap-lines .gap-line .gap-2 {
  border-top-color: #182030 !important;
}
.date-picker-wrapper .gap .gap-lines .gap-line .gap-3 {
  border-bottom-color: #182030 !important;
}
.date-picker-wrapper .time1,
.date-picker-wrapper .time2 {
  padding: 10px 5px 0 5px !important;
}
.date-picker-wrapper .time1 div:first-child,
.date-picker-wrapper .time2 div:first-child {
  display: none;
}
.date-picker-wrapper .footer {
  display: none;
}

.footable .footable-paging td {
  border-color: #111 !important;
}
.footable .footable-paging .footable-pagination-wrapper .pagination li > a {
  background-color: #1e2939;
  border-color: #364153;
  color: #fff;
}
.footable .footable-paging .footable-pagination-wrapper .pagination li:first-child > a {
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
.footable .footable-paging .footable-pagination-wrapper .pagination li:last-child > a {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
.footable .footable-paging .footable-pagination-wrapper .pagination .footable-page .footable-page-link {
  background-color: #1e2939;
}
.footable .footable-paging .footable-pagination-wrapper .pagination .footable-page.active .footable-page-link {
  background-color: #0148c4 !important;
  border-color: #0148c4 !important;
  color: #fff !important;
}
.footable .footable-paging .footable-pagination-wrapper .divider,
.footable .footable-paging .footable-pagination-wrapper .label {
  display: none;
}

td.footable-sortable > span.fooicon,
th.footable-sortable > span.fooicon {
  margin-left: 5px;
  min-width: 14px;
  position: initial;
}

.tox.tox-tinymce {
  border-color: #364153 !important;
}
.tox .tox-toolbar,
.tox .tox-toolbar__overflow,
.tox .tox-toolbar__primary {
  background-color: #1e2939 !important;
  border-color: #364153 !important;
}
.tox .tox-button {
  background-color: #1e2939 !important;
  border-color: #364153 !important;
  color: #fff !important;
}
.tox .tox-button:hover:not(:disabled) {
  background-color: #364153 !important;
  border-color: #364153 !important;
}
.tox .tox-button--enabled {
  background-color: #364153 !important;
}
.tox .tox-split-button .tox-button {
  background-color: #1e2939 !important;
  border-color: #364153 !important;
}
.tox .tox-split-button:hover .tox-button {
  background-color: #364153 !important;
}
.tox .tox-menu {
  background-color: #1e2939 !important;
  border-color: #364153 !important;
}
.tox .tox-collection__item {
  color: #fff !important;
}
.tox .tox-collection__item:hover:not(.tox-collection__item--state-disabled) {
  background-color: #364153 !important;
  color: #fff !important;
}
.tox .tox-collection__item--active {
  background-color: #364153 !important;
  color: #fff !important;
}
.tox .tox-edit-area {
  border-color: #364153 !important;
}
.tox .tox-statusbar {
  background-color: #1e2939 !important;
  border-color: #364153 !important;
  color: #acacac !important;
}

.accordion .card .card-header {
  cursor: pointer;
  padding-right: 3.75rem;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.accordion .card .card-header::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 20px;
  content: "";
  height: 20px;
  position: absolute;
  right: 1.5rem;
  top: calc(50% - 9px);
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  width: 20px;
}
.accordion .card .card-header:not(.collapsed)::after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.accordion .card:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.alert ul:last-child {
  margin-bottom: 0;
}
.alert.alert-dismissible .close {
  margin-top: -2px;
}
.alert:last-child {
  margin-bottom: 0;
}

.avatar-circle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 21px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 21px;
}
.avatar-circle .initials {
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.bg-dim {
  background-color: #444;
}

.badge-orange {
  background-color: #ff6600;
  color: #fff;
}

.badge-purple {
  background-color: #cc00ff;
  color: #fff;
}

.badge-percent {
  min-width: 80px;
}
@media only screen and (min-width: 1200px) {
  .badge-percent {
    min-width: 40px;
  }
}

.btn {
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.15);
  padding: 0.375rem 0.75rem;
}
.btn[disabled] {
  background-color: #aaa;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(178.5, 178.5, 178.5)), to(#999999));
  background-image: linear-gradient(to bottom, rgb(178.5, 178.5, 178.5), #999999);
  border-color: #aaa;
  cursor: default !important;
  opacity: 1;
  pointer-events: none;
}
.btn[disabled]:hover, .btn[disabled]:active {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(178.5, 178.5, 178.5)), to(#999999));
  background-image: linear-gradient(to bottom, rgb(178.5, 178.5, 178.5), #999999);
}

.btn-primary {
  background-color: #155dfc;
  background-image: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:not(:disabled):not(.disabled).active {
  background-color: rgb(3.1101265823, 77.753164557, 242.5898734177);
  background-image: none;
}
.btn-primary:focus, .btn-primary:focus-visible {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.btn-secondary {
  background-color: #6c757d;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(121.2553648069, 130.8849785408, 139.4446351931)), to(rgb(97.2, 105.3, 112.5)));
  background-image: linear-gradient(to bottom, rgb(121.2553648069, 130.8849785408, 139.4446351931), rgb(97.2, 105.3, 112.5));
  border-color: #6c757d;
  color: #fff;
}
.btn-secondary:hover, .btn-secondary:active, .btn-secondary:not(:disabled):not(.disabled).active {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(150.9763948498, 158.4660944206, 165.1236051502)), to(rgb(97.2, 105.3, 112.5)));
  background-image: linear-gradient(to bottom, rgb(150.9763948498, 158.4660944206, 165.1236051502), rgb(97.2, 105.3, 112.5));
}

.btn-info {
  background-color: #17a2b8;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(26.3666666667, 185.7130434783, 210.9333333333)), to(rgb(20.7, 145.8, 165.6)));
  background-image: linear-gradient(to bottom, rgb(26.3666666667, 185.7130434783, 210.9333333333), rgb(20.7, 145.8, 165.6));
  border-color: #17a2b8;
  color: #fff;
}
.btn-info:hover, .btn-info:active, .btn-info:not(:disabled):not(.disabled).active {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(66.4666666667, 208.8913043478, 231.4333333333)), to(rgb(20.7, 145.8, 165.6)));
  background-image: linear-gradient(to bottom, rgb(66.4666666667, 208.8913043478, 231.4333333333), rgb(20.7, 145.8, 165.6));
}

.btn-success {
  background-color: #28a745;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(45.8550724638, 191.4449275362, 79.1)), to(rgb(36, 150.3, 62.1)));
  background-image: linear-gradient(to bottom, rgb(45.8550724638, 191.4449275362, 79.1), rgb(36, 150.3, 62.1));
  border-color: #28a745;
  color: #fff;
}
.btn-success:hover, .btn-success:active, .btn-success:not(:disabled):not(.disabled).active {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(83.8855072464, 214.0144927536, 113.6)), to(rgb(36, 150.3, 62.1)));
  background-image: linear-gradient(to bottom, rgb(83.8855072464, 214.0144927536, 113.6), rgb(36, 150.3, 62.1));
}

.btn-danger {
  background-color: #dc3545;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(223.5, 73.2, 87.6)), to(rgb(209.4151898734, 36.2848101266, 52.8721518987)));
  background-image: linear-gradient(to bottom, rgb(223.5, 73.2, 87.6), rgb(209.4151898734, 36.2848101266, 52.8721518987));
  border-color: #dc3545;
  color: #fff;
}
.btn-danger:hover, .btn-danger:active, .btn-danger:not(:disabled):not(.disabled).active {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(230.5, 113.6, 124.8)), to(rgb(209.4151898734, 36.2848101266, 52.8721518987)));
  background-image: linear-gradient(to bottom, rgb(230.5, 113.6, 124.8), rgb(209.4151898734, 36.2848101266, 52.8721518987));
}

.btn-outline-primary {
  background-color: transparent;
  border-color: #0148c4;
  color: #0148c4;
}
.btn-outline-primary:hover, .btn-outline-primary:active, .btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active {
  background-color: #0148c4;
  border-color: #0148c4;
  color: #fff;
}
.btn-outline-primary:disabled {
  background-color: transparent;
  border-color: #364153;
  color: #acacac;
  opacity: 0.6;
}

.btn-outline-secondary,
.btn-outline-success,
.btn-outline-danger,
.btn-outline-warning,
.btn-outline-info {
  background-color: transparent;
  color: #acacac;
}
.btn-outline-secondary:disabled,
.btn-outline-success:disabled,
.btn-outline-danger:disabled,
.btn-outline-warning:disabled,
.btn-outline-info:disabled {
  background-color: transparent;
  border-color: #364153;
  color: #acacac;
  opacity: 0.6;
}

.btn-outline-white {
  background-color: #0148c4;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1.1588832487, 83.4395939086, 227.1411167513)), to(rgb(0.9, 64.8, 176.4)));
  background-image: linear-gradient(to bottom, rgb(1.1588832487, 83.4395939086, 227.1411167513), rgb(0.9, 64.8, 176.4));
  border-color: #fff;
  color: #fff;
}
.btn-outline-white:hover, .btn-outline-white:active, .btn-outline-white:not(:disabled):not(.disabled).active {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(37.0121827411, 115.9771573604, 253.8878172589)), to(rgb(0.9, 64.8, 176.4)));
  background-image: linear-gradient(to bottom, rgb(37.0121827411, 115.9771573604, 253.8878172589), rgb(0.9, 64.8, 176.4));
  color: #fff;
}

span.btn {
  cursor: default;
}
span.btn.btn-primary {
  background-color: #155dfc;
  border: none;
  border-radius: 0.5rem;
  -webkit-box-shadow: none;
          box-shadow: none;
}
span.btn.btn-secondary {
  background-color: #6c757d;
  border-color: #6c757d;
}
span.btn.btn-success {
  background-color: #28a745;
  border-color: #28a745;
}
span.btn.btn-danger {
  background-color: #dc3545;
  border-color: #dc3545;
}
span.btn.btn-warning {
  background-color: #ffc107;
  border-color: #ffc107;
}
span.btn.btn-info {
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-text {
  background: transparent;
  border: none;
  color: #3ca4ff;
  padding: 0;
}
.btn-text:hover {
  color: rgb(0, 127.2, 238.5);
  text-decoration: underline;
}

.btn-inline {
  padding-bottom: calc(0.5rem - 2px);
  padding-top: calc(0.5rem - 2px);
  white-space: nowrap;
}

.btn-tile {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.1rem;
  font-weight: 600;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 120px;
  width: 100%;
}

.buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.question-camera-ui {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 580px;
}
.question-camera-ui-video {
  border-radius: 3px 3px 0 0;
  height: auto;
  width: 100%;
}
.question-camera-ui .output img {
  border-radius: 3px 3px 0 0;
  display: block;
  height: auto;
  width: 100%;
}
.question-camera-ui-controls {
  background-color: #222;
  border-radius: 0 0 3px 3px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.question-camera-ui-controls-capture, .question-camera-ui-controls-reset, .question-camera-ui-controls-save {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px;
  width: 33.3333333333%;
}
.question-camera-ui-controls-capture img, .question-camera-ui-controls-reset img, .question-camera-ui-controls-save img {
  display: block;
  height: 50px;
}
.question-camera-ui-controls-reset .fa-square {
  color: red;
}
.question-camera-ui-controls-save .fa-square {
  color: green;
}

.card {
  background-color: #1e2939;
  border: 1px solid #364153;
  border-radius: 0.5rem;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
}
.card .card-header {
  background-color: #1e2939;
  border-bottom: 1px solid #364153;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.8rem 1.5rem;
}
.card .card-header:first-child {
  border-radius: 0.5rem 0.5rem 0 0;
}
.card .card-header small {
  display: block;
  margin-top: 8px;
}
.card .card-header.card-header-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0;
}
.card .card-header.card-header-options .card-header-title {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0.8rem 1.5rem;
}
.card .card-header.card-header-options .card-header-button {
  display: block;
  padding: 0.8rem 1.5rem;
}
.card .card-img-top {
  border-radius: 0.5rem 0.5rem 0 0;
  width: 100%;
}
.card .card-body {
  padding: 1.5rem;
}
.card .card-body.border-top {
  border-top: 1px solid #364153 !important;
}
.card .card-body.card-table {
  padding: 0.75rem 0 0 0;
}
.card .card-body.card-table .table {
  border-bottom: 0;
  margin-bottom: 0;
}
.card .card-body.card-table .table tbody tr:last-of-type td {
  border-bottom: 0;
}
.card .card-body.card-table .table tbody tr:last-of-type td:first-of-type {
  border-bottom-left-radius: 0.5rem;
}
.card .card-body.card-table .table tbody tr:last-of-type td:last-of-type {
  border-bottom-right-radius: 0.5rem;
}
.card .card-body.card-table .table .table-col-left {
  padding-left: 1.5rem !important;
}
.card .card-body.card-table .table .table-col-right {
  padding-right: 1.5rem !important;
}
.card .card-body.card-table .table .table-col-color + .table-col-left {
  padding-left: calc(1.5rem - 4px) !important;
}
.card .card-body.card-table .card-table-empty {
  display: none;
  padding: 0.75rem;
  text-align: center;
}
.card .card-body.card-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.card .card-body.card-list li {
  padding: 0.75rem 1.5rem;
}
.card .card-body.card-list li:nth-child(even) {
  background-color: #f8f8f8;
}
.card.card-collapsible .card-header {
  border-bottom: 0;
  border-radius: 0.25rem;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.card.card-collapsible .card-header span {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.card.card-collapsible .card-body {
  border-top: 1px solid #364153;
  display: none;
}
.card.card-collapsible.open .card-header {
  border-radius: inherit;
}
.card.card-collapsible.open .card-header .fas {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.card.card-collapsible.open .card-body {
  display: block;
}
.card.card-inner {
  background-color: rgb(33.6465517241, 45.9836206897, 63.9284482759);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.card.card-inner .card-header {
  font-size: 0.875rem;
}
.card.card-dimmed {
  color: #585858 !important;
}
.card.card-dimmed .badge {
  background-color: #585858 !important;
  -webkit-transition: none;
  transition: none;
}
.card.card-dimmed .text-muted {
  color: #585858 !important;
}

.card-group {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.card-group .card {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.card-group .card:not(:last-of-type) {
  border-right: 1px solid #364153;
}

.collapsible-item {
  border-radius: 5px;
  display: block;
  overflow: hidden;
}
.collapsible-item .collapsible-item-header {
  background-color: #0148c4;
  border-radius: 5px 5px 0 0;
  color: #fff;
  cursor: pointer;
  padding: 10px 54px 10px 20px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.collapsible-item .collapsible-item-header:hover {
  background-color: rgb(0.85, 61.2, 166.6);
}
.collapsible-item .collapsible-item-header h3 {
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 0;
}
.collapsible-item .collapsible-item-header i {
  position: absolute;
  right: 20px;
  top: 12px;
}
.collapsible-item .collapsible-item-header i.header-open {
  display: block;
}
.collapsible-item .collapsible-item-header i.header-close {
  display: none;
}
.collapsible-item .collapsible-item-body {
  background-color: #1e2939;
  border-radius: 0 0 5px 5px;
  color: #fff;
  display: none;
  padding: 20px;
}
.collapsible-item .collapsible-item-body.white {
  background-color: #182030;
}
.collapsible-item .collapsible-item-body .collapsible-item-columns {
  display: block;
}
.collapsible-item .collapsible-item-body .collapsible-item-columns .collapsible-item-column {
  width: 100%;
}
.collapsible-item .collapsible-item-body .collapsible-item-columns .collapsible-item-column:not(:last-of-type) {
  margin-bottom: 20px;
  margin-right: 0;
}
@media only screen and (min-width: 900px) {
  .collapsible-item .collapsible-item-body .collapsible-item-columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .collapsible-item .collapsible-item-body .collapsible-item-columns .collapsible-item-column {
    width: 50%;
  }
  .collapsible-item .collapsible-item-body .collapsible-item-columns .collapsible-item-column:not(:last-of-type) {
    margin-bottom: 0;
    margin-right: 20px;
  }
}
.collapsible-item .collapsible-item-body .collapsible-item-submit {
  display: block;
  margin-top: 20px;
}
.collapsible-item:not(:last-of-type) {
  margin-bottom: 0.75rem;
}
.collapsible-item.open .collapsible-item-header {
  background-color: rgb(0.85, 61.2, 166.6);
}
.collapsible-item.open .collapsible-item-header i.header-open {
  display: none;
}
.collapsible-item.open .collapsible-item-header i.header-close {
  display: block;
}

.comment-block:not(:last-child) {
  margin-bottom: 1.5rem;
}

.comment-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.comment-container .avatar-circle {
  height: 42px;
  margin-right: 15px;
  width: 42px;
}
.comment-container .avatar-circle .initials {
  font-size: 22px;
}
.comment-container .comment {
  width: calc(100% - 57px);
}
.comment-container .comment .comment-text {
  background-color: #444;
  border-radius: 5px;
  color: #fff;
  padding: 1rem;
}
.comment-container:not(:last-child) {
  margin-bottom: 0.5rem;
}

.comment-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-left: 57px;
}
.comment-actions .comment-actions-button {
  color: #3ca4ff;
  cursor: pointer;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.comment-actions .comment-actions-button:hover, .comment-actions .comment-actions-button:active {
  text-decoration: underline;
}
.comment-actions .comment-actions-button:not(:last-child) {
  margin-right: 0.75rem;
}

.comment-reply {
  display: none;
  margin-top: 0.75rem;
  padding-left: 57px;
}

.comment-children {
  border-left: 2px solid #ccc;
  display: none;
  margin-left: 57px;
  margin-top: 1rem;
  padding-left: 15px;
}
.comment-children .comment-container .avatar-circle {
  height: 21px;
  width: 21px;
}
.comment-children .comment-container .avatar-circle .initials {
  font-size: 11px;
}
.comment-children .comment-container .comment {
  width: calc(100% - 36px);
}
.comment-children .comment-container:not(:last-child) {
  margin-bottom: 0.75rem;
}

.cookies {
  border-left: none;
  border-radius: 0;
  border-right: none;
  border-top: none;
  margin-bottom: 0;
  padding: 0.5rem 1rem;
}
.cookies .close {
  font-size: 1rem;
  line-height: 1.5;
  padding: 0.5rem 1rem;
  text-shadow: none;
}

.dropdown-menu .dropdown-item {
  line-height: 1.5;
}
.dropdown-menu .dropdown-item.disabled {
  color: #bbb;
}
.dropdown-menu.dropdown-menu-right {
  left: -10px !important;
  top: -10px !important;
}

.label-required::after {
  color: #ff0000;
  content: " *";
}

.form-label-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.form-label-group .label {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.form-label-group .form-control-toggle {
  color: #0148c4;
  cursor: pointer;
  display: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.form-control,
.form-control:focus {
  background-color: #182030;
  border-radius: 0.5rem;
  color: #fff;
  padding: 0.4375rem 0.75rem !important;
  -webkit-transition: none;
  transition: none;
}
.form-control::-webkit-input-placeholder, .form-control:focus::-webkit-input-placeholder {
  color: #acacac;
  opacity: 1;
}
.form-control::-moz-placeholder, .form-control:focus::-moz-placeholder {
  color: #acacac;
  opacity: 1;
}
.form-control:-ms-input-placeholder, .form-control:focus:-ms-input-placeholder {
  color: #acacac;
  opacity: 1;
}
.form-control::-ms-input-placeholder, .form-control:focus::-ms-input-placeholder {
  color: #acacac;
  opacity: 1;
}
.form-control::placeholder,
.form-control:focus::placeholder {
  color: #acacac;
  opacity: 1;
}
.form-control:not(input):not(textarea):not(select),
.form-control:focus:not(input):not(textarea):not(select) {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.5;
  min-height: calc(1.5em + 0.875rem);
}

.custom-select,
.custom-select:focus {
  background: #182030 url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23fff' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
  border-radius: 0.5rem;
  color: #fff;
  padding: 0.4375rem 0.75rem !important;
  -webkit-transition: none;
  transition: none;
}

.form-control,
.custom-select {
  border: 1px solid #364153;
  display: block;
  width: 100%;
}
.form-control:disabled, .form-control.locked,
.custom-select:disabled,
.custom-select.locked {
  background-color: #222;
  color: #adadad;
  cursor: default;
}

.custom-file-label {
  background-color: #182030;
  border: 1px solid #444;
  color: #fff;
  -webkit-transition: none;
  transition: none;
}
.custom-file-label:after {
  background-color: #182030;
  color: #fff;
}

.custom-file-input:disabled ~ .custom-file-label,
.custom-file-input[disabled] ~ .custom-file-label {
  background-color: #222;
  color: #adadad;
}
.custom-file-input:disabled ~ .custom-file-label:after,
.custom-file-input[disabled] ~ .custom-file-label:after {
  background-color: #222;
  color: #adadad;
}

.form-control:is(textarea) {
  min-height: 35px;
}

.custom-control-label:before {
  background-color: #182030;
  border-color: #444;
  -webkit-transition: none;
  transition: none;
}

.form-group:last-child {
  margin-bottom: 0;
}
.form-group.wysiwyg {
  margin-left: -1rem;
  margin-right: -1rem;
  margin-top: -1rem;
}
@media only screen and (min-width: 576px) {
  .form-group.wysiwyg {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
  }
}
.form-group p:not(:last-child) {
  margin-bottom: 0.5rem;
}
@media only screen and (min-width: 992px) {
  .form-group.no-counter {
    padding-bottom: calc(19.19px + 0.25rem);
  }
}

.form-combined {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.form-combined .form-control {
  margin-right: 10px;
}
.form-combined .btn {
  padding: calc(0.5rem - 2px) 0.75rem;
}

.range {
  -webkit-appearance: none;
  background: #d3d3d3;
  border-radius: 10px;
  height: 20px;
  outline: none;
  width: 100%;
}
.range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  background: #0148c4;
  border-radius: 50%;
  cursor: pointer;
  height: 30px;
  width: 30px;
}
.range::-moz-range-thumb {
  background: #0148c4;
  border-radius: 50%;
  cursor: pointer;
  height: 30px;
  width: 30px;
}

.range-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  max-width: 650px;
}
.range-group .range-group-value {
  margin-right: 0.75rem;
}
.range-group .range-group-value .range-value {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #444;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  min-width: 45px;
  padding: 10px;
}
.range-group .range-group-value .range-value span {
  color: #fff;
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
}
.range-group .range-group-control {
  width: 100%;
}
.range-group .range-group-control .range {
  margin-bottom: 5px;
  margin-top: 5px;
}
.range-group .range-group-control .range-labels {
  color: #acacac;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 0.7rem;
}
.range-group .range-group-control .range-labels .range-labels-start {
  padding: 0 5px;
  text-align: left;
  width: 33.3333333333%;
}
.range-group .range-group-control .range-labels .range-labels-middle {
  padding: 0 5px;
  text-align: center;
  width: 33.3333333333%;
}
.range-group .range-group-control .range-labels .range-labels-end {
  padding: 0 10px;
  text-align: right;
  width: 33.3333333333%;
}

.form-value {
  display: block;
}

.input-group-text {
  background-color: #182030;
  border-color: #444;
  color: #fff;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #182030 inset !important;
}

input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(1, 72, 196, 0.25), 0 0 0 30px #182030 inset !important;
}

input:-webkit-autofill {
  -webkit-text-fill-color: #fff !important;
}

.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -5px;
}
.gallery .gallery-image {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 74px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 5px;
  padding: 4px;
  position: relative;
  width: 74px;
}
@media only screen and (min-width: 768px) {
  .gallery .gallery-image {
    height: 106px;
    width: 106px;
  }
}
@media only screen and (min-width: 992px) {
  .gallery .gallery-image {
    height: 138px;
    width: 138px;
  }
}
.gallery .gallery-image img {
  display: block;
  max-height: 100%;
  max-width: 100%;
}
.gallery .gallery-image .gallery-image-delete {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 50%;
  color: #0148c4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 4px;
  text-decoration: none;
  top: 4px;
  width: 24px;
}
.gallery .gallery-image .gallery-image-delete i {
  font-size: 0.8rem;
  margin-top: 1px;
}
.gallery .gallery-image .gallery-image-delete:hover, .gallery .gallery-image .gallery-image-delete:active {
  background-color: #0148c4;
  border-color: #0148c4;
  color: #fff;
}

.helper {
  display: none;
}

.jumbotron {
  background-color: #1e2939;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  color: #fff;
}
.jumbotron hr {
  border-top: 1px solid #222;
}

.legend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.legend .legend-badge {
  display: block;
  margin-right: 0.5rem;
  min-width: 40px;
}
.legend .legend-label {
  display: block;
  line-height: 1;
}

.loading {
  padding-left: 15%;
  padding-right: 15%;
}
.loading .loading-container {
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  margin: 60px auto 0 auto;
  max-width: 600px;
  padding: 1.5rem;
  text-align: center;
}
.loading .loading-container i {
  margin-bottom: 1.5rem;
}
.loading .loading-container p:nth-of-type(1) {
  font-weight: 700;
}
.loading .loading-container label {
  margin-bottom: 0;
}

.modal {
  padding-right: 0 !important;
}

.progress {
  background-color: #484848;
}
.progress.progress-shadow {
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.table {
  color: #fff;
}
.table thead th,
.table tbody td {
  border-color: #111 !important;
  vertical-align: middle !important;
}
.table:last-child {
  margin-bottom: 0;
}
.table .table-col-color {
  background-color: transparent;
  min-width: 4px;
  padding: 0 !important;
  width: 4px;
}
.table .table-col-color.default {
  background-color: #e8e8e8;
}
.table .table-col-color.danger {
  background-color: #dc3545;
}
.table .table-col-color.warning {
  background-color: #ffc107;
}
.table .table-col-color.info {
  background-color: #17a2b8;
}
.table .table-col-color.success {
  background-color: #28a745;
}
.table .table-col-color.complete {
  background-color: #28a745;
}
.table .table-col-color.draft {
  background-color: #6c757d;
}
.table .table-col-color.overdue {
  background-color: #dc3545;
}
.table .table-col-color.published {
  background-color: #007bff;
}
.table .table-col-color.paused {
  background-color: #ffc107;
}
.table .table-col-color.scheduled {
  background-color: #ffc107;
}
.table .table-col-color.closed {
  background-color: #343a40;
}
.table .table-col-color.pending {
  background-color: #f9a406;
}
.table .table-col-id {
  width: 56px;
}
.table .table-col-checkbox {
  padding-left: 15px !important;
  padding-right: 0.5rem !important;
}
.table td.table-col-checkbox {
  background-color: #1e2939;
}
.table .table-col-primary {
  width: 100%;
}
.table .table-col-primary .table-col-primary-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.table .table-col-primary .table-col-primary-wrapper .table-col-primary-icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 0.75rem;
  width: 21px;
}
.table .table-col-primary .table-col-primary-wrapper .table-col-primary-icon i {
  color: #666;
  font-size: 1.5em;
  margin-top: 1px;
}
.table .table-col-primary .table-col-primary-wrapper .table-col-primary-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.table .table-col-primary .table-col-primary-wrapper .table-col-primary-main .table-col-primary-link {
  color: #fff;
}
.table .table-col-primary .table-col-primary-wrapper .table-col-primary-link {
  font-weight: 600;
}
.table .table-col-primary .table-col-primary-wrapper .table-col-primary-subitems {
  color: #d8d8d8;
  font-size: 0.75rem;
  margin-top: 3px;
}
.table .table-col-primary .table-col-primary-wrapper .table-col-primary-subitems a {
  text-decoration: none;
}
.table .table-col-primary .table-col-primary-wrapper .table-col-primary-subitems a:hover span, .table .table-col-primary .table-col-primary-wrapper .table-col-primary-subitems a:active span {
  text-decoration: underline;
}
.table .table-col-title {
  width: 200px;
}
.table .table-col-name {
  width: 320px;
}
.table .table-col-name--first {
  width: 140px;
}
.table .table-col-name--last {
  width: 180px;
}
.table .table-col-icon {
  max-width: 14px;
  vertical-align: middle;
  width: 14px;
}
.table .table-col-badge {
  width: 50px;
}
.table .table-col-progress {
  width: 120px;
}
.table .table-col-avatar {
  width: 84px;
}
.table .table-col-date {
  width: 122px;
}
.table .table-col-date--start, .table .table-col-date--due {
  width: 82px;
}
.table .table-col-visibility {
  width: 88px;
}
.table .table-col-status {
  width: 50px;
}
.table .table-col-recipients {
  width: 92px;
}
.table .table-col-assignedto {
  width: 104px;
}
.table .table-col-locked {
  width: 64px;
}
.table .table-col-deleted {
  width: 68px;
}
.table .table-col-active {
  width: 58px;
}
.table .table-col-statement--gained {
  text-align: right;
  width: 80px;
}
.table .table-col-statement--gained:not(th) {
  color: #28a745;
  font-weight: 700;
}
.table .table-col-statement--spent {
  text-align: right;
  width: 80px;
}
.table .table-col-statement--spent:not(th) {
  color: #dc3545;
  font-weight: 700;
}
.table .table-col-statement--total {
  text-align: right;
  width: 80px;
}
.table .table-col-statement--total:not(th) {
  font-weight: 700;
}
.table .table-col-options {
  width: 30px;
}
.table .table-col-actions {
  width: 82px;
}
.table .table-col-actions .dropdown .btn {
  background-color: transparent;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
  display: block;
  padding: 0;
  text-align: right;
}
.table .table-col-actions .dropdown .btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.table .table-col-actions .dropdown .dropdown-menu {
  border: 0;
  margin-right: 0.25rem;
  padding: 0;
}
.table .table-col-actions .dropdown .dropdown-menu .dropdown-item {
  background-color: #0148c4;
  color: #fff;
  padding: 0.25rem 0.75rem;
}
.table .table-col-actions .dropdown .dropdown-menu .dropdown-item:hover, .table .table-col-actions .dropdown .dropdown-menu .dropdown-item:active {
  background-color: rgb(39.1, 99.45, 204.85);
}
.table .table-col-actions .dropdown .dropdown-menu .dropdown-item:first-of-type {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.table .table-col-actions .dropdown .dropdown-menu .dropdown-item:last-of-type {
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.table .table-col-sm {
  width: 80px;
}
.table .table-col-md {
  width: 120px;
}
.table .table-col-lg {
  width: 160px;
}
.table .table-col-xl {
  width: 200px;
}
.table .table-col-fit {
  white-space: nowrap;
  width: 1px;
}
.table .table-col-center {
  text-align: center;
}
.table th, .table td {
  padding: 0.75rem !important;
}

.table-isolated th {
  border-top: none;
  padding-top: 0 !important;
}

.table-hover a:hover,
.footable.table-hover a:hover {
  text-decoration: none;
}
.table-hover tbody tr:hover,
.footable.table-hover tbody tr:hover {
  background-color: #1e2939;
  color: #fff;
}

.table-responsive {
  white-space: nowrap;
}

.table-sortable tbody .table-sortable-row {
  background-color: #1e2939;
  cursor: move;
  height: 60px;
  width: 100%;
}
.table-sortable tbody .table-sortable-row.ui-sortable-helper {
  border: 1px solid #111;
  border-left: 5px solid #0148c4;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.table-sortable tbody .table-sortable-row.ui-sortable-helper td {
  border: none;
  height: 60px;
}
.table-sortable tbody .table-sortable-row.ui-sortable-helper .table-col-editable {
  width: 100%;
}
.table-sortable tbody:not(.table-sortable-row) .table-col-icon i {
  color: #ccc;
}

.table-col-editable div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.table-col-editable button {
  margin-left: 0.5rem;
  width: 50px;
}

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

.nav-tabs {
  border-bottom: none;
}
.nav-tabs .nav-link.active {
  background-color: #1e2939;
  border: 1px solid #364153;
  border-bottom: none;
  color: #fff;
}
.nav-tabs .nav-link:hover:not(.active) {
  background-color: #1e2939;
  border: 1px solid #364153;
}

.tab-content {
  background-color: #1e2939;
  border: 1px solid #364153;
  border-radius: 0.25rem;
  border-top-left-radius: 0;
  padding: 1rem;
}

.border-top {
  border-color: #364153 !important;
}

.tooltip {
  pointer-events: none;
}

.validation-summary-valid {
  display: none;
}

.validation-summary-errors ul {
  list-style: none;
  padding: 0;
}

/*.attachments {
    .attachments-add {
        align-items: center;
        border: 2px dashed $theme_text-light;
        border-radius: 5px;
        color: $theme_text-light;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        height: 80px;
        justify-content: center;
        padding: 15px;
    }

    .attachments-list {
        display: flex;
        flex-direction: column;

        .attachments-item {
            display: flex;
            flex-direction: column;
            text-decoration: none;

            .item-details {
                display: flex;
                flex-direction: column;
                flex-grow: 1;
                justify-content: center;
                margin-bottom: 0.75rem;
                margin-right: 0;

                .details-name {
                    color: $theme_text;
                    display: block;
                    font-weight: 700;
                }

                @media only screen and ($breakpoint-medium) {
                    margin-bottom: 0;
                    margin-right: 1.5rem;
                }
            }

            .item-options {
                align-items: flex-start;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;

                .btn {
                    cursor: pointer;
                }
            }

            &:not(:first-of-type) {
                padding-top: 0.75rem;
            }

            &:not(:last-of-type) {
                border-bottom: 1px solid #ddd;
                padding-bottom: 0.75rem;
            }

            @media only screen and ($breakpoint-medium) {
                flex-direction: row;
            }
        }
    }
}
*/
.attachments .dropzone {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px dashed #acacac;
  border-radius: 5px;
  cursor: pointer;
  /*display: flex;*/
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 80px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px;
}
.attachments .dropzone .dz-button {
  background: none;
  border: none;
  color: #acacac;
}
.attachments .dropzone .dz-button:focus {
  outline: none;
}
.attachments .file-manager {
  /*margin-top: 1.5rem;*/
}
.attachments .file-manager .loading {
  background-color: #1e2939;
  border: 1px solid #111;
  border-radius: 0.25rem;
  bottom: 0;
  color: #fff;
  left: 0;
  margin: 1.5rem;
  padding: 1.5rem;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
}
.attachments .file-manager .loading i {
  display: inline-block !important;
  margin-bottom: 1.5rem;
}
.attachments .file-manager .files .files-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .attachments .file-manager .files .files-header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.attachments .file-manager .files .files-header .files-header-title {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-bottom: 0.75rem;
  margin-right: 0;
}
.attachments .file-manager .files .files-header .files-header-title span {
  display: block;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .attachments .file-manager .files .files-header .files-header-title {
    margin-bottom: 0;
    margin-right: 1.5rem;
  }
}
.attachments .file-manager .files .files-header .files-header-sort {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.attachments .file-manager .files .files-header .files-header-sort label {
  font-weight: 600;
  margin-bottom: 0;
  margin-right: 0.5rem;
}
.attachments .file-manager .files .files-header .files-header-sort select {
  width: 130px;
}
.attachments .file-manager .files .files-header .files-header-sort i {
  cursor: pointer;
  margin-left: 0.5rem;
}
.attachments .file-manager .files .files-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.attachments .file-manager .files .files-content .files-content-cell {
  border-bottom: 1px solid #ccc;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-bottom: 0.25rem;
  padding-top: 0.25rem;
}
.attachments .file-manager .files .files-content .files-content-cell .files-content-cell-image {
  margin-right: 0.75rem;
}
.attachments .file-manager .files .files-content .files-content-cell .files-content-cell-image img {
  border-radius: 2px;
  display: block;
  height: 30px;
  width: 30px;
}
.attachments .file-manager .files .files-content .files-content-cell .files-content-cell-details {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  overflow: hidden;
  white-space: nowrap;
}
.attachments .file-manager .files .files-content .files-content-cell .files-content-cell-details .details-name {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}
.attachments .file-manager .files .files-content .files-content-cell:first-of-type {
  border-top: 1px solid #ccc;
}
.attachments .file-manager .files .files-content form {
  margin-top: 1.5rem;
}
.attachments .file-manager .files .files-content form .files-content-cell {
  border: none !important;
  font-weight: 700;
  padding-bottom: 0;
  padding-top: 0;
}

.banner {
  margin-bottom: 1.5rem;
}

.body {
  margin-top: 80px;
  min-height: 100vh;
}
@media only screen and (min-width: 992px) {
  .body {
    margin-left: 256px;
    margin-top: 0;
  }
}

.breadcrumb {
  background-color: #0148c4;
  padding: 0.15rem 0.5rem;
}
.breadcrumb .breadcrumb-item a,
.breadcrumb .breadcrumb-item .active {
  color: #fff;
}

.container-inner {
  margin: 0 auto;
  max-width: 600px;
}
@media only screen and (min-width: 768px) {
  .container-inner {
    margin: 60px auto 0 auto;
  }
}

.footer {
  background-color: #1e2939;
  border-top: 1px solid #364153;
  color: #acacac;
  font-size: 0.875rem;
  padding: 1rem 1.5rem;
  text-align: center;
}
.footer small {
  color: #acacac;
}

.header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #1e2939;
  border-bottom: 1px solid #364153;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 64px;
  padding: 0.75rem 1.5rem;
  z-index: 150;
}
@media only screen and (min-width: 576px) {
  .header {
    height: 72px;
    padding: 0.75rem 1.5rem;
  }
}
@media only screen and (min-width: 992px) {
  .header {
    left: 256px;
    position: fixed;
    right: 0;
    top: 0;
  }
}
.header .header-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow: hidden;
}
.header .header-meta .header-title {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.header .header-meta .header-breadcrumbs {
  display: none;
  font-size: 0.8rem;
  line-height: 1;
  margin-top: 0.375rem;
}
@media only screen and (min-width: 576px) {
  .header .header-meta .header-breadcrumbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header .header-meta .header-breadcrumbs .breadcrumb {
  background-color: transparent;
  line-height: 1;
  margin: 0;
  padding: 0;
}
.header .header-meta .header-breadcrumbs .breadcrumb .breadcrumb-item {
  color: #fff;
}
.header .header-meta .header-breadcrumbs .breadcrumb .breadcrumb-item::before {
  color: #fff;
}
.header .header-meta .header-breadcrumbs .breadcrumb .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
}
.header .header-meta .header-breadcrumbs .breadcrumb .breadcrumb-item a:hover {
  text-decoration: underline;
}
.header .header-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-left: 1.5rem;
}
.header .header-actions .form-control {
  width: 200px;
}
.header .header-actions .btn {
  white-space: nowrap;
}
.header .header-actions .btn:not(:last-child) {
  margin-right: 5px;
}

.hero {
  background-color: blue;
  background-image: url("/images/account/account-background.webp");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 1.5rem;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .hero {
    height: 200px;
  }
}
.hero .header-meta .header-title {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) {
  .hero .header-meta .header-title {
    font-size: 2.5rem;
  }
}
.hero .header-meta .header-breadcrumbs {
  display: none;
}
.hero .header-actions {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #1e2939;
  border-bottom-left-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 71px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 1rem 1.5rem;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 200;
}
.hero .header-actions .btn {
  white-space: nowrap;
}
.hero .header-actions .btn:not(:last-child) {
  margin-right: 5px;
}
@media only screen and (min-width: 992px) {
  .hero .header-actions {
    position: fixed;
  }
}

.hero + .main {
  margin-top: 0;
}

.login {
  background-color: #fafafa;
  height: 100vh;
  padding: 15px;
}
@media only screen and (min-width: 768px) {
  .login {
    padding-top: 50px;
  }
}
.login .card {
  margin: 0 auto;
  max-width: 480px;
}

.login-wrapper {
  background-color: #000;
}
.options + .main {
  margin-top: 0;
}

@media only screen and (min-width: 992px) {
  .tabs + .main {
    margin-top: 131px;
  }
}

.main {
  background-color: #101828;
  min-height: calc(100vh - 126px);
  padding: 1.5rem calc(1.5rem - 15px);
}
@media only screen and (min-width: 992px) {
  .main {
    margin-top: 72px;
  }
}
@media only screen and (min-width: 768px) {
  .main.main-login {
    padding-top: 90px;
  }
}
.main.main-login .container-fluid, .main.main-login .container-sm, .main.main-login .container-md, .main.main-login .container-lg, .main.main-login .container-xl {
  max-width: 600px;
}
.main.main-content-constrained .container-fluid, .main.main-content-constrained .container-sm, .main.main-content-constrained .container-md, .main.main-content-constrained .container-lg, .main.main-content-constrained .container-xl {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.map {
  height: calc(100vh - 91px);
  margin: -1.5rem;
  position: relative;
  width: calc(100% - 400px + 3rem);
}
.map .map-popup {
  background-color: #1e2939;
  border-radius: 5px 0 0 5px;
  bottom: 0;
  -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
          box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
  color: #fff;
  height: calc(100% - 20px);
  margin: 10px 0 10px 10px;
  overflow-y: scroll;
  padding: 15px;
  position: absolute;
  right: 0;
  top: 0;
  width: 265px;
  z-index: 5;
}
.map .map-popup .map-popup-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.map .map-popup .map-popup-close span {
  cursor: pointer;
  display: block;
}
.map .map-popup .map-popup-details p {
  margin-bottom: 0.5rem;
}

.map-preloader {
  height: calc(100vh - 102px);
  margin: -1.5rem;
  position: relative;
  width: calc(100% - 350px + 3rem);
}
.map-preloader .map-preloader-inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.5rem;
}
.map-preloader .map-preloader-inner .card {
  max-width: 100%;
  width: 400px;
}

.map-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.map-panel .map-panel-button .btn {
  width: 100%;
}
.map-panel .map-panel-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 0.75rem;
}
.map-panel .map-panel-header strong {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.map-panel .map-panel-header button {
  background: none;
  border: none;
  color: #3ca4ff;
  margin: 0;
  padding: 0;
}
.map-panel .map-panel-header button:not(:last-child) {
  margin-right: 0.4rem;
}
.map-panel .map-panel-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow-y: hidden;
}
.map-panel .map-panel-tabs .map-panel-tabs-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.map-panel .map-panel-tabs .map-panel-tabs-buttons .map-panel-tabs-buttons-main .button-tab {
  background-color: #1e2939;
  border: none;
  border-radius: 5px 5px 0 0;
  color: #fff;
  padding: 0.25rem 0.75rem;
}
.map-panel .map-panel-tabs .map-panel-tabs-buttons .map-panel-tabs-buttons-main .button-tab.active {
  background-color: #444;
  color: #fff;
}
.map-panel .map-panel-tabs .map-panel-tabs-buttons .map-panel-tabs-buttons-main .button-tab:focus {
  outline: none;
}
.map-panel .map-panel-tabs .map-panel-tabs-buttons .map-panel-tabs-buttons-options {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.map-panel .map-panel-tabs .map-panel-tabs-buttons .map-panel-tabs-buttons-options .button-option {
  background: none;
  border: none;
  color: #3ca4ff;
  padding: 0;
}
.map-panel .map-panel-tabs .map-panel-tabs-buttons .map-panel-tabs-buttons-options .button-option:not(:last-child) {
  margin-right: 0.5rem;
}
.map-panel .map-panel-tabs .map-panel-tabs-body {
  background-color: #444;
  border-radius: 0 5px 5px 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow: hidden;
  padding: 0.75rem;
}
.map-panel .map-panel-tabs .map-panel-tabs-body .map-panel-tab {
  display: none;
  height: 100%;
}
.map-panel .map-panel-tabs .map-panel-tabs-body .map-panel-tab .map-panel-list {
  height: 100%;
}
.map-panel .map-panel-tabs .map-panel-tabs-body .map-panel-tab.active {
  display: block;
}
.map-panel .map-panel-list {
  overflow-y: scroll;
}
.map-panel .map-panel-list .card-body {
  max-height: 300px;
  padding: 0;
}
.map-panel .map-panel-list.list-main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow-y: scroll;
}

.map-panel-checkbox {
  background-color: #1e2939;
  color: #fff;
  display: block;
  margin-bottom: 0;
  overflow: hidden;
  width: 100%;
}
.map-panel-checkbox:nth-child(even) {
  background-color: #1e2939;
}
.map-panel-checkbox:first-of-type {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.map-panel-checkbox:last-of-type {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.map-panel-checkbox .legend .badge.badge-1 {
  background-color: #17a2b8;
  color: #fff;
}
.map-panel-checkbox .legend .badge.badge-2 {
  background-color: #dc3545;
  color: #fff;
}
.map-panel-checkbox .legend .badge.badge-3 {
  background-color: #ffc107;
  color: #000;
}
.map-panel-checkbox .legend .badge.badge-4 {
  background-color: #28a745;
  color: #fff;
}
.map-panel-checkbox .legend .badge.badge-5 {
  background-color: #343a40;
  color: #fff;
}

.map-panel-checkbox > input {
  position: absolute;
  visibility: hidden;
}

.map-panel-checkbox > input + div {
  background-image: url("/images/icons/box-unchecked_dark.png");
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  overflow: hidden;
  padding: 0.5rem 1.5rem 0.5rem 3rem;
  text-overflow: ellipsis;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: nowrap;
}

.map-panel-checkbox > input + div:hover {
  background-image: url("/images/icons/box-hover_dark.png");
}

.map-panel-checkbox > input:checked + div {
  background-image: url("/images/icons/box-checked.png");
}

.options {
  background-color: #242424;
  border-bottom: 1px solid #141414;
  color: #fff;
  padding: 0.5rem 1.5rem;
}
@media only screen and (min-width: 992px) {
  .options {
    margin-top: 56px;
  }
}

.panel {
  background-color: #1e2939;
  border-left: 0;
  border-radius: 5px;
  bottom: 0;
  color: #fff;
  display: none;
  margin: 1rem;
  margin-top: calc(110px + 1.5rem);
  opacity: 0;
  overflow-y: auto;
  padding: 1.5rem;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transition: all 0.2s ease-in, background-color 1ms, border-color 1ms, color 1ms;
  transition: all 0.2s ease-in, background-color 1ms, border-color 1ms, color 1ms;
  width: calc(100% - 30px);
  z-index: 100;
}
.panel.active {
  display: block;
  opacity: 1;
  right: 0;
}
.panel .panel-list .card-body {
  padding: 0;
}
.panel .panel-list .panel-list-row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  overflow: hidden;
  padding: 0.5rem 1.5rem;
}
.panel .panel-list .panel-list-row:nth-child(even) {
  background-color: #fafafa;
}
.panel .panel-list .panel-list-row:first-of-type {
  border-radius: 5px 5px 0 0;
}
.panel .panel-list .panel-list-row:last-of-type {
  border-radius: 0 0 5px 5px;
}
.panel .panel-list .panel-list-row .panel-list-row-value {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media only screen and (min-width: 992px) {
  .panel {
    border-left: 1px solid #364153;
    border-radius: 0;
    display: block;
    margin: 0;
    margin-top: 0;
    right: -400px;
    top: 91px;
    width: 400px;
  }
}

.preloader {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.75);
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}
.preloader .preloader-inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #1e2939;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30px;
  max-width: 480px;
  padding: 30px;
  text-align: center;
  width: 100%;
}

.sidebar {
  background-color: #1e2939;
  bottom: auto;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 300;
}
@media only screen and (min-width: 992px) {
  .sidebar .sidebar-header .sidebar-header-logo .sidebar-header-logo-inner {
    width: 100%;
  }
}
.sidebar .sidebar-header .sidebar-header-logo .sidebar-header-logo-image {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: auto;
}
.sidebar .sidebar-header .sidebar-header-logo .sidebar-header-logo-image img {
  display: block;
  max-height: 64px;
  max-width: 200px;
  width: 100%;
}
.sidebar .sidebar-header .sidebar-header-logo .sidebar-header-logo-image .logo-icon {
  display: none;
}
.sidebar .sidebar-header .sidebar-header-logo .sidebar-header-logo-image.mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sidebar .sidebar-header .sidebar-header-logo .sidebar-header-logo-image.desktop {
  display: none;
}
@media only screen and (min-width: 768px) {
  .sidebar .sidebar-header .sidebar-header-logo .sidebar-header-logo-image.mobile {
    display: none;
  }
  .sidebar .sidebar-header .sidebar-header-logo .sidebar-header-logo-image.desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (min-width: 992px) {
  .sidebar .sidebar-header .sidebar-header-logo .sidebar-header-logo-image {
    height: 64px;
  }
  .sidebar .sidebar-header .sidebar-header-logo .sidebar-header-logo-image img {
    max-height: 64px;
  }
}
.sidebar .sidebar-header .sidebar-header-toggle .navbar-toggler {
  border-color: #fff;
  color: #fff;
  font-size: 1.25rem;
  padding: 0.5rem 0.75rem;
}
.sidebar .sidebar-header .sidebar-header-toggle .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.sidebar .sidebar-main {
  background-color: #1e2939;
  bottom: 0;
  left: 0;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
  position: fixed;
  top: 80px;
  -webkit-transition: opacity 0.2s ease-in, width 0.2s ease-in;
  transition: opacity 0.2s ease-in, width 0.2s ease-in;
  width: 0;
}
.sidebar .sidebar-main.open {
  opacity: 1;
  width: calc(256px - 1px);
}
@media only screen and (min-width: 992px) {
  .sidebar .sidebar-main {
    bottom: unset;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    height: 100%;
    opacity: 1;
    overflow-y: auto;
    position: relative;
    top: unset;
    width: 100%;
  }
}
.sidebar .sidebar-main .nav {
  padding: 0 0.75rem;
}
.sidebar .sidebar-main .nav .nav-tabs {
  border-bottom: 1px solid #364153;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  padding: 0 0.75rem;
  position: relative;
}
.sidebar .sidebar-main .nav .nav-tabs .tab, .sidebar .sidebar-main .nav .nav-tabs .switch {
  border: none;
  border-radius: 0.75rem 0.75rem 0 0;
  padding: 0.5rem 0.875rem;
}
.sidebar .sidebar-main .nav .nav-tabs .tab:focus, .sidebar .sidebar-main .nav .nav-tabs .switch:focus {
  outline: none;
}
.sidebar .sidebar-main .nav .nav-tabs .tab {
  background-color: transparent;
  color: #fff;
  display: block;
  text-decoration: none;
}
.sidebar .sidebar-main .nav .nav-tabs .tab:hover {
  background-color: #364153;
  color: #fff;
}
.sidebar .sidebar-main .nav .nav-tabs .tab.active {
  background-color: #155dfc;
  color: #fff;
}
.sidebar .sidebar-main .nav .nav-tabs .switch {
  background-color: #155dfc;
  color: #fff;
  display: none;
  width: 100%;
}
.sidebar .sidebar-main .nav .nav-tabs .nav-tabs-switch {
  background-color: #1e2939;
  border: 1px solid #364153;
  border-radius: 0 5px 5px 0;
  border-left: none;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  left: 51px;
  padding: 15px;
  position: fixed;
  width: 230px;
}
.sidebar .sidebar-main .nav .nav-tabs .nav-tabs-switch.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-width: 992px) {
  .sidebar .sidebar-main .nav .nav-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.sidebar .sidebar-main .nav:last-child {
  padding-bottom: 0.75rem;
}
.sidebar .sidebar-main .nav .nav-item {
  line-height: 1;
}
.sidebar .sidebar-main .nav .nav-item .nav-link-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.sidebar .sidebar-main .nav .nav-item .nav-link-container .nav-link {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: relative;
}
.sidebar .sidebar-main .nav .nav-item .nav-link-container .nav-link .badge {
  position: absolute;
  right: 1rem;
  -webkit-transition: none;
  transition: none;
}
.sidebar .sidebar-main .nav .nav-item .nav-link-container .nav-link-switch {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 38px;
}
.sidebar .sidebar-main .nav .nav-item .nav-link-container .nav-link-switch:hover, .sidebar .sidebar-main .nav .nav-item .nav-link-container .nav-link-switch:active {
  background-color: #364153;
  color: #fff;
}
.sidebar .sidebar-main .nav .nav-item .nav-link {
  -moz-appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  border: none;
  border-radius: 0.5rem;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0.75;
  padding: 0.875rem 1.25rem;
  white-space: nowrap;
}
.sidebar .sidebar-main .nav .nav-item .nav-link:link, .sidebar .sidebar-main .nav .nav-item .nav-link:visited {
  background-color: transparent;
  color: #fff;
  opacity: 0.75;
}
.sidebar .sidebar-main .nav .nav-item .nav-link:hover, .sidebar .sidebar-main .nav .nav-item .nav-link:active {
  background-color: #364153;
  color: #fff;
  opacity: 1;
}
.sidebar .sidebar-main .nav .nav-item .nav-link:focus {
  outline: none;
}
.sidebar .sidebar-main .nav .nav-item .nav-link .nav-link-label {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 8px;
  text-align: left;
}
.sidebar .sidebar-main .nav .nav-item .nav-link.sidebar-toggler {
  display: none;
}
@media only screen and (min-width: 992px) {
  .sidebar .sidebar-main .nav .nav-item .nav-link.sidebar-toggler {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.sidebar .sidebar-main .nav .nav-item.mb-nav {
  margin-bottom: 1.5rem;
}
.sidebar .sidebar-main .nav .nav-item .nav-submenu {
  display: none;
}
.sidebar .sidebar-main .nav .nav-item .nav-submenu .nav-link {
  background-color: rgb(27, 36.9, 51.3);
  color: #fff;
}
.sidebar .sidebar-main .nav .nav-item .nav-submenu .nav-link:hover, .sidebar .sidebar-main .nav .nav-item .nav-submenu .nav-link:active {
  background-color: rgb(24, 32.8, 45.6);
}
.sidebar .sidebar-main .nav .nav-item.active .nav-link {
  background-color: #155dfc;
  color: #fff;
  opacity: 1;
}
.sidebar .sidebar-main .nav .nav-item.active .nav-link .badge {
  background-color: #fff !important;
  color: #0148c4 !important;
}
.sidebar .sidebar-main .nav .nav-item.active .nav-link-switch {
  background-color: #155dfc;
  color: #fff;
}
.sidebar .sidebar-main .nav .nav-item.active .nav-link-switch:hover, .sidebar .sidebar-main .nav .nav-item.active .nav-link-switch:active {
  background-color: rgb(2.9373417722, 73.4335443038, 229.1126582278);
  color: #fff;
}
.sidebar .sidebar-main .nav .nav-item.active .nav-submenu .nav-link {
  background-color: rgb(0.8, 57.6, 156.8);
  color: #fff;
}
.sidebar .sidebar-main .nav .nav-item.active .nav-submenu .nav-link:hover, .sidebar .sidebar-main .nav .nav-item.active .nav-submenu .nav-link:active {
  background-color: rgb(0.6, 43.2, 117.6);
}
.sidebar .sidebar-main .nav .nav-item.inactive:not(.active) {
  pointer-events: none;
}
.sidebar .sidebar-main .nav .nav-item.inactive:not(.active) .nav-link {
  color: #ccc;
}
.sidebar .sidebar-main .nav .nav-environment {
  background-color: transparent;
  color: #fff;
  padding: 0.75rem 1rem;
}
.sidebar .sidebar-main .nav .nav-profile {
  background-color: transparent;
  color: #fff;
  padding: 0.75rem 1rem;
  width: 100%;
}
.sidebar .sidebar-main .nav .nav-profile .nav-profile-user .nav-profile-user-name {
  display: block;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sidebar .sidebar-main .nav .nav-profile .nav-profile-user .nav-profile-user-email {
  display: block;
  font-size: 0.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sidebar .sidebar-main .nav .nav-profile .nav-profile-user:not(:last-child) {
  margin-bottom: 0.5rem;
}
.sidebar .sidebar-main .nav .nav-profile .nav-profile-role .badge {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (min-width: 992px) {
  .sidebar {
    border-right: 1px solid #364153;
    bottom: 0;
    left: 0;
    right: auto;
    top: 0;
    width: 256px;
  }
}

.summary {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: blue;
  background-image: url("/images/account/account-background.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 1rem 1.5rem;
}
@media only screen and (min-width: 992px) {
  .summary {
    background-position: top -150px center;
    margin-top: 72px;
  }
}
.summary .summary-pending,
.summary .summary-balance {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 700;
  line-height: 1;
  margin-right: 1.5rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.75);
}
.summary .summary-pending .label,
.summary .summary-balance .label {
  display: block;
}
.summary .summary-pending .value,
.summary .summary-balance .value {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.summary .summary-pending .value .value-number,
.summary .summary-balance .value .value-number {
  display: block;
  font-size: 1.5rem;
  margin-right: 3px;
}
.summary .summary-pending .value .value-suffix,
.summary .summary-balance .value .value-suffix {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.summary .summary-pending .value {
  color: orange;
}
.summary .summary-balance {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.summary .summary-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.summary .summary-links a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

.summary + .main {
  margin-top: 0;
}

.tabs {
  background-color: #1e2939;
  border-bottom: 1px solid #364153;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  overflow-x: auto;
}
@media only screen and (min-width: 992px) {
  .tabs {
    left: 256px;
    position: fixed;
    right: 0;
    top: 72px;
    z-index: 145;
  }
}
.tabs .tabs-item {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #1e2939;
  border: none;
  border-bottom: 3px solid #364153;
  color: #acacac;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  min-height: 59px;
  padding: 0.75rem 1.5rem;
  text-align: left;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 150px;
}
.tabs .tabs-item .tabs-item-icon {
  display: none;
  margin-right: 0.75rem;
}
.tabs .tabs-item .tabs-item-icon .tabs-item-icon-container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #364153;
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
}
.tabs .tabs-item .tabs-item-icon .tabs-item-icon-container i {
  color: #fff;
  font-size: 1rem;
}
.tabs .tabs-item .tabs-item-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  overflow: hidden;
}
.tabs .tabs-item .tabs-item-details .tabs-item-details-title {
  display: block;
  font-weight: 600;
}
.tabs .tabs-item .tabs-item-details .tabs-item-details-description {
  display: block;
  font-size: 0.8rem;
  margin-top: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tabs .tabs-item.tabs-selected {
  background-color: #1e2939;
  border-bottom-width: 4px;
  color: #fff;
  cursor: default;
  padding-bottom: calc(0.75rem - 1px);
}
.tabs .tabs-item.tabs-primary {
  border-color: #0148c4;
}
.tabs .tabs-item.tabs-primary .tabs-item-icon .tabs-item-icon-container {
  background-color: #0148c4;
}
.tabs .tabs-item.tabs-complete {
  border-color: #28a745;
}
.tabs .tabs-item.tabs-complete .tabs-item-icon .tabs-item-icon-container {
  background-color: #28a745;
}
.tabs .tabs-item.tabs-incomplete {
  border-color: #dc3545;
}
.tabs .tabs-item.tabs-incomplete .tabs-item-icon .tabs-item-icon-container {
  background-color: #dc3545;
}
.tabs .tabs-item.tabs-optional {
  border-color: #17a2b8;
}
.tabs .tabs-item.tabs-optional .tabs-item-icon .tabs-item-icon-container {
  background-color: #17a2b8;
}
.tabs .tabs-item.tabs-progress {
  border-color: #ffc107;
}
.tabs .tabs-item.tabs-progress .tabs-item-icon .tabs-item-icon-container {
  background-color: #ffc107;
}
.tabs .tabs-item.tabs-locked {
  background-color: #1e2939;
  color: #acacac;
  cursor: not-allowed;
}
.tabs .tabs-item.tabs-locked .tabs-item-icon .tabs-item-icon-container {
  background-color: #364153;
}
.tabs .tabs-item:not(.tabs-locked):hover {
  background-color: #1e2939;
  color: #fff;
}
.tabs .tabs-item:focus {
  outline: none;
}
.tabs .tabs-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.tabs .tabs-group.tabs-main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.tabs .tabs-group.tabs-main .tabs-item {
  border-right: 1px solid #364153;
}
.tabs .tabs-group.tabs-end .tabs-item {
  border-left: 1px solid #364153;
}
@media only screen and (min-width: 1240px) {
  .tabs .tabs-item {
    width: 200px;
  }
  .tabs .tabs-item .tabs-item-icon {
    display: block;
  }
}

.title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.title h1 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-bottom: 0;
}

.uploads {
  bottom: 0;
  max-width: 400px;
  opacity: 0.9;
  padding: 0.75rem;
  position: fixed;
  right: 0;
  width: 100%;
  z-index: 100;
}
.uploads .uploads-item:not(:last-child) {
  margin-bottom: 1.5rem;
}
.uploads .uploads-item .uploads-item-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.5rem;
}
.uploads .uploads-item .uploads-item-details .uploads-item-details-name {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.uploads .uploads-item .uploads-item-details .uploads-item-details-dismiss {
  display: none;
  margin-left: 1.5rem;
}
.uploads .uploads-item.completed .uploads-item-details-dismiss {
  display: block;
}
.uploads .uploads-item.completed .progress .progress-bar {
  -webkit-animation: none;
          animation: none;
  background-color: #28a745 !important;
  background-image: none;
  width: 100% !important;
}

.wrapper {
  min-height: 100vh;
}
@media only screen and (min-width: 992px) {
  .wrapper.collapsed .sidebar {
    width: 51px;
  }
  .wrapper.collapsed .sidebar .sidebar-header-logo {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .wrapper.collapsed .sidebar .sidebar-header-logo .sidebar-header-logo-inner {
    padding: 0 !important;
  }
  .wrapper.collapsed .sidebar .sidebar-header-logo .logo-light,
  .wrapper.collapsed .sidebar .sidebar-header-logo .logo-dark {
    display: none !important;
  }
  .wrapper.collapsed .sidebar .sidebar-header-logo .logo-icon {
    display: block !important;
    max-width: 32px;
  }
  .wrapper.collapsed .sidebar .nav-tabs {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .wrapper.collapsed .sidebar .nav-tabs .tab {
    display: none !important;
  }
  .wrapper.collapsed .sidebar .nav-tabs .switch {
    display: block !important;
    border-radius: 0.5rem 0.5rem 0 0;
    padding: 0.5rem 0.5rem;
    text-align: center;
  }
  .wrapper.collapsed .sidebar .nav {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .wrapper.collapsed .sidebar .nav-header .nav-header-label {
    display: none !important;
  }
  .wrapper.collapsed .sidebar .nav-link {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .wrapper.collapsed .sidebar .nav-link .nav-link-label {
    display: none !important;
  }
  .wrapper.collapsed .sidebar .nav-link .badge {
    bottom: 5px !important;
    right: 5px !important;
  }
  .wrapper.collapsed .sidebar .nav-environment {
    display: none !important;
  }
  .wrapper.collapsed .sidebar .nav-profile {
    display: none !important;
  }
  .wrapper.collapsed .sidebar .nav-link-switch {
    display: none !important;
  }
  .wrapper.collapsed .sidebar .sidebar-toggler i {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .wrapper.collapsed .body {
    margin-left: 51px;
  }
}
@media only screen and (min-width: 992px) and (min-width: 992px) {
  .wrapper.collapsed .body .header {
    left: 51px;
  }
}
@media only screen and (min-width: 992px) and (min-width: 992px) {
  .wrapper.collapsed .body .tabs {
    left: 51px;
  }
}

.account {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(0.9, 64.8, 176.4)), to(rgb(1.1588832487, 83.4395939086, 227.1411167513)));
  background: linear-gradient(0deg, rgb(0.9, 64.8, 176.4) 0%, rgb(1.1588832487, 83.4395939086, 227.1411167513) 100%);
  background-color: #f9fafb;
  background-image: url("/images/account/account-background.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100vh;
  padding: 1rem;
}
.account-wrapper {
  background-color: #fff;
  border-radius: 0.25rem;
  -webkit-box-shadow: 0 3px 10px 6px rgba(0, 0, 0, 0.075);
          box-shadow: 0 3px 10px 6px rgba(0, 0, 0, 0.075);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 1.5rem;
  max-width: 800px;
  overflow: hidden;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .account-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.account-wrapper-photo {
  background-color: #eee;
  background-image: url("/images/account/account-top.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 150px;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .account-wrapper-photo {
    background-image: url("/images/account/account-side.webp");
    height: auto;
    width: 250px;
  }
}
.account-wrapper-main {
  padding: 2rem;
  width: 100%;
}
.account-wrapper-main-logo {
  display: block;
  margin-bottom: 2rem;
  max-height: 60px;
  max-width: 200px;
}
@media only screen and (min-width: 768px) {
  .account-wrapper-main {
    min-height: 475px;
    width: calc(100% - 250px);
  }
}
.account-buttons {
  margin-top: 2rem;
}
.account-copyright {
  color: #fff;
  font-size: 0.8rem;
  opacity: 0.5;
  text-align: center;
}

.account-authenticator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 30px;
}
.account-authenticator .account-authenticator-copy {
  margin-bottom: 15px;
}
.account-authenticator .account-authenticator-copy .account-authenticator-copy-title {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 1rem;
}
.account-authenticator .account-authenticator-copy .account-authenticator-copy-title h4 {
  margin-right: 5px;
}
.account-authenticator .account-authenticator-copy .account-authenticator-copy-title i {
  color: #0148c4;
  cursor: pointer;
}
.account-authenticator .account-authenticator-code img {
  border: 1px solid #ddd;
  display: block;
  height: 140px;
  width: 140px;
}
@media (min-width: 576px) {
  .account-authenticator {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .account-authenticator .account-authenticator-copy {
    margin-bottom: 0;
    margin-right: 15px;
    width: calc(100% - 155px);
  }
  .account-authenticator .account-authenticator-code {
    width: 140px;
  }
}

.card-action {
  min-height: 465px;
}

.actions-tasks .actions-tasks-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 0.5rem;
}
.actions-tasks .actions-tasks-item .actions-tasks-item-icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ced4da;
  border-radius: 3px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 0.5rem;
  width: 20px;
}
.actions-tasks .actions-tasks-item .actions-tasks-item-icon i {
  font-size: 0.65rem;
}
.actions-tasks .actions-tasks-item .actions-tasks-item-details {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.actions-tasks .actions-tasks-item.item-complete .actions-tasks-item-icon {
  background-color: #28a745;
}
.actions-tasks .actions-tasks-item.item-incomplete .actions-tasks-item-icon {
  background-color: #dc3545;
}
.actions-tasks .actions-tasks-item.item-optional .actions-tasks-item-icon {
  background-color: #17a2b8;
}
.actions-tasks .actions-tasks-item.item-optional p {
  color: #acacac;
}
.actions-tasks .actions-tasks-item.item-locked .actions-tasks-item-icon {
  background-color: #acacac;
}
.actions-tasks .actions-tasks-item.item-locked p {
  color: #acacac;
}

.action-save {
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
  background-color: rgb(0.85, 61.2, 166.6);
  border-radius: 5px;
  -webkit-box-shadow: 0 0 0 0 rgb(0, 96, 158);
          box-shadow: 0 0 0 0 rgb(0, 96, 158);
  color: #fff;
  display: none;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.action-save .action-save-inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.action-save .action-save-inner .action-save-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0.5rem 1.5rem;
}
.action-save .action-save-inner .action-save-button {
  padding: 0.5rem;
}
.action-save.show {
  display: inline-block;
}

@media only screen and (min-width: 768px) {
  .actions-table .table-col-primary .table-col-primary-link {
    font-size: 1.05rem;
  }
}
.actions-table .table-col-date--start,
.actions-table .table-col-date--due {
  min-width: 100px;
}
.actions-table .table-col-visibility {
  min-width: 90px;
}

.actions-group:last-child {
  margin-bottom: 0 !important;
}

.actions-publish-confirm, .actions-publish-schedule {
  margin-bottom: 0;
  margin-top: 20px;
}

.actions-question-button {
  background-color: #484848;
  border-radius: 5px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  line-height: 1;
  padding: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.actions-question-button i {
  margin-right: 10px;
}
.actions-question-button i.fa-check-circle {
  color: #28a745;
}
.actions-question-button i.fa-times-circle {
  color: #dc3545;
}
.actions-question-button.active {
  background-color: #0148c4;
  color: #fff !important;
}
.actions-question-button.active i {
  color: #fff !important;
}
.actions-question-button:not(.active):hover, .actions-question-button:not(.active):active {
  background-color: #585858;
}
.actions-question-button:not(:last-child) {
  margin-bottom: 0.5rem;
}

.actions-questions .actions-questions-item .actions-questions-item-text {
  display: block;
  font-weight: 500;
  margin-bottom: 1rem;
}
.actions-questions .actions-questions-item .actions-questions-item-answer {
  display: block;
}
.actions-questions .actions-questions-item .actions-questions-item-photos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -0.25rem;
}
.actions-questions .actions-questions-item .actions-questions-item-photos a {
  display: block;
}
.actions-questions .actions-questions-item .actions-questions-item-photos .actions-questions-item-photos-content {
  cursor: pointer;
  position: relative;
}
.actions-questions .actions-questions-item .actions-questions-item-photos .actions-questions-item-photos-content img {
  border-radius: 3px;
  display: block;
  height: 80px;
  margin: 0.25rem;
}
.actions-questions .actions-questions-item .actions-questions-item-photos .actions-questions-item-photos-content i {
  background-color: #fff;
  border-radius: 50%;
  bottom: 7.5px;
  color: #000;
  padding: 5px;
  position: absolute;
  right: 7.5px;
}
.actions-questions .actions-questions-item:not(:last-of-type) {
  border-bottom: 1px solid #eee;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

#managePause,
#manageClose {
  display: none;
}

#viewMap {
  display: none;
}

.actions-responses-details {
  margin-bottom: 1.5rem;
}
.actions-responses-details img {
  display: inline-block;
  height: unset;
  max-width: 100%;
  vertical-align: baseline;
}

.actions-responses-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (min-width: 1200px) {
  .actions-responses-data {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.actions-responses-data .actions-responses-attributes {
  background-color: #1e2939;
  border: 1px solid #364153;
  border-radius: 0.5rem;
  color: #fff;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-bottom: 1.5rem;
  padding: 1rem 1.5rem;
}
@media only screen and (min-width: 1200px) {
  .actions-responses-data .actions-responses-attributes {
    margin-bottom: 0;
    margin-right: 1.5rem;
  }
}
.actions-responses-data .actions-responses-attributes .attributes-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.actions-responses-data .actions-responses-attributes .attributes-row .row-label {
  color: #fff;
  font-weight: 700;
  margin-bottom: 5px;
  margin-right: 0;
  width: 100%;
}
.actions-responses-data .actions-responses-attributes .attributes-row .row-value {
  color: #fff;
}
.actions-responses-data .actions-responses-attributes .attributes-row:not(:last-of-type) {
  margin-bottom: 10px;
}
@media only screen and (min-width: 576px) {
  .actions-responses-data .actions-responses-attributes .attributes-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .actions-responses-data .actions-responses-attributes .attributes-row .row-label {
    margin-bottom: 0;
    margin-right: 15px;
    width: 100px;
  }
  .actions-responses-data .actions-responses-attributes .attributes-row .row-value {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .actions-responses-data .actions-responses-attributes .attributes-row:not(:last-of-type) {
    margin-bottom: 5px;
  }
}
.actions-responses-data .actions-responses-breakdown {
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  .actions-responses-data .actions-responses-breakdown {
    width: 330px;
  }
}

.actions-responses-options {
  display: block;
  min-width: 180px;
}
.actions-responses-options .btn {
  display: block;
  text-align: left;
  white-space: nowrap;
  width: 100%;
}
.actions-responses-options .btn:not(:last-child) {
  margin-bottom: 0.5rem;
}

.responses-table tbody tr:not(.footable-empty) {
  cursor: pointer;
}

#actions-questions-map:empty,
#actions-questions-pano:empty {
  display: none;
}

.actions-view-details-title {
  border-bottom: 1px solid #ddd;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.actions-view-details-description img {
  display: inline-block;
  height: unset;
  max-width: 100%;
}
.actions-view-details-description:not(:last-child) {
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.actions-view-details-description-content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.actions-view-details-description-content:not(:last-child) {
  margin-bottom: 20px;
}
.actions-view-details-description-content img {
  vertical-align: baseline;
}
.actions-view-details-description-empty {
  color: #bbb;
}
.actions-view-details-description-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.actions-view-details-answers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.actions-view-details-answers-summary {
  margin-bottom: 1.5rem;
}
.actions-view-details-answers-summary-container {
  display: -ms-grid;
  display: grid;
  gap: 1rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  max-width: 640px;
}
@media only screen and (min-width: 768px) {
  .actions-view-details-answers-summary-container {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 992px) {
  .actions-view-details-answers-summary-container {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (min-width: 1200px) {
  .actions-view-details-answers-summary-container {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.actions-view-details-answers-summary-container .item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #111;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  padding: 1.5rem 1rem;
  text-align: center;
}
.actions-view-details-answers-summary-container .item-label {
  display: block;
  font-weight: 600;
}
.actions-view-details-answers-summary-container .item-label:not(:last-child) {
  margin-bottom: 1rem;
}
.actions-view-details-answers-summary-container .item-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
}
@media only screen and (min-width: 992px) {
  .actions-view-details-answers-summary-container .item-value {
    font-size: 2rem;
  }
}
.actions-view-details-answers-list .item {
  border: 1px solid #111;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  overflow: hidden;
}
.actions-view-details-answers-list .item:not(:last-child) {
  margin-bottom: 1.5rem;
}
.actions-view-details-answers-list .item-color {
  width: 4px;
}
.actions-view-details-answers-list .item-content {
  padding: 1rem;
  width: calc(100% - 4px);
}
.actions-view-details-answers-list .item-question {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.actions-view-details-answers-list .item-answers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.actions-view-details-answers-list .item-answers-row {
  border: 1px solid #181818;
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0.5rem calc(1.25rem + 14px) 0.5rem 0.75rem;
}
.actions-view-details-answers-list .item-answers-row-icon {
  margin-right: 0.5rem;
  width: 14px;
}
.actions-view-details-answers-list .item-answers-row-content {
  width: calc(100% - (14px + 0.5rem));
}
.actions-view-details-answers-list .item-answers-row-content-prefix {
  display: block;
  font-weight: 600;
}
.actions-view-details-answers-list .item-answers-row-content-text {
  display: block;
}
.actions-view-details-answers-list .item-answers-row:not(:last-child) {
  margin-bottom: 0.5rem;
}
.actions-view-details-answers-list .item-answers-row.correct {
  background-color: #28a745;
  border-color: #28a745;
  color: #fff;
}
.actions-view-details-answers-list .item-answers-row.incorrect {
  background-color: #dc3545;
  border-color: #dc3545;
  color: #fff;
}
.actions-view-details-answers-list .item.correct .item-color {
  background-color: #28a745;
}
.actions-view-details-answers-list .item.incorrect .item-color {
  background-color: #dc3545;
}
.actions-view-details-date {
  font-size: 0.85rem;
  line-height: 1.25;
}

.article-edit-photo-modal {
  background-color: rgba(0, 0, 0, 0.5);
}

.article-edit-photo-output {
  max-width: 100%;
}

.articles-table .table-col-date--updated {
  min-width: 110px;
}
.articles-table .table-col-date--display {
  min-width: 310px;
}
.articles-table .table-col-actions {
  min-width: 120px;
}

.article-header-banner {
  background-color: #2577ff;
  border-radius: 0.5rem;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 600;
  padding: 1rem 1.5rem;
}
.article-header-banner .article-header-banner-title {
  font-size: 1.25rem;
}
.article-header-banner.promotions {
  background-color: #a73cff;
}
.article-header-banner.announcements {
  background-color: #ff6300;
}
.article-header-banner.news {
  background-color: #2577ff;
}
.article-header-banner.regulations {
  background-color: #f51f2d;
}
.article-header-banner.knowledge {
  background-color: #00c14c;
}
.article-header-banner[class*=sales] {
  background-color: #ffb800;
}

.article-content img {
  display: inline-block;
  height: unset;
  max-width: 100%;
}

.article-image {
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.article-image:hover {
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.article-header .article-title {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
}
.article-header .article-subtitle {
  color: #acacac;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0;
}
.article-header .article-meta .article-date {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #acacac;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.875rem;
  gap: 0.5rem;
}
.article-header .article-meta .article-date i {
  color: #acacac;
  font-size: 0.875rem;
}

.article-body {
  color: #fff;
  font-size: 1rem;
  line-height: 1.7;
}
.article-body h1, .article-body h2, .article-body h3, .article-body h4, .article-body h5, .article-body h6 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}
.article-body h1:first-child, .article-body h2:first-child, .article-body h3:first-child, .article-body h4:first-child, .article-body h5:first-child, .article-body h6:first-child {
  margin-top: 0;
}
.article-body p {
  margin-bottom: 1.25rem;
}
.article-body p:last-child {
  margin-bottom: 0;
}
.article-body img {
  border-radius: 0.5rem;
  margin: 1.5rem 0;
  max-width: 100%;
}
.article-body ul, .article-body ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}
.article-body ul li, .article-body ol li {
  margin-bottom: 0.5rem;
}

card-dashboard .card-body {
  background-color: #1e2939;
}

.campaigns-grid .campaigns-grid-item .card-body {
  max-height: 400px;
  overflow-y: auto;
}
.campaigns-grid .campaigns-grid-item .card-body:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.campaigns-grid .campaigns-grid-item .campaigns-grid-item-list {
  list-style: none;
  margin: -1.5rem;
  padding: 0;
}
.campaigns-grid .campaigns-grid-item .campaigns-grid-item-list li {
  padding: 0.5rem 1.5rem;
}
.campaigns-grid .campaigns-grid-item .campaigns-grid-item-list li:nth-child(odd) {
  background-color: #fff;
}
.campaigns-grid .campaigns-grid-item .campaigns-grid-item-list li:nth-child(even) {
  background-color: #f8f8f8;
}
.campaigns-grid .campaigns-grid-item .campaigns-grid-item-legend {
  max-height: 100px;
  overflow-y: scroll;
}
.campaigns-grid .campaigns-grid-item .campaigns-grid-item-legend .campaigns-grid-item-legend-row .badge {
  margin-right: 10px;
}
.campaigns-grid .campaigns-grid-item .campaigns-grid-item-legend .campaigns-grid-item-legend-row:not(:last-child) {
  border-bottom: 1px solid #ccc;
  margin-bottom: 3px;
  padding-bottom: 6px;
}

.dashboard-images {
  margin: -1.5rem;
  max-height: 400px;
  overflow-y: auto;
  padding: 1.5rem;
}
.dashboard-images .dashboard-images-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: -2.5px;
  overflow-x: auto;
}
.dashboard-images .dashboard-images-content .dashboard-images-item {
  cursor: pointer;
  position: relative;
}
.dashboard-images .dashboard-images-content .dashboard-images-item img {
  border-radius: 3px;
  display: block;
  height: 80px;
  margin: 2.5px;
}
.dashboard-images .dashboard-images-content .dashboard-images-item i {
  background-color: #fff;
  border-radius: 50%;
  bottom: 7.5px;
  color: #000;
  padding: 5px;
  position: absolute;
  right: 7.5px;
}
.dashboard-images .dashboard-images-link {
  background-color: #1e2939;
  border-radius: 3px;
  color: #fff;
  display: block;
  margin-bottom: 15px;
  margin-top: 5px;
  padding: 5px 10px;
}

.main.competition-page {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: calc(100vh - 138px) !important;
}
@media only screen and (min-width: 992px) {
  .main.competition-page {
    height: calc(100vh - 91px - 138px) !important;
  }
}

.main.competition-page .container-fluid, .main.competition-page .container-sm, .main.competition-page .container-md, .main.competition-page .container-lg, .main.competition-page .container-xl {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 !important;
}

.competition-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  min-height: 100vh;
  padding: 1rem;
  background-image: url("/images/adventcalendar/background.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (min-width: 768px) {
  .competition-container {
    padding: 1.5rem;
  }
}

.advent-calendar-wrapper {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.advent-calendar-header {
  text-align: center;
}
.advent-calendar-header h2 {
  color: #c62828;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.advent-calendar-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
@media only screen and (min-width: 576px) {
  .advent-calendar-grid {
    -ms-grid-columns: 1fr 1.5rem 1fr 1.5rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
@media only screen and (min-width: 992px) {
  .advent-calendar-grid {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}

.advent-day {
  aspect-ratio: 1;
  border-radius: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 0;
  overflow: hidden;
}
.advent-day::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  z-index: 10;
  pointer-events: none;
}
.advent-day .door-back-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  border-radius: 0;
  padding: 10px;
}
.advent-day .door-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  padding: 1rem;
}
.advent-day.correct {
  color: #1b5e20;
}
.advent-day.correct::after {
  border: 2px solid #2e7d32;
}
.advent-day.correct .door-panel {
  background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
}
.advent-day.correct .day-number {
  font-weight: 700;
  color: #1b5e20;
}
.advent-day.correct .day-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 1.5rem;
  color: #2e7d32;
  z-index: 2;
}
.advent-day.correct .day-points {
  position: absolute;
  background-color: #f7c02b;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 12px;
  bottom: 10px;
}
.advent-day.correct:hover {
  -webkit-box-shadow: 0 4px 12px rgba(46, 125, 50, 0.4);
          box-shadow: 0 4px 12px rgba(46, 125, 50, 0.4);
}
.advent-day.incorrect {
  color: #b71c1c;
}
.advent-day.incorrect::after {
  border: 2px solid #c62828;
}
.advent-day.incorrect .door-panel {
  background: linear-gradient(135deg, #ffcdd2 0%, #ef9a9a 100%);
}
.advent-day.incorrect .day-number {
  font-weight: 700;
  color: #b71c1c;
}
.advent-day.incorrect .day-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 1.5rem;
  color: #c62828;
  z-index: 2;
}
.advent-day.incorrect:hover {
  -webkit-box-shadow: 0 4px 12px rgba(198, 40, 40, 0.4);
          box-shadow: 0 4px 12px rgba(198, 40, 40, 0.4);
}
.advent-day.available {
  color: #fff;
  -webkit-box-shadow: 0 4px 16px rgba(198, 40, 40, 0.4);
          box-shadow: 0 4px 16px rgba(198, 40, 40, 0.4);
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
}
.advent-day.available::after {
  border: 3px solid #ffd700;
}
.advent-day.available .door-panel {
  background: linear-gradient(135deg, #c62828 0%, #b71c1c 100%);
}
.advent-day.available .day-number {
  font-weight: 700;
  color: #fff;
  font-size: 2.5rem;
}
.advent-day.available .day-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 1.5rem;
  color: #ffd700;
  z-index: 2;
}
.advent-day.available:hover {
  -webkit-box-shadow: 0 6px 20px rgba(198, 40, 40, 0.5);
          box-shadow: 0 6px 20px rgba(198, 40, 40, 0.5);
}
.advent-day.available:hover .door-panel {
  -webkit-transform: translateX(-5%);
          transform: translateX(-5%);
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.advent-day.unavailable {
  color: #757575;
  cursor: not-allowed;
  opacity: 0.6;
}
.advent-day.unavailable::after {
  border: 2px solid #9e9e9e;
}
.advent-day.unavailable .door-panel {
  background: linear-gradient(135deg, #e0e0e0 0%, #bdbdbd 100%);
}
.advent-day.unavailable .day-number {
  font-weight: 500;
  color: #757575;
}
.advent-day.unavailable .day-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 1.3rem;
  opacity: 0.5;
  color: #757575;
  z-index: 2;
}

.day-number {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 576px) {
  .day-number {
    font-size: 3rem;
  }
}

.day-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 576px) {
  .day-label {
    font-size: 0.85rem;
  }
}

@keyframes pulse {
  0%, 100% {
    -webkit-box-shadow: 0 4px 16px rgba(198, 40, 40, 0.4);
            box-shadow: 0 4px 16px rgba(198, 40, 40, 0.4);
  }
  50% {
    -webkit-box-shadow: 0 4px 20px rgba(198, 40, 40, 0.6);
            box-shadow: 0 4px 20px rgba(198, 40, 40, 0.6);
  }
}
.advent-day.opening {
  pointer-events: none;
}
.advent-day.opening .door-panel {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.advent-day.correct .door-panel,
.advent-day.incorrect .door-panel {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.advent-day.correct .door-panel .day-label,
.advent-day.incorrect .door-panel .day-label {
  display: none;
}
.advent-day.correct .day-icon,
.advent-day.incorrect .day-icon {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  z-index: 3 !important;
}
.advent-day.correct .day-number,
.advent-day.incorrect .day-number {
  display: none;
}

.advent-calendar-wrapper .alert-success {
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
  border: 2px solid #ffd700;
  color: #fff;
  border-radius: 8px;
  padding: 1rem 1.25rem;
}
.advent-calendar-wrapper .alert-success i {
  color: #ffd700;
  font-size: 1.25rem;
}
.advent-calendar-wrapper .alert-success strong {
  color: #ffd700;
  font-size: 1.1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.advent-calendar-wrapper .alert-success .close {
  color: #fff;
  opacity: 0.8;
}
.advent-calendar-wrapper .alert-success .close:hover {
  opacity: 1;
  color: #ffd700;
}

.modal[class*=js-competition-modal] .modal-content,
.modal[class*=js-competition-result-modal] .modal-content {
  border: 3px solid #ffd700 !important;
  border-radius: 8px !important;
  -webkit-box-shadow: 0 4px 20px rgba(198, 40, 40, 0.3) !important;
          box-shadow: 0 4px 20px rgba(198, 40, 40, 0.3) !important;
  background: linear-gradient(135deg, #fff 0%, #fff5f5 100%) !important;
}
.modal[class*=js-competition-modal] .modal-header,
.modal[class*=js-competition-result-modal] .modal-header {
  background: linear-gradient(135deg, #c62828 0%, #b71c1c 100%) !important;
  color: #fff !important;
  border-bottom: 2px solid #ffd700 !important;
  border-top-left-radius: 5px !important;
  border-top-right-radius: 5px !important;
}
.modal[class*=js-competition-modal] .modal-header .modal-title,
.modal[class*=js-competition-result-modal] .modal-header .modal-title {
  color: #fff !important;
  font-weight: 600;
}
.modal[class*=js-competition-modal] .modal-header .close,
.modal[class*=js-competition-result-modal] .modal-header .close {
  color: #fff !important;
  text-shadow: none;
  opacity: 0.9;
}
.modal[class*=js-competition-modal] .modal-header .close:hover,
.modal[class*=js-competition-result-modal] .modal-header .close:hover {
  opacity: 1;
  color: #ffd700 !important;
}
.modal[class*=js-competition-modal] .modal-body,
.modal[class*=js-competition-result-modal] .modal-body {
  background: linear-gradient(135deg, #fff 0%, #fff5f5 100%) !important;
}
.modal[class*=js-competition-modal] .modal-body p.text-muted,
.modal[class*=js-competition-result-modal] .modal-body p.text-muted {
  color: #c62828 !important;
  font-weight: 500;
  border-bottom: 1px solid #ffd700;
  padding-bottom: 0.75rem;
}
.modal[class*=js-competition-modal] .modal-footer,
.modal[class*=js-competition-result-modal] .modal-footer {
  background: linear-gradient(135deg, #fff5f5 0%, #fff 100%) !important;
  border-top: 2px solid #ffd700 !important;
  border-bottom-left-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
}

.quiz-options .question-choice {
  cursor: pointer;
  display: block;
  margin: 0;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: 2px solid #dee2e6;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.quiz-options .question-choice:hover {
  background-color: rgba(1, 72, 196, 0.05);
}
.quiz-options .question-choice .custom-control {
  padding-left: 1.5rem;
  margin-bottom: 0;
  min-height: auto;
}
.quiz-options .question-choice .custom-control-label {
  cursor: pointer;
  font-size: 1rem;
  padding-left: 0.5rem;
  line-height: 1.5;
}
.quiz-options .question-choice .custom-control-input:checked ~ .custom-control-label {
  font-weight: 600;
}
.quiz-options .question-choice .custom-control-input:checked ~ .custom-control-label::before {
  border-color: #0148c4;
  background-color: #0148c4;
}
.quiz-options .question-choice .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.quiz-options .question-choice.selected {
  border-color: #0148c4;
  background-color: rgba(1, 72, 196, 0.1);
}
.quiz-options.quiz-results .question-choice {
  cursor: default;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.quiz-options.quiz-results .question-choice:hover {
  background-color: transparent;
}
.quiz-options.quiz-results .question-choice.user-selected {
  border-color: #6c757d;
  background-color: rgba(108, 117, 125, 0.1);
}
.quiz-options.quiz-results .question-choice.correct-answer {
  border-color: #4caf50;
  background-color: rgba(76, 175, 80, 0.1);
}
.quiz-options.quiz-results .question-choice.user-selected.correct-answer {
  border-color: #4caf50;
  background-color: rgba(76, 175, 80, 0.15);
}
.quiz-options.quiz-results .result-indicator {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.quiz-options.quiz-results .result-indicator i {
  font-size: 1.1rem;
}
.quiz-options.quiz-results .result-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.modal.js-congratulations-modal .modal-content {
  border: 3px solid #ffd700 !important;
  border-radius: 8px !important;
  -webkit-box-shadow: 0 4px 20px rgba(46, 125, 50, 0.3) !important;
          box-shadow: 0 4px 20px rgba(46, 125, 50, 0.3) !important;
  background: linear-gradient(135deg, #fff 0%, #f1f8f4 100%) !important;
}
.modal.js-congratulations-modal .modal-header {
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%) !important;
  color: #fff !important;
  border-bottom: 2px solid #ffd700 !important;
  border-top-left-radius: 5px !important;
  border-top-right-radius: 5px !important;
}
.modal.js-congratulations-modal .modal-header .modal-title {
  color: #fff !important;
  font-weight: 600;
}
.modal.js-congratulations-modal .modal-header .close {
  color: #fff !important;
  text-shadow: none;
  opacity: 0.9;
}
.modal.js-congratulations-modal .modal-body {
  padding: 2rem;
  background: linear-gradient(135deg, #fff 0%, #f1f8f4 100%) !important;
  border-bottom-left-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
}
.modal.js-congratulations-modal .modal-body .congratulations-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.modal.js-congratulations-modal .modal-body .congratulations-message {
  font-size: 1.1rem;
  font-weight: 500;
  color: #2e7d32;
}
.modal.js-congratulations-modal .modal-body .congratulations-message .js-congratulations-points {
  color: #1b5e20;
  font-size: 1.3rem;
}

.faqs-error {
  display: none;
}

.faqs-search {
  display: none;
}

.faqs .collapsible-item-body {
  display: block;
}

.main.main-instantwin {
  background-image: url("/images/backgrounds/background-instantwin.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@-webkit-keyframes instantwin-shake {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
}

@keyframes instantwin-shake {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
}
@-webkit-keyframes instantwin-errorShake {
  0%, 100% {
    -webkit-transform: translateY(0) scale(1) translateX(0);
            transform: translateY(0) scale(1) translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateY(0) scale(1) translateX(-6px);
            transform: translateY(0) scale(1) translateX(-6px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateY(0) scale(1) translateX(6px);
            transform: translateY(0) scale(1) translateX(6px);
  }
}
@keyframes instantwin-errorShake {
  0%, 100% {
    -webkit-transform: translateY(0) scale(1) translateX(0);
            transform: translateY(0) scale(1) translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateY(0) scale(1) translateX(-6px);
            transform: translateY(0) scale(1) translateX(-6px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateY(0) scale(1) translateX(6px);
            transform: translateY(0) scale(1) translateX(6px);
  }
}
@-webkit-keyframes instantwin-successGlow {
  0%, 100% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
            transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.5;
  }
  50% {
    -webkit-transform: translate(-50%, -50%) scale(1.2);
            transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}
@keyframes instantwin-successGlow {
  0%, 100% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
            transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.5;
  }
  50% {
    -webkit-transform: translate(-50%, -50%) scale(1.2);
            transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}
@-webkit-keyframes instantwin-successPulse {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(212, 175, 55, 0.6);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(212, 175, 55, 0.6);
  }
  50% {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    -webkit-box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 0 0 80px rgba(212, 175, 55, 0.8);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 0 0 80px rgba(212, 175, 55, 0.8);
  }
}
@keyframes instantwin-successPulse {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(212, 175, 55, 0.6);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(212, 175, 55, 0.6);
  }
  50% {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    -webkit-box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 0 0 80px rgba(212, 175, 55, 0.8);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 0 0 80px rgba(212, 175, 55, 0.8);
  }
}
@-webkit-keyframes instantwin-successIconPop {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes instantwin-successIconPop {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes instantwin-successFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes instantwin-successFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes instantwin-successButtonReveal {
  from {
    opacity: 0;
    -webkit-transform: translateY(16px) scale(0.96);
            transform: translateY(16px) scale(0.96);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@keyframes instantwin-successButtonReveal {
  from {
    opacity: 0;
    -webkit-transform: translateY(16px) scale(0.96);
            transform: translateY(16px) scale(0.96);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
#errorMessage {
  -webkit-transition: opacity 0.4s ease-out, -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s ease-out, -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s ease-out, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s ease-out, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#errorMessage.instantwin-error-hidden {
  opacity: 0;
  -webkit-transform: translateY(-20px) scale(0.8);
          transform: translateY(-20px) scale(0.8);
}

#errorMessage.instantwin-error-visible {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}

#errorMessage.instantwin-error-shake {
  -webkit-animation: instantwin-errorShake 0.3s ease-in-out;
          animation: instantwin-errorShake 0.3s ease-in-out;
}

.instantwin-shake {
  -webkit-animation: instantwin-shake 0.5s ease-in-out;
          animation: instantwin-shake 0.5s ease-in-out;
}

.instantwin-code-inputs {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0.75rem;
}

.instantwin-code-box {
  width: 3rem;
  height: 2.5rem;
  padding: 0;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
}

@media (max-width: 576px) {
  .instantwin-code-box {
    width: 2.4rem;
    height: 2.25rem;
    font-size: 1.1rem;
  }
  .instantwin-code-inputs {
    gap: 0.5rem;
  }
}
.instantwin-success-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9998;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-out;
  transition: opacity 0.4s ease-out;
}

.instantwin-success-modal-backdrop.show {
  opacity: 1;
}

.instantwin-success-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.3);
          transform: translate(-50%, -50%) scale(0.3);
  z-index: 9999;
  max-width: 500px;
  width: 100%;
  height: 500px;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.3s ease-out, -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.3s ease-out, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.3s ease-out, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.instantwin-success-modal.show {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 576px) {
  .instantwin-success-modal {
    max-width: 90%;
    width: 90%;
    height: auto;
    max-height: 80vh;
  }
}
.instantwin-success-modal-content {
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  color: white;
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(212, 175, 55, 0.6);
          box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(212, 175, 55, 0.6);
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 100;
}

.instantwin-success-modal-content::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  -webkit-animation: instantwin-successGlow 2s ease-in-out 2 forwards;
          animation: instantwin-successGlow 2s ease-in-out 2 forwards;
  z-index: 99;
  pointer-events: none;
}

.instantwin-success-modal-content.show {
  -webkit-animation: instantwin-successPulse 2s ease-in-out 2 forwards;
          animation: instantwin-successPulse 2s ease-in-out 2 forwards;
}

@media (max-width: 576px) {
  .instantwin-success-modal-content {
    padding: 1.5rem 1rem;
  }
}
.instantwin-success-icon {
  font-size: 5rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  -webkit-animation: instantwin-successIconPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
          animation: instantwin-successIconPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

.instantwin-success-congratulations {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  -webkit-animation: instantwin-successFadeIn 0.6s ease-out 0.4s both;
          animation: instantwin-successFadeIn 0.6s ease-out 0.4s both;
}

.instantwin-success-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  -webkit-animation: instantwin-successFadeIn 0.6s ease-out 0.5s both;
          animation: instantwin-successFadeIn 0.6s ease-out 0.5s both;
}

.instantwin-success-message {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  -webkit-animation: instantwin-successFadeIn 0.6s ease-out 0.7s both;
          animation: instantwin-successFadeIn 0.6s ease-out 0.7s both;
}

.instantwin-success-view-statement,
.instantwin-success-close-btn {
  -webkit-animation: instantwin-successButtonReveal 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s both;
          animation: instantwin-successButtonReveal 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s both;
}

.instantwin-success-note {
  font-size: 0.875rem;
  opacity: 0.9;
  -webkit-animation: instantwin-successFadeIn 0.5s ease-out 1.1s both;
          animation: instantwin-successFadeIn 0.5s ease-out 1.1s both;
}

.instantwin-success-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1rem;
  z-index: 101;
  -webkit-transition: background 0.2s ease, color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease;
}
.instantwin-success-close:hover {
  background: rgba(255, 255, 255, 0.35);
}

@media (max-width: 576px) {
  .instantwin-success-icon {
    font-size: 3.5rem !important;
  }
  .instantwin-success-title {
    font-size: 1.5rem !important;
  }
  .instantwin-success-message {
    font-size: 1rem !important;
  }
}
.mailshot-create-banner {
  max-width: 602px;
}

.mailshots-table .table-col-date--created {
  min-width: 110px;
}
.mailshots-table .table-col-date--scheduled {
  min-width: 170px;
}
.mailshots-table .table-col-date--scheduled:empty {
  display: none;
}
@media only screen and (min-width: 992px) {
  .mailshots-table .table-col-date--scheduled:empty {
    display: table-cell;
  }
}
.mailshots-table .table-col-actions {
  min-width: 120px;
}

.participants-table th,
.participants-table td {
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
}
.participants-table .col-name {
  overflow-x: hidden;
  width: 100%;
}
.participants-table .col-name .table-wrapper {
  max-width: 300px;
}
@media only screen and (min-width: 768px) {
  .participants-table .col-name {
    max-width: 300px;
    min-width: 150px;
    width: 150px;
  }
}
.participants-table .col-email {
  display: none;
  overflow-x: hidden;
  width: 100%;
}
.participants-table .col-email .table-wrapper {
  max-width: 400px;
}
@media only screen and (min-width: 768px) {
  .participants-table .col-email {
    display: table-cell;
  }
}
.participants-table .col-access {
  display: none;
  max-width: 150px;
  min-width: 150px;
  width: 150px;
}
@media only screen and (min-width: 768px) {
  .participants-table .col-access {
    display: table-cell;
  }
}
.participants-table .col-store {
  max-width: 250px;
  min-width: 150px;
  width: 150px;
}
.participants-table .col-store .table-wrapper {
  max-width: 250px;
}
.participants-table .col-town {
  display: none;
  max-width: 150px;
  min-width: 150px;
  width: 150px;
}
.participants-table .col-town .table-wrapper {
  max-width: 150px;
}
@media only screen and (min-width: 768px) {
  .participants-table .col-town {
    display: table-cell;
  }
}
.participants-table .col-postcode {
  max-width: 120px;
  min-width: 120px;
  width: 120px;
}
.participants-table .col-postcode .table-wrapper {
  max-width: 120px;
}
.participants-table .col-status {
  display: none;
  max-width: 130px;
  min-width: 130px;
  width: 130px;
}
@media only screen and (min-width: 768px) {
  .participants-table .col-status {
    display: table-cell;
  }
}
.participants-table .col-tcs {
  display: none;
  max-width: 75px;
  min-width: 75px;
  width: 75px;
}
@media only screen and (min-width: 768px) {
  .participants-table .col-tcs {
    display: table-cell;
  }
}
.participants-table .col-button {
  max-width: 68px;
  min-width: 68px;
  width: 68px;
}

.retailers-table th,
.retailers-table td {
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
}
.retailers-table .col-name {
  overflow-x: hidden;
  width: 100%;
}
.retailers-table .col-name .table-wrapper {
  max-width: 450px;
}
@media only screen and (min-width: 768px) {
  .retailers-table .col-name {
    max-width: 450px;
    min-width: 150px;
    width: 150px;
  }
}
.retailers-table .col-id {
  display: none;
  max-width: 450px;
  min-width: 150px;
  overflow-x: hidden;
  width: 150px;
}
.retailers-table .col-id .table-wrapper {
  max-width: 450px;
}
@media only screen and (min-width: 768px) {
  .retailers-table .col-id {
    display: table-cell;
  }
}
.retailers-table .col-band {
  display: none;
}
@media only screen and (min-width: 768px) {
  .retailers-table .col-band {
    display: table-cell;
  }
}
.retailers-table .col-address {
  display: none;
  max-width: 400px;
  min-width: 150px;
  overflow-x: hidden;
  width: 150px;
}
.retailers-table .col-address .table-wrapper {
  max-width: 400px;
}
@media only screen and (min-width: 768px) {
  .retailers-table .col-address {
    display: table-cell;
  }
}
.retailers-table .col-town {
  display: none;
  max-width: 250px;
  min-width: 150px;
  overflow-x: hidden;
  width: 150px;
}
.retailers-table .col-town .table-wrapper {
  max-width: 250px;
}
@media only screen and (min-width: 768px) {
  .retailers-table .col-town {
    display: table-cell;
  }
}
.retailers-table .col-postcode {
  max-width: 250px;
  min-width: 130px;
  overflow-x: hidden;
  width: 130px;
}
.retailers-table .col-postcode .table-wrapper {
  max-width: 250px;
}
.retailers-table .col-user {
  max-width: 250px;
  min-width: 150px;
  overflow-x: hidden;
  width: 150px;
}
.retailers-table .col-user .table-wrapper {
  max-width: 250px;
}
.retailers-table .col-mobile {
  max-width: 200px;
  min-width: 125px;
  overflow-x: hidden;
  width: 125px;
}
.retailers-table .col-mobile .table-wrapper {
  max-width: 200px;
}
.retailers-table .col-staff {
  display: none;
  max-width: 115px;
  min-width: 115px;
  width: 115px;
}
@media only screen and (min-width: 768px) {
  .retailers-table .col-staff {
    display: table-cell;
  }
}
.retailers-table .col-date-registered {
  display: none;
  max-width: 115px;
  min-width: 115px;
  width: 115px;
}
@media only screen and (min-width: 768px) {
  .retailers-table .col-date-registered {
    display: table-cell;
  }
}
.retailers-table .col-status {
  max-width: 130px;
  min-width: 130px;
  width: 130px;
}
.retailers-table .col-button {
  max-width: 68px;
  min-width: 68px;
  width: 68px;
}

.retailer-participants-table th,
.retailer-participants-table td {
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
}
.retailer-participants-table .col-name {
  overflow-x: hidden;
  width: 100%;
}
.retailer-participants-table .col-name .table-wrapper {
  max-width: 300px;
}
@media only screen and (min-width: 768px) {
  .retailer-participants-table .col-name {
    max-width: 300px;
    min-width: 150px;
    width: 150px;
  }
}
.retailer-participants-table .col-email {
  overflow-x: hidden;
  width: 100%;
}
.retailer-participants-table .col-email .table-wrapper {
  max-width: 400px;
}
.retailer-participants-table .col-access {
  max-width: 150px;
  min-width: 150px;
  width: 150px;
}
.retailer-participants-table .col-status {
  max-width: 130px;
  min-width: 130px;
  width: 130px;
}
.retailer-participants-table .col-tcs {
  max-width: 75px;
  min-width: 75px;
  width: 75px;
}
.retailer-participants-table .col-button {
  max-width: 68px;
  min-width: 68px;
  width: 68px;
}

.terms {
  background-color: #222;
  border: 1px solid #444;
  border-radius: 0.25rem;
  color: #fff;
  margin-bottom: 1.5rem;
  max-height: 500px;
  min-height: 200px;
  overflow-y: auto;
  padding: 0.75rem;
}

.contact-intro {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 4rem;
  margin-top: 2rem;
}
.contact-intro h1, .contact-intro h2, .contact-intro h3, .contact-intro h4, .contact-intro h5, .contact-intro h6 {
  color: #fff;
  margin-bottom: 1rem;
}
.contact-intro p {
  margin-bottom: 1rem;
}
.contact-intro p:last-child {
  margin-bottom: 0;
}

.contact-options .contact-card {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: #1e2939;
  border: 1px solid #364153;
  border-radius: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: 2rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.contact-options .contact-card:hover {
  border-color: #0148c4;
}
.contact-options .contact-card .contact-card-icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #0148c4;
  border-radius: 0.5rem;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.5rem;
  height: 3.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 1.5rem;
  width: 3.5rem;
}
.contact-options .contact-card .contact-card-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.contact-options .contact-card .contact-card-content .contact-card-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.contact-options .contact-card .contact-card-content .contact-card-description {
  color: #acacac;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.contact-options .contact-card .contact-card-content .contact-card-value {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.contact-options .contact-card .contact-card-content .contact-card-value a {
  color: #0148c4;
  text-decoration: none;
}
.contact-options .contact-card .contact-card-content .contact-card-value a:hover {
  text-decoration: underline;
}
.contact-options .contact-card .contact-card-content .contact-card-note {
  color: #acacac;
  font-size: 0.875rem;
  margin-bottom: 0;
}

.contact-opt-out {
  margin-top: 3rem;
}
.contact-opt-out .card {
  background-color: #1e2939;
  border: 1px solid #364153;
}
.contact-opt-out h5 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
}
.contact-opt-out p {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.6;
}
.contact-opt-out ul {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-left: 1.5rem;
  padding-left: 0.5rem;
}
.contact-opt-out ul li {
  margin-bottom: 0.5rem;
}
.contact-opt-out ul li:last-child {
  margin-bottom: 0;
}

.card-img-wrapper {
  overflow: hidden;
}
.card-img-wrapper .card-unread-indicator {
  background-color: #dc3545;
  border-radius: 50%;
  height: 1rem;
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  width: 1rem;
  z-index: 2;
}
.card-img-wrapper img {
  -webkit-transition: -webkit-transform 0.4s ease-out;
  transition: -webkit-transform 0.4s ease-out;
  transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
}

.jq-tile .card {
  -webkit-transition: -webkit-transform 0.3s ease-out, -webkit-box-shadow 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out, -webkit-box-shadow 0.3s ease-out;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, -webkit-transform 0.3s ease-out, -webkit-box-shadow 0.3s ease-out;
}
.jq-tile .card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.card-category-badge .badge-category {
  border-radius: 0.5rem;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
}
.card-category-badge .badge-category[data-category=promotions] {
  background-color: #a73cff;
}
.card-category-badge .badge-category[data-category=announcements], .card-category-badge .badge-category[data-category="brand insights"], .card-category-badge .badge-category[data-category="category insights"], .card-category-badge .badge-category[data-category=fun] {
  background-color: #ff6300;
}
.card-category-badge .badge-category[data-category=news] {
  background-color: #2577ff;
}
.card-category-badge .badge-category[data-category=regulations] {
  background-color: #f51f2d;
}
.card-category-badge .badge-category[data-category=knowledge] {
  background-color: #00c14c;
}
.card-category-badge .badge-category[data-category="sales tools"] {
  background-color: #ffb800;
}

.card-date {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #acacac;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.875rem;
  gap: 0.5rem;
}
.card-date i {
  color: #acacac;
  font-size: 0.875rem;
}

.card-body h4 {
  font-size: 1.1rem;
}

.category-filters .category-cards {
  display: -ms-grid;
  display: grid;
  gap: 1rem;
  -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr 1rem 1fr 1rem 1fr 1rem 1fr;
  grid-template-columns: repeat(6, 1fr);
}
@media only screen and (max-width: 575px) {
  .category-filters .category-cards {
    gap: 0.5rem;
    -ms-grid-columns: 1fr 0.5rem 1fr 0.5rem 1fr 0.5rem 1fr 0.5rem 1fr 0.5rem 1fr;
    grid-template-columns: repeat(6, 1fr);
  }
}
@media only screen and (min-width: 576px) and (max-width: 1199px) {
  .category-filters .category-cards {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 1200px) {
  .category-filters .category-cards {
    -ms-grid-columns: (1fr)[6];
    grid-template-columns: repeat(6, 1fr);
  }
}
.category-filters .category-cards .category-card {
  background-color: #1e2939;
  border: 2px solid #364153;
  border-radius: 0.5rem;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.5rem 1rem;
  position: relative;
  text-align: center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media only screen and (max-width: 575px) {
  .category-filters .category-cards .category-card {
    min-height: 54px;
    padding: 0.5rem 0.25rem;
  }
}
.category-filters .category-cards .category-card .category-card-icon-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 64px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0.75rem;
  padding: 0.75rem;
  position: relative;
  -webkit-transition: -webkit-transform 0.15s ease;
  transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease;
  width: 64px;
}
@media only screen and (max-width: 575px) {
  .category-filters .category-cards .category-card .category-card-icon-wrapper {
    background: transparent !important;
    height: auto;
    margin-bottom: 0;
    padding: 0;
    width: auto;
  }
}
.category-filters .category-cards .category-card .category-card-icon-wrapper .category-card-icon {
  color: #fff;
}
@media only screen and (max-width: 575px) {
  .category-filters .category-cards .category-card .category-card-icon-wrapper .category-card-icon {
    font-size: 0.75rem !important;
  }
}
.category-filters .category-cards .category-card:hover .category-card-icon-wrapper {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
@media only screen and (max-width: 575px) {
  .category-filters .category-cards .category-card:hover .category-card-icon-wrapper {
    -webkit-transform: none;
            transform: none;
  }
}
.category-filters .category-cards .category-card.active {
  border-color: #0148c4;
}
.category-filters .category-cards .category-card.active .category-card-icon-wrapper {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
@media only screen and (max-width: 575px) {
  .category-filters .category-cards .category-card.active .category-card-icon-wrapper {
    -webkit-transform: none;
            transform: none;
  }
}
@media only screen and (max-width: 575px) {
  .category-filters .category-cards .category-card.active {
    border: 2px solid #0148c4 !important;
  }
}
.category-filters .category-cards .category-card .category-card-label {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}
@media only screen and (max-width: 575px) {
  .category-filters .category-cards .category-card .category-card-label {
    display: none;
  }
}
.category-filters .category-cards .category-card .category-badge {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #0148c4;
  border-radius: 50%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.75rem;
  font-weight: 600;
  height: 1.75rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 1.75rem;
  padding: 0.25rem;
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  width: 1.75rem;
}
@media only screen and (max-width: 575px) {
  .category-filters .category-cards .category-card .category-badge {
    border: 1px solid #fff;
    font-size: 0.65rem;
    height: 1.25rem;
    min-width: 1.25rem;
    padding: 0.2rem;
    right: -0.25rem;
    top: -0.25rem;
    width: 1.25rem;
  }
}
.category-filters .category-cards .category-card[data-filter=latest] .category-card-icon-wrapper {
  background-color: #00a8cc;
}
.category-filters .category-cards .category-card[data-filter=latest] .category-badge {
  background-color: #00a8cc;
}
@media only screen and (max-width: 575px) {
  .category-filters .category-cards .category-card[data-filter=latest] {
    background-color: #00a8cc;
    border: 2px solid #364153;
  }
}
.category-filters .category-cards .category-card[data-filter=promotions] .category-card-icon-wrapper {
  background-color: #a73cff;
}
.category-filters .category-cards .category-card[data-filter=promotions] .category-badge {
  background-color: #a73cff;
}
@media only screen and (max-width: 575px) {
  .category-filters .category-cards .category-card[data-filter=promotions] {
    background-color: #a73cff;
    border: 2px solid #364153;
  }
}
.category-filters .category-cards .category-card[data-filter=knowledge] .category-card-icon-wrapper {
  background-color: #00c14c;
}
.category-filters .category-cards .category-card[data-filter=knowledge] .category-badge {
  background-color: #00c14c;
}
@media only screen and (max-width: 575px) {
  .category-filters .category-cards .category-card[data-filter=knowledge] {
    background-color: #00c14c;
    border: 2px solid #364153;
  }
}
.category-filters .category-cards .category-card[data-filter=spotlight] .category-card-icon-wrapper {
  background-color: #ff6300;
}
.category-filters .category-cards .category-card[data-filter=spotlight] .category-badge {
  background-color: #ff6300;
}
@media only screen and (max-width: 575px) {
  .category-filters .category-cards .category-card[data-filter=spotlight] {
    background-color: #ff6300;
    border: 2px solid #364153;
  }
}
.category-filters .category-cards .category-card[data-filter=news] .category-card-icon-wrapper {
  background-color: #2577ff;
}
.category-filters .category-cards .category-card[data-filter=news] .category-badge {
  background-color: #2577ff;
}
@media only screen and (max-width: 575px) {
  .category-filters .category-cards .category-card[data-filter=news] {
    background-color: #2577ff;
    border: 2px solid #364153;
  }
}
.category-filters .category-cards .category-card[data-filter=regulations] .category-card-icon-wrapper {
  background-color: #f51f2d;
}
.category-filters .category-cards .category-card[data-filter=regulations] .category-badge {
  background-color: #f51f2d;
}
@media only screen and (max-width: 575px) {
  .category-filters .category-cards .category-card[data-filter=regulations] {
    background-color: #f51f2d;
    border: 2px solid #364153;
  }
}
.category-filters .btn-filter {
  position: relative;
}
.category-filters .btn-filter .category-badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}
.category-filters .search-container #searchInput {
  min-height: 2.75rem;
  padding-left: 2.25rem !important;
}
.category-filters .search-container .search-icon {
  color: #acacac;
}
.category-filters .filters-toggle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #1e2939;
  border: 1px solid #364153;
  border-radius: 0.5rem;
  color: #acacac;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 2.75rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 2.75rem;
  padding: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.category-filters .filters-toggle:hover {
  background-color: #364153;
  color: #fff;
}
.category-filters .filters-toggle:focus {
  outline: none;
}
.category-filters .filters-toggle.active {
  background-color: #0148c4;
  border-color: #0148c4;
  color: #fff;
}
.category-filters .filters-toggle.active:hover {
  background-color: rgb(0.9, 64.8, 176.4);
  border-color: rgb(0.9, 64.8, 176.4);
}
.category-filters .filters-toggle i {
  font-size: 1rem;
}

.filters-panel {
  background-color: #1e2939;
  border: 1px solid #364153;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.filters-panel .filters-panel-body .filter-group .filter-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.filters-panel .filters-panel-body .filter-group .filter-toggle-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.filters-panel .filters-panel-body .filter-group .filter-toggle-group .filter-toggle {
  background-color: #1e2939;
  border: 1px solid #364153;
  border-radius: 0.5rem;
  color: #fff;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
  text-align: center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.filters-panel .filters-panel-body .filter-group .filter-toggle-group .filter-toggle:hover {
  background-color: #364153;
  border-color: #364153;
  color: #fff;
}
.filters-panel .filters-panel-body .filter-group .filter-toggle-group .filter-toggle:focus {
  outline: none;
}
.filters-panel .filters-panel-body .filter-group .filter-toggle-group .filter-toggle:last-child {
  margin-right: 0;
}
.filters-panel .filters-panel-body .filter-group .filter-toggle-group .filter-toggle.active {
  background-color: #0148c4;
  border-color: #0148c4;
  color: #fff;
}
.filters-panel .filters-panel-body .filter-group .filter-toggle-group .filter-toggle.active:hover {
  background-color: rgb(0.9, 64.8, 176.4);
  border-color: rgb(0.9, 64.8, 176.4);
}

.category-section.bounce-in {
  -webkit-animation: bounceIn 0.5s ease-out;
          animation: bounceIn 0.5s ease-out;
}
.category-section .category-heading {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 600;
  gap: 0.75rem;
}
.category-section .category-heading .category-heading-icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2rem;
}
.category-section .category-heading .category-heading-icon i {
  color: #fff;
  font-size: 1rem;
}
.category-section .category-heading[data-category=latest] .category-heading-icon {
  background-color: #00a8cc;
}
.category-section .category-heading[data-category=promotions] .category-heading-icon {
  background-color: #a73cff;
}
.category-section .category-heading[data-category=knowledge] .category-heading-icon {
  background-color: #00c14c;
}
.category-section .category-heading[data-category=announcements] .category-heading-icon, .category-section .category-heading[data-category="brand insights"] .category-heading-icon, .category-section .category-heading[data-category="category insights"] .category-heading-icon, .category-section .category-heading[data-category=fun] .category-heading-icon {
  background-color: #ff6300;
}
.category-section .category-heading[data-category=news] .category-heading-icon {
  background-color: #2577ff;
}
.category-section .category-heading[data-category=regulations] .category-heading-icon {
  background-color: #f51f2d;
}
.category-section .category-heading[data-category="sales tools"] .category-heading-icon {
  background-color: #ffb800;
}

.empty-state {
  padding: 3rem 1rem;
  border: 1px solid #444;
  border-radius: 0.25rem;
}
.empty-state i {
  opacity: 0.5;
}
.empty-state h3 {
  margin-bottom: 0.5rem;
}
.empty-state p {
  margin-bottom: 0;
}

.rewards-index-points {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.rewards-index-points .rewards-index-points-available {
  margin-bottom: 1.5rem;
}
.rewards-index-points .rewards-index-points-available .rewards-index-points-available-label {
  display: block;
  margin-bottom: 5px;
}
.rewards-index-points .rewards-index-points-available .rewards-index-points-available-value {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
}
.rewards-index-points .rewards-index-points-pending .badge {
  background-color: #f9a406;
  color: #fff;
  font-size: 0.7rem;
  white-space: normal;
}
@media only screen and (min-width: 768px) {
  .rewards-index-points .rewards-index-points-pending .badge {
    font-size: 0.8rem;
  }
}
@media only screen and (min-width: 992px) {
  .rewards-index-points .rewards-index-points-pending .badge {
    font-size: 0.85rem;
  }
}

.rewards-index-vouchers {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (min-width: 992px) {
  .rewards-index-vouchers {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.rewards-index-vouchers .rewards-index-vouchers-logo {
  margin-bottom: 1.5rem;
}
.rewards-index-vouchers .rewards-index-vouchers-logo img {
  background-color: #fff;
  border-radius: 5px;
  display: block;
  max-width: 150px;
  padding: 5px;
}
@media only screen and (min-width: 992px) {
  .rewards-index-vouchers .rewards-index-vouchers-logo {
    margin-bottom: 0;
    margin-left: 1rem;
  }
}
.rewards-index-vouchers .rewards-index-vouchers-content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.rewards-index-vouchers .rewards-index-vouchers-content .rewards-index-vouchers-content-amount {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-weight: 700;
  line-height: 1;
}
.rewards-index-vouchers .rewards-index-vouchers-content .rewards-index-vouchers-content-amount .rewards-index-vouchers-content-amount-prefix {
  margin-right: 5px;
  padding-bottom: 1px;
}
.rewards-index-vouchers .rewards-index-vouchers-content .rewards-index-vouchers-content-amount .rewards-index-vouchers-content-amount-value {
  font-size: 1.75rem;
}

.statement-header {
  background-color: #1e2939;
  border: 1px solid #364153;
  border-radius: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 2rem;
  padding: 1.5rem;
}
.statement-header .statement-header-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.statement-header .statement-header-item:not(:last-child) {
  margin-right: 2rem;
}
.statement-header .statement-header-item .statement-header-item-label {
  color: #acacac;
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.statement-header .statement-header-item .statement-header-item-value {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.statement-header .statement-header-item .statement-header-item-value .statement-header-item-value-number {
  color: #fff;
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-right: 0.5rem;
}
.statement-header .statement-header-item .statement-header-item-value .statement-header-item-value-number.pending {
  color: #f9a406;
}
.statement-header .statement-header-item .statement-header-item-value .statement-header-item-value-suffix {
  color: #acacac;
  display: block;
  font-size: 1rem;
  font-weight: 500;
}

.statement-table .table-row-credit .table-col-color {
  background-color: #28a745;
}
.statement-table .table-row-credit .table-col-statement--credit {
  color: #28a745;
  font-weight: 700;
}
.statement-table .table-row-debit .table-col-color {
  background-color: #dc3545;
}
.statement-table .table-row-debit .table-col-statement--debit {
  color: #dc3545;
  font-weight: 700;
}
.statement-table .table-col-statement--type {
  min-width: 110px;
}
.statement-table .table-col-statement--description {
  max-width: 0;
  min-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  .statement-table .table-col-statement--description {
    max-width: 400px;
    min-width: 400px;
    width: auto;
  }
}
@media only screen and (min-width: 1500px) {
  .statement-table .table-col-statement--description {
    max-width: 600px;
    min-width: 600px;
  }
}
.statement-table .table-col-statement--date {
  min-width: 120px;
}
.statement-table .table-col-statement--voucher-code,
.statement-table .table-col-statement--reference {
  min-width: 150px;
  width: 150px;
}
.statement-table .table-col-statement--credit {
  max-width: 65px;
  min-width: 65px;
  text-align: right;
}
.statement-table .table-col-statement--debit {
  max-width: 65px;
  min-width: 65px;
  text-align: right;
}
.statement-table .table-col-statement--total {
  font-weight: 700;
  max-width: 80px;
  min-width: 80px;
  text-align: right;
}
.statement-table .table-col-empty {
  display: none;
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  .statement-table .table-col-empty {
    display: table-cell;
  }
}

.statement-empty-state .jumbotron {
  background-color: #1e2939;
  border: 1px solid #364153;
  border-radius: 0.5rem;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
}
.statement-empty-state .jumbotron p {
  color: #fff;
}
.statement-empty-state .jumbotron p:first-child {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.videos-page .videos-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr 1rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media only screen and (max-width: 991px) {
  .videos-page .videos-grid {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .videos-page .videos-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 575px) {
  .videos-page .videos-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
.videos-page .video-thumbnail {
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.videos-page .video-thumbnail:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.videos-page .video-thumbnail.active {
  border: 2px solid #0148c4;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(1, 72, 196, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(1, 72, 196, 0.25);
}
.videos-page .video-thumbnail .card-img-top {
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.videos-page .video-thumbnail:hover .card-img-top {
  opacity: 0.9;
}
@media only screen and (max-width: 575px) {
  .videos-page .video-thumbnail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: auto;
  }
  .videos-page .video-thumbnail .card-img-top {
    width: 70px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: 0.25rem 0 0 0.25rem;
  }
  .videos-page .video-thumbnail .card-body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0.375rem 0.5rem;
    min-height: auto;
  }
  .videos-page .video-thumbnail .card-title {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.2;
  }
}
.videos-page #mainVideoPlayer {
  border-radius: 0.5rem;
  overflow: hidden;
}

.participant-video .participant-video-container {
  background-color: #1e2939;
  border: 0;
  border-radius: 5px;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  color: #fff;
  margin: 0 auto;
  max-width: 1200px;
  padding: 15px;
}
@media only screen and (min-width: 992px) {
  .participant-video .participant-video-container {
    max-width: 800px;
  }
}
@media only screen and (min-width: 1500px) {
  .participant-video .participant-video-container {
    max-width: 1050px;
  }
}
.participant-video .participant-video-container .participant-video-header {
  margin-bottom: 15px;
  text-align: center;
}
.participant-video .participant-video-container .participant-video-element {
  height: auto;
  margin: 0 auto;
  position: relative;
}
.participant-video .participant-video-container .participant-video-button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 15px;
  text-align: center;
}
.participant-video .participant-video-container .participant-video-button button:disabled {
  cursor: not-allowed !important;
  pointer-events: initial !important;
}
.participant-video .participant-video-container .participant-video-button.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.questionnaires-create-table-number {
  width: 70px;
}
.questionnaires-create-table-type {
  width: 160px;
}

.questionnaires-edit-types {
  display: -ms-grid;
  display: grid;
  grid-gap: 10px;
  -ms-grid-columns: 1;
  grid-template-columns: 1;
}
@media only screen and (min-width: 448px) {
  .questionnaires-edit-types {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 768px) {
  .questionnaires-edit-types {
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (min-width: 1200px) {
  .questionnaires-edit-types {
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr;
    grid-template-columns: repeat(5, 1fr);
  }
}
@media only screen and (min-width: 1500px) {
  .questionnaires-edit-types {
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr;
    grid-template-columns: repeat(7, 1fr);
  }
}
.questionnaires-edit-types-button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 15px;
}
.questionnaires-edit-types-button i {
  margin-bottom: 0;
  margin-right: 10px;
}
.questionnaires-edit-types-button a {
  color: #fff;
  text-decoration: none;
}
@media only screen and (min-width: 576px) {
  .questionnaires-edit-types-button {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px 15px;
  }
  .questionnaires-edit-types-button i {
    font-size: 3rem;
    margin-bottom: 10px;
    margin-right: 0;
  }
}

.questionnaires-selected {
  background-color: #1e2939;
  border-top: 1px solid #111;
  bottom: 0;
  display: none;
  left: 0;
  padding: 0.75rem 1.5rem;
  position: fixed;
  right: 0;
  z-index: 10;
}
@media only screen and (min-width: 992px) {
  .questionnaires-selected {
    left: 256px;
  }
}

@media only screen and (min-width: 992px) {
  .wrapper.collapsed .questionnaires-selected {
    left: 51px;
  }
}
.reports-table {
  table-layout: fixed;
}
.reports-table th,
.reports-table td {
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
}
.reports-table .col-id {
  max-width: 60px;
  min-width: 60px;
  width: 60px;
}
.reports-table .col-name {
  overflow-x: hidden;
  width: 100%;
}
.reports-table .col-name .table-wrapper {
  width: 250px;
}
.reports-table .col-name i {
  color: #fff;
}
.reports-table .col-category {
  max-width: 420px;
  min-width: 420px;
  width: 420px;
}
.reports-table .col-date-added {
  max-width: 130px;
  min-width: 130px;
  width: 130px;
}
.reports-table .col-button {
  max-width: 115px;
  min-width: 115px;
  width: 115px;
}
.reports-table .table-wrapper {
  display: block;
  overflow-x: hidden;
  text-overflow: ellipsis;
}

.rewards-carousel {
  position: relative;
}
.rewards-carousel .rewards-carousel-slider .item {
  background-color: #ddd;
}
.rewards-carousel .rewards-carousel-slider .item .item-image {
  display: block;
  width: 100%;
}
.rewards-carousel .rewards-carousel-arrow {
  background-color: #0148c4;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1.1588832487, 83.4395939086, 227.1411167513)), to(rgb(0.9, 64.8, 176.4)));
  background-image: linear-gradient(to bottom, rgb(1.1588832487, 83.4395939086, 227.1411167513), rgb(0.9, 64.8, 176.4));
  border: 2px solid #fff;
  border-radius: 25px;
  color: #fff;
  height: 35px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 35px;
  z-index: 50;
}
.rewards-carousel .rewards-carousel-arrow.rewards-carousel-arrow-prev {
  left: 0.5rem;
}
.rewards-carousel .rewards-carousel-arrow.rewards-carousel-arrow-next {
  right: 0.5rem;
}
.rewards-carousel .rewards-carousel-arrow:focus {
  outline: none;
}
.rewards-carousel .rewards-carousel-arrow:hover {
  font-size: 1.2rem;
  height: 41px;
  width: 41px;
}
.rewards-carousel .rewards-carousel-arrow:hover.rewards-carousel-arrow-prev {
  left: calc(0.5rem - 3px);
}
.rewards-carousel .rewards-carousel-arrow:hover.rewards-carousel-arrow-next {
  right: calc(0.5rem - 3px);
}

.rewards-menu {
  display: -ms-grid;
  display: grid;
  grid-gap: 1.5rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
}
@media only screen and (min-width: 768px) {
  .rewards-menu {
    -ms-grid-columns: 1fr 1.5rem 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1500px) {
  .rewards-menu {
    -ms-grid-columns: 1fr 1.5rem 1fr 1.5rem 1fr;
    grid-template-columns: repeat(3, 1fr);
  }
}
.rewards-menu .item {
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  display: block;
  margin: 0.5px 0;
  overflow: hidden;
  position: relative;
}
.rewards-menu .item .item-image {
  display: block;
  width: 100%;
}
.rewards-menu .item .item-cost {
  background-color: #0148c4;
  border: 1px solid #fff;
  border-radius: 0 5px 5px 0;
  -webkit-box-shadow: 0 0.125rem 0.125rem rgba(0, 0, 0, 0.04);
          box-shadow: 0 0.125rem 0.125rem rgba(0, 0, 0, 0.04);
  bottom: 0.75rem;
  color: #fff;
  font-weight: 600;
  left: -1px;
  padding: 0.25rem 0.75rem;
  position: absolute;
}
.rewards-menu .item .item-button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #0148c4;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1.1588832487, 83.4395939086, 227.1411167513)), to(rgb(0.9, 64.8, 176.4)));
  background-image: linear-gradient(to bottom, rgb(1.1588832487, 83.4395939086, 227.1411167513), rgb(0.9, 64.8, 176.4));
  border: 2px solid #fff;
  border-radius: 25px;
  bottom: calc(0.75rem - 2px);
  -webkit-box-shadow: 0 0.125rem 0.125rem rgba(0, 0, 0, 0.04);
          box-shadow: 0 0.125rem 0.125rem rgba(0, 0, 0, 0.04);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 35px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: calc(0.75rem - 2px);
  width: 35px;
}
.rewards-menu .item:active, .rewards-menu .item:hover {
  border-color: #0148c4;
  border-width: 2px;
  margin: 0;
}
.rewards-menu .item:active .item-cost, .rewards-menu .item:hover .item-cost {
  padding-left: calc(0.75rem - 1px);
}
.rewards-menu .item:active .item-button, .rewards-menu .item:hover .item-button {
  bottom: calc(0.75rem - 5px);
  font-size: 1.2rem;
  height: 41px;
  right: calc(0.75rem - 5px);
  width: 41px;
}

.rewards-offline {
  background-color: #eee;
  background-image: url("/images/rewards/rewards-offline-background.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
  overflow: hidden;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .rewards-offline {
    height: 500px;
  }
}
@media only screen and (min-width: 1500px) {
  .rewards-offline {
    height: 600px;
  }
}
.rewards-offline .rewards-offline-callout {
  height: 100%;
  position: relative;
}
.rewards-offline .rewards-offline-callout .rewards-offline-callout-image1,
.rewards-offline .rewards-offline-callout .rewards-offline-callout-image2,
.rewards-offline .rewards-offline-callout .rewards-offline-callout-image3 {
  -webkit-box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: block;
  position: absolute;
}
.rewards-offline .rewards-offline-callout .rewards-offline-callout-image1 {
  height: 150px;
  left: -15px;
  top: -15px;
  width: 150px;
}
@media only screen and (min-width: 576px) {
  .rewards-offline .rewards-offline-callout .rewards-offline-callout-image1 {
    height: 250px;
    left: 15px;
    width: 250px;
  }
}
.rewards-offline .rewards-offline-callout .rewards-offline-callout-image2 {
  height: 200px;
  right: -25px;
  top: 25px;
  width: 200px;
}
@media only screen and (min-width: 576px) {
  .rewards-offline .rewards-offline-callout .rewards-offline-callout-image2 {
    right: 25px;
  }
}
@media only screen and (min-width: 1200px) {
  .rewards-offline .rewards-offline-callout .rewards-offline-callout-image2 {
    bottom: -75px;
    height: 350px;
    left: 100px;
    right: unset;
    top: unset;
    width: 350px;
  }
}
@media only screen and (min-width: 1500px) {
  .rewards-offline .rewards-offline-callout .rewards-offline-callout-image2 {
    height: 450px;
    left: 150px;
    width: 450px;
  }
}
.rewards-offline .rewards-offline-callout .rewards-offline-callout-image3 {
  display: none;
  height: 200px;
  left: 30%;
  top: -30px;
  width: 200px;
}
@media only screen and (min-width: 1500px) {
  .rewards-offline .rewards-offline-callout .rewards-offline-callout-image3 {
    display: block;
  }
}
.rewards-offline .rewards-offline-callout .rewards-offline-callout-circle {
  display: block;
  left: -60px;
  position: absolute;
  right: -60px;
  top: 150px;
  width: calc(100% + 120px);
}
@media only screen and (min-width: 768px) {
  .rewards-offline .rewards-offline-callout .rewards-offline-callout-circle {
    left: -30px;
    right: -30px;
    top: 100px;
    width: calc(100% + 60px);
  }
}
@media only screen and (min-width: 1200px) {
  .rewards-offline .rewards-offline-callout .rewards-offline-callout-circle {
    left: unset;
    right: -50%;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.rewards-offline .rewards-offline-callout .rewards-offline-callout-content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 0;
  color: #fff;
  height: 50%;
  left: 0;
  padding: 45px;
  position: absolute;
  right: 0;
  text-align: center;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .rewards-offline .rewards-offline-callout .rewards-offline-callout-content {
    height: 70%;
  }
}
@media only screen and (min-width: 1200px) {
  .rewards-offline .rewards-offline-callout .rewards-offline-callout-content {
    height: unset;
    left: unset;
    padding: 60px;
    top: 0;
    width: 50%;
  }
}
.rewards-offline .rewards-offline-callout .rewards-offline-callout-content .rewards-offline-callout-content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  max-width: 400px;
}
.rewards-offline .rewards-offline-callout .rewards-offline-callout-content .rewards-offline-callout-content-title {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}
@media only screen and (min-width: 1200px) {
  .rewards-offline .rewards-offline-callout .rewards-offline-callout-content .rewards-offline-callout-content-title {
    font-size: 2.5rem;
  }
}
.rewards-offline .rewards-offline-callout .rewards-offline-callout-content .rewards-offline-callout-content-title:not(:last-child) {
  margin-bottom: 30px;
}
.rewards-offline .rewards-offline-callout .rewards-offline-callout-content .rewards-offline-callout-content-text {
  display: block;
}
@media only screen and (min-width: 768px) {
  .rewards-offline .rewards-offline-callout .rewards-offline-callout-content .rewards-offline-callout-content-text {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .rewards-offline .rewards-offline-callout .rewards-offline-callout-content .rewards-offline-callout-content-text {
    font-size: 1.7rem;
  }
}

.rewards-vouchers-add .rewards-vouchers-add-empty {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #1e2939;
  border: 1px solid #101828;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100px;
  padding: 1.5rem;
  text-align: center;
}
.rewards-vouchers-add .rewards-vouchers-add-grid {
  display: -ms-grid;
  display: grid;
  grid-gap: 0.75rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
}
.rewards-vouchers-add .rewards-vouchers-add-grid .item {
  background-color: #1e2939;
  border-radius: 4px;
  cursor: pointer;
  min-height: 80px;
  padding: 10px;
  -webkit-transition: 0.1s ease-in;
  transition: 0.1s ease-in;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.rewards-vouchers-add .rewards-vouchers-add-grid .item .item-top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 0.5rem;
}
.rewards-vouchers-add .rewards-vouchers-add-grid .item .item-top .item-value {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.rewards-vouchers-add .rewards-vouchers-add-grid .item .item-top .item-value .item-value-text {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  max-width: 170px;
}
.rewards-vouchers-add .rewards-vouchers-add-grid .item .item-top .item-quantity .item-quantity-container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #111;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 26px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 26px;
}
.rewards-vouchers-add .rewards-vouchers-add-grid .item .item-top .item-quantity .item-quantity-container .item-quantity-text {
  display: block;
  font-size: 0.8rem;
}
.rewards-vouchers-add .rewards-vouchers-add-grid .item .item-bottom .item-cost {
  display: block;
  line-height: 1.2;
}
.rewards-vouchers-add .rewards-vouchers-add-grid .item.active .item-top .item-quantity .item-quantity-container {
  background-color: #0148c4;
  color: #fff;
  height: 32px;
  width: 32px;
}
.rewards-vouchers-add .rewards-vouchers-add-grid .item.active .item-top .item-quantity .item-quantity-container .item-quantity-text {
  font-weight: 700;
}
.rewards-vouchers-add .rewards-vouchers-add-grid.lifestyle .item {
  background-color: #e9e4ec;
  background-image: url("/images/rewards/lifestyle-button-background_transparent.png");
  background-position: center right -10px;
  background-repeat: no-repeat;
  background-size: auto 100%;
  color: #3c1053;
}
.rewards-vouchers-add .rewards-vouchers-add-grid.lifestyle .item .item-top .item-quantity .item-quantity-container {
  background-color: #3c1053;
  color: #fff;
}
.rewards-vouchers-add .rewards-vouchers-add-grid.lifestyle .item.active {
  background-color: #3c1053;
  background-image: url("/images/rewards/lifestyle-button-background.png");
  color: #fff;
}
.rewards-vouchers-add .rewards-vouchers-add-grid.lifestyle .item.active .item-top .item-quantity .item-quantity-container {
  background-color: #6cd87d;
  color: #3c1053;
}
@media only screen and (min-width: 448px) {
  .rewards-vouchers-add .rewards-vouchers-add-grid {
    -ms-grid-columns: 1fr 0.75rem 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 992px) {
  .rewards-vouchers-add .rewards-vouchers-add-grid {
    -ms-grid-columns: 1fr 0.75rem 1fr 0.75rem 1fr 0.75rem 1fr;
    grid-template-columns: repeat(4, 1fr);
  }
  .rewards-vouchers-add .rewards-vouchers-add-grid .item {
    min-height: 100px;
  }
}
@media only screen and (min-width: 1500px) {
  .rewards-vouchers-add .rewards-vouchers-add-grid {
    -ms-grid-columns: 1fr 0.75rem 1fr 0.75rem 1fr 0.75rem 1fr 0.75rem 1fr 0.75rem 1fr;
    grid-template-columns: repeat(6, 1fr);
  }
}

.rewards-vouchers-review {
  max-width: 1044px;
}
.rewards-vouchers-review .rewards-vouchers-review-error {
  display: none;
}
.rewards-vouchers-review .rewards-vouchers-review-error.visible {
  display: block;
}
.rewards-vouchers-review .rewards-vouchers-review-empty {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #1e2939;
  border: 1px solid #101828;
  border-radius: 4px;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100px;
  padding: 1.5rem;
  text-align: center;
}
.rewards-vouchers-review .rewards-vouchers-review-empty.visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.rewards-vouchers-review .rewards-vouchers-review-list {
  display: -ms-grid;
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.rewards-vouchers-review .rewards-vouchers-review-list .item {
  background-color: #1e2939;
  border: 1px solid #101828;
  border-radius: 4px;
  display: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.rewards-vouchers-review .rewards-vouchers-review-list .item.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.rewards-vouchers-review .rewards-vouchers-review-list .item .item-value {
  padding: 0.25rem;
}
.rewards-vouchers-review .rewards-vouchers-review-list .item .item-value .item-value-image {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #1e2939;
  border-radius: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 48px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 7px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 72px;
}
.rewards-vouchers-review .rewards-vouchers-review-list .item .item-value .item-value-image .item-value-image-text {
  color: #fff;
  display: block;
  font-weight: 600;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .rewards-vouchers-review .rewards-vouchers-review-list .item .item-value .item-value-image {
    height: 36px;
    width: 48px;
  }
}
.rewards-vouchers-review .rewards-vouchers-review-list .item .item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  padding: 0.25rem 0.75rem;
}
.rewards-vouchers-review .rewards-vouchers-review-list .item .item-content .item-title {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.5rem;
}
.rewards-vouchers-review .rewards-vouchers-review-list .item .item-content .item-title .item-title-text {
  display: block;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .rewards-vouchers-review .rewards-vouchers-review-list .item .item-content .item-title {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-bottom: 0;
  }
}
.rewards-vouchers-review .rewards-vouchers-review-list .item .item-content .item-quantity {
  margin-bottom: 0.5rem;
}
.rewards-vouchers-review .rewards-vouchers-review-list .item .item-content .item-quantity .form-control {
  width: 75px;
}
@media only screen and (min-width: 768px) {
  .rewards-vouchers-review .rewards-vouchers-review-list .item .item-content .item-quantity {
    margin-bottom: 0;
  }
}
.rewards-vouchers-review .rewards-vouchers-review-list .item .item-content .item-points {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.9rem;
}
.rewards-vouchers-review .rewards-vouchers-review-list .item .item-content .item-points .item-points-label {
  display: block;
  margin-right: 0.25rem;
}
.rewards-vouchers-review .rewards-vouchers-review-list .item .item-content .item-points .item-points-value {
  display: block;
}
@media only screen and (min-width: 768px) {
  .rewards-vouchers-review .rewards-vouchers-review-list .item .item-content .item-points .item-points-label {
    text-align: right;
    width: 70px;
  }
  .rewards-vouchers-review .rewards-vouchers-review-list .item .item-content .item-points .item-points-value {
    font-weight: 700;
    text-align: right;
    width: 60px;
  }
}
@media only screen and (min-width: 768px) {
  .rewards-vouchers-review .rewards-vouchers-review-list .item .item-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.rewards-vouchers-review .rewards-vouchers-review-list .item .item-button {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0.25rem;
}
@media only screen and (min-width: 768px) {
  .rewards-vouchers-review .rewards-vouchers-review-list .item .item-button {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.rewards-vouchers-review .rewards-vouchers-review-list.lifestyle .item .item-value .item-value-image {
  background-color: #3c1053;
}
.rewards-vouchers-review .rewards-vouchers-review-list.lifestyle .item .item-value .item-value-image .item-value-image-text {
  color: #fff;
}
.rewards-vouchers-review .rewards-vouchers-review-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.rewards-vouchers-review .rewards-vouchers-review-details .rewards-vouchers-review-details-summary {
  margin-bottom: 1.5rem;
}
.rewards-vouchers-review .rewards-vouchers-review-details .rewards-vouchers-review-details-summary .rewards-vouchers-review-details-summary-container {
  background-color: #1e2939;
  border: 1px solid #101828;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0.75rem;
}
.rewards-vouchers-review .rewards-vouchers-review-details .rewards-vouchers-review-details-summary .rewards-vouchers-review-details-summary-container .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
}
.rewards-vouchers-review .rewards-vouchers-review-details .rewards-vouchers-review-details-summary .rewards-vouchers-review-details-summary-container .item .item-label {
  display: block;
  margin-right: 0.25rem;
  width: 140px;
}
.rewards-vouchers-review .rewards-vouchers-review-details .rewards-vouchers-review-details-summary .rewards-vouchers-review-details-summary-container .item .item-value {
  display: block;
  font-weight: 700;
  text-align: right;
  width: 60px;
}
.rewards-vouchers-review .rewards-vouchers-review-details .rewards-vouchers-review-details-summary .rewards-vouchers-review-details-summary-container .item.item-last {
  border-top: 1px solid #364153;
  margin-top: 0.25rem;
  padding-top: 0.25rem;
}
@media only screen and (min-width: 768px) {
  .rewards-vouchers-review .rewards-vouchers-review-details .rewards-vouchers-review-details-summary .rewards-vouchers-review-details-summary-container .item .item-label {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    text-align: right;
    width: auto;
  }
}
@media only screen and (min-width: 768px) {
  .rewards-vouchers-review .rewards-vouchers-review-details .rewards-vouchers-review-details-summary .rewards-vouchers-review-details-summary-container {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media only screen and (min-width: 768px) {
  .rewards-vouchers-review .rewards-vouchers-review-details .rewards-vouchers-review-details-summary {
    margin-bottom: 0;
    margin-left: 1.5rem;
    width: 250px;
  }
}
@media only screen and (min-width: 768px) {
  .rewards-vouchers-review .rewards-vouchers-review-details .rewards-vouchers-review-details-information {
    width: calc(100% - (250px - 1.5rem));
  }
}
@media only screen and (min-width: 768px) {
  .rewards-vouchers-review .rewards-vouchers-review-details {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-right: 44px;
  }
}

.rewards-vouchers-confirm {
  max-width: 1000px;
}
.rewards-vouchers-confirm .rewards-vouchers-confirm-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 1.5rem;
}
.rewards-vouchers-confirm .rewards-vouchers-confirm-list .item {
  background-color: #1e2939;
  border: 1px solid #101828;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.rewards-vouchers-confirm .rewards-vouchers-confirm-list .item:not(:last-child) {
  margin-bottom: 0.5rem;
}
.rewards-vouchers-confirm .rewards-vouchers-confirm-list .item .item-value {
  padding: 0.25rem;
}
.rewards-vouchers-confirm .rewards-vouchers-confirm-list .item .item-value .item-value-image {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #1e2939;
  border-radius: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 48px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 7px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 72px;
}
.rewards-vouchers-confirm .rewards-vouchers-confirm-list .item .item-value .item-value-image .item-value-image-text {
  color: #fff;
  display: block;
  font-weight: 600;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .rewards-vouchers-confirm .rewards-vouchers-confirm-list .item .item-value .item-value-image {
    height: 36px;
    width: 48px;
  }
}
.rewards-vouchers-confirm .rewards-vouchers-confirm-list .item .item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  padding: 0.25rem 0.75rem;
}
.rewards-vouchers-confirm .rewards-vouchers-confirm-list .item .item-content .item-title {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.rewards-vouchers-confirm .rewards-vouchers-confirm-list .item .item-content .item-title .item-title-text {
  display: block;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .rewards-vouchers-confirm .rewards-vouchers-confirm-list .item .item-content .item-title {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
.rewards-vouchers-confirm .rewards-vouchers-confirm-list .item .item-content .item-points {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.9rem;
}
.rewards-vouchers-confirm .rewards-vouchers-confirm-list .item .item-content .item-points .item-points-label {
  display: block;
  margin-right: 0.25rem;
}
.rewards-vouchers-confirm .rewards-vouchers-confirm-list .item .item-content .item-points .item-points-value {
  display: block;
}
@media only screen and (min-width: 768px) {
  .rewards-vouchers-confirm .rewards-vouchers-confirm-list .item .item-content .item-points .item-points-label {
    text-align: right;
    width: 70px;
  }
  .rewards-vouchers-confirm .rewards-vouchers-confirm-list .item .item-content .item-points .item-points-value {
    font-weight: 700;
    text-align: right;
    width: 60px;
  }
}
@media only screen and (min-width: 768px) {
  .rewards-vouchers-confirm .rewards-vouchers-confirm-list .item .item-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.rewards-vouchers-confirm .rewards-vouchers-confirm-list.lifestyle .item .item-value .item-value-image {
  background-color: #3c1053;
}
.rewards-vouchers-confirm .rewards-vouchers-confirm-list.lifestyle .item .item-value .item-value-image .item-value-image-text {
  color: #fff;
}
.rewards-vouchers-confirm .rewards-vouchers-confirm-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.rewards-vouchers-confirm .rewards-vouchers-confirm-details .rewards-vouchers-confirm-details-summary {
  margin-bottom: 1.5rem;
}
.rewards-vouchers-confirm .rewards-vouchers-confirm-details .rewards-vouchers-confirm-details-summary .rewards-vouchers-confirm-details-summary-container {
  background-color: #1e2939;
  border: 1px solid #101828;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0.75rem;
}
.rewards-vouchers-confirm .rewards-vouchers-confirm-details .rewards-vouchers-confirm-details-summary .rewards-vouchers-confirm-details-summary-container .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
}
.rewards-vouchers-confirm .rewards-vouchers-confirm-details .rewards-vouchers-confirm-details-summary .rewards-vouchers-confirm-details-summary-container .item .item-label {
  display: block;
  margin-right: 0.25rem;
  width: 140px;
}
.rewards-vouchers-confirm .rewards-vouchers-confirm-details .rewards-vouchers-confirm-details-summary .rewards-vouchers-confirm-details-summary-container .item .item-value {
  display: block;
  font-weight: 700;
  text-align: right;
  width: 60px;
}
.rewards-vouchers-confirm .rewards-vouchers-confirm-details .rewards-vouchers-confirm-details-summary .rewards-vouchers-confirm-details-summary-container .item.item-last {
  border-top: 1px solid #364153;
  margin-top: 0.25rem;
  padding-top: 0.25rem;
}
@media only screen and (min-width: 768px) {
  .rewards-vouchers-confirm .rewards-vouchers-confirm-details .rewards-vouchers-confirm-details-summary .rewards-vouchers-confirm-details-summary-container .item .item-label {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    text-align: right;
    width: auto;
  }
}
@media only screen and (min-width: 768px) {
  .rewards-vouchers-confirm .rewards-vouchers-confirm-details .rewards-vouchers-confirm-details-summary .rewards-vouchers-confirm-details-summary-container {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media only screen and (min-width: 768px) {
  .rewards-vouchers-confirm .rewards-vouchers-confirm-details .rewards-vouchers-confirm-details-summary {
    margin-bottom: 0;
    margin-left: 1.5rem;
    width: 250px;
  }
}
@media only screen and (min-width: 768px) {
  .rewards-vouchers-confirm .rewards-vouchers-confirm-details .rewards-vouchers-confirm-details-information {
    width: calc(100% - (250px - 1.5rem));
  }
}
@media only screen and (min-width: 768px) {
  .rewards-vouchers-confirm .rewards-vouchers-confirm-details {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.settings {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.settings .settings-item {
  background-color: #1e2939;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1rem;
  text-decoration: none;
}
.settings .settings-item .item-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0.75rem;
  margin-right: 0;
}
.settings .settings-item .item-details .details-name {
  color: #fff;
  display: block;
  font-weight: 700;
}
.settings .settings-item .item-details .details-description {
  color: #acacac;
  display: block;
  font-size: 0.8rem;
}
@media only screen and (min-width: 768px) {
  .settings .settings-item .item-details {
    margin-bottom: 0;
    margin-right: 1.5rem;
  }
}
.settings .settings-item .item-button {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.settings .settings-item .item-button .btn {
  cursor: pointer;
}
.settings .settings-item:hover .details-name, .settings .settings-item:active .details-name {
  text-decoration: underline;
}
.settings .settings-item:hover .btn, .settings .settings-item:active .btn {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(37.0121827411, 115.9771573604, 253.8878172589)), to(rgb(0.9, 64.8, 176.4)));
  background-image: linear-gradient(to bottom, rgb(37.0121827411, 115.9771573604, 253.8878172589), rgb(0.9, 64.8, 176.4));
}
.settings .settings-item:not(:first-of-type) {
  padding-top: 0.75rem;
}
.settings .settings-item:not(:last-of-type) {
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.75rem;
}
@media only screen and (min-width: 768px) {
  .settings .settings-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.useractions-welcome {
  background-image: url("/images/account/account-background.webp");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 1.5rem;
  padding: calc(0.75rem + 4px);
}
@media only screen and (min-width: 768px) {
  .useractions-welcome {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.useractions-welcome .useractions-welcome-content {
  width: 100%;
}
.useractions-welcome .useractions-welcome-content h1, .useractions-welcome .useractions-welcome-content h2, .useractions-welcome .useractions-welcome-content h3, .useractions-welcome .useractions-welcome-content h4, .useractions-welcome .useractions-welcome-content h5, .useractions-welcome .useractions-welcome-content h6, .useractions-welcome .useractions-welcome-content p {
  max-width: 800px;
}
.useractions-welcome .useractions-welcome-content .btn:hover, .useractions-welcome .useractions-welcome-content .btn:active {
  color: #000;
}
@media only screen and (min-width: 768px) {
  .useractions-welcome .useractions-welcome-content {
    width: calc(100% - (100px + 1rem));
  }
}
.useractions-welcome .useractions-welcome-dismiss {
  font-size: 0.6rem;
  margin-left: 0;
  margin-top: 1rem;
  text-align: left;
  width: 100%;
}
.useractions-welcome .useractions-welcome-dismiss .useractions-welcome-dismiss-button {
  cursor: pointer;
  display: block;
  text-decoration: underline;
}
@media only screen and (min-width: 768px) {
  .useractions-welcome .useractions-welcome-dismiss {
    margin-left: 1rem;
    margin-top: 0;
    text-align: right;
    width: 100px;
  }
}

.useractions-heading {
  background: -webkit-gradient(linear, left top, right top, from(#0148c4), to(transparent));
  background: linear-gradient(90deg, #0148c4, transparent);
  border-radius: 5px;
  color: #fff;
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1.5rem;
  padding: 0.75rem;
  padding-bottom: calc(0.75rem + 2px);
}

.useractions-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -0.5rem;
}
.useractions-list .useractions-list-item {
  background-color: #1e2939;
  border-radius: 5px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 0.5rem;
  overflow: hidden;
  text-decoration: none;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .useractions-list .useractions-list-item {
    width: calc(50% - 1rem);
  }
}
@media only screen and (min-width: 1500px) {
  .useractions-list .useractions-list-item {
    width: calc(33.3333333333% - 1rem);
  }
}
.useractions-list .useractions-list-item:hover, .useractions-list .useractions-list-item:active {
  background-color: rgb(37.2931034483, 50.9672413793, 70.8568965517);
}
.useractions-list .useractions-list-item .useractions-list-item-details {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow: hidden;
  padding: 0.75rem;
}
.useractions-list .useractions-list-item .useractions-list-item-details .useractions-list-item-title,
.useractions-list .useractions-list-item .useractions-list-item-details .useractions-list-item-date,
.useractions-list .useractions-list-item .useractions-list-item-details .useractions-list-item-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.useractions-list .useractions-list-item .useractions-list-item-details .useractions-list-item-title {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}
.useractions-list .useractions-list-item .useractions-list-item-details .useractions-list-item-date {
  display: block;
  font-size: 0.75rem;
}
.useractions-list .useractions-list-item .useractions-list-item-details .useractions-list-item-name {
  display: block;
  font-size: 0.75rem;
}
.useractions-list .useractions-list-item .useractions-list-item-status {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  padding-left: 4px;
  padding-right: 2px;
  text-align: center;
  text-orientation: mixed;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.useractions-list:not(:last-child) {
  margin-bottom: 1rem;
}

.useractions-list .default {
  background-color: #444;
}
.useractions-list .danger {
  background-color: #dc3545 !important;
}
.useractions-list .warning {
  background-color: #ffc107 !important;
}
.useractions-list .info {
  background-color: #17a2b8 !important;
}
.useractions-list .success {
  background-color: #28a745 !important;
}
.useractions-list .complete {
  background-color: #28a745 !important;
}
.useractions-list .draft {
  background-color: #6c757d !important;
}
.useractions-list .overdue {
  background-color: #dc3545 !important;
}
.useractions-list .published {
  background-color: #17a2b8 !important;
}
.useractions-list .paused {
  background-color: #ffc107 !important;
}
.useractions-list .scheduled {
  background-color: #0a1242 !important;
}
.useractions-list .secondary {
  background-color: #6c757d !important;
}

.question-choice {
  border: 2px solid #444;
  border-radius: 3px;
  cursor: pointer;
  display: block;
  padding: 0.5rem;
}
.question-choice .custom-control-label {
  display: block;
}
.question-choice:not(:last-of-type) {
  margin-bottom: 1rem;
}

.question-video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.question-video .question-video-controls {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #222;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 640px;
  padding: 0.5rem;
  width: 100%;
}
.question-video .question-video-upload {
  background-color: #333;
  border-bottom: 1px solid #111;
  border-top: 1px solid #111;
  padding: 0.25rem;
}
.question-video .question-video-upload:empty {
  display: none;
}

.question-video-capture {
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  height: auto;
  max-width: 100%;
  width: 640px;
}

.question-video-preview {
  border-radius: 0.25rem;
}

.question-video-recorded {
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

#savedVideo video {
  border-radius: 0.25rem;
  height: auto;
  max-width: 100%;
}

#recordingPreview {
  border-radius: 0.25rem;
  height: auto;
  max-width: 100%;
}

.activity-header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #2577ff;
  border-radius: 0.5rem;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 600;
  padding: 1rem 1.25rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  line-height: 1;
}
.activity-header .activity-header-title {
  color: #fff;
  display: block;
  font-size: 1rem;
}
.activity-header.categoryknowledge {
  background-color: #00c14c;
}
.activity-header.challenge25 {
  background-color: #dc3545;
}
.activity-header.feedback {
  background-color: #ff6300;
}
.activity-header.knowledge {
  background-color: #00c14c;
}
.activity-header.monthlyparticipation {
  background-color: #00c14c;
}
.activity-header.news {
  background-color: #2577ff;
}
.activity-header.quiz {
  background-color: #00c14c;
}
.activity-header.selfassessment {
  background-color: #00c14c;
}
.activity-header.visit {
  background-color: #ffc107;
}
.activity-header.promotions {
  background-color: #a73cff;
}
.activity-header.announcements {
  background-color: #ff6300;
}
.activity-header.regulations {
  background-color: #f51f2d;
}
.activity-header.brand.insights, .activity-header.category.insights, .activity-header.fun {
  background-color: #ff6300;
}
.activity-header[class*=sales] {
  background-color: #ffb800;
}

.activity-status .border-warning {
  border-color: rgb(222.7, 167.025, 0) !important;
}
.activity-status .text-warning {
  color: rgb(222.7, 167.025, 0) !important;
}

.users-filter .form-group {
  width: 100%;
}
.users-filter .form-group .input-group {
  width: 100%;
}
.users-filter .form-group .input-group .form-control {
  border-radius: 0.25rem;
}
.users-filter .input-group-btn {
  display: none;
}

.users-table .table-col-locked,
.users-table .table-col-deleted,
.users-table .table-col-active {
  text-align: center;
}

.voucherpayments-totals-table {
  width: auto;
}
.voucherpayments-totals-table .col-name {
  width: 100px;
}
.voucherpayments-totals-table .col-participants {
  width: 150px;
}
.voucherpayments-totals-table .col-retailers {
  width: 130px;
}
.voucherpayments-totals-table .col-points {
  width: 105px;
}
.voucherpayments-totals-table .col-total {
  width: 105px;
}
.voucherpayments-totals-table .col-average {
  width: 130px;
}

.voucherpayments-users-table .col-name {
  width: 220px;
}
.voucherpayments-users-table .col-credit {
  width: 150px;
}
.voucherpayments-users-table .col-town {
  width: 180px;
}
.voucherpayments-users-table .col-postcode {
  width: 180px;
}

.voucherpayments-history-table .col-date {
  width: 120px;
}
.voucherpayments-history-table .col-recipients {
  width: 120px;
}
.voucherpayments-history-table .col-stores {
  width: 120px;
}
.voucherpayments-history-table .col-credit {
  width: 120px;
}
.voucherpayments-history-table .col-download {
  width: 96px;
}

.nav-activity-none:not(.active) .nav-link {
  color: #ccc !important;
}

.welcomemanagement-index-list .welcomemanagement-index-list-table .col-handle {
  text-align: center;
}
.welcomemanagement-index-list .welcomemanagement-index-list-table .col-title {
  width: 100%;
}
.welcomemanagement-index-list .welcomemanagement-index-list-table .col-admin {
  text-align: center;
}
.welcomemanagement-index-list .welcomemanagement-index-list-table .col-live {
  text-align: center;
}

.logo-light {
  display: none !important;
}

.logo-dark {
  display: block !important;
}

.btn-outline-primary {
  border-color: #fff;
  color: #fff;
}
.btn-outline-primary:hover, .btn-outline-primary:active, .btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active {
  background-color: #fff;
  border-color: #fff;
  color: #101828;
}

.voucherpayments-totals-table thead th,
.voucherpayments-totals-table tbody td,
.voucherpayments-users-table thead th,
.voucherpayments-users-table tbody td,
.voucherpayments-history-table thead th,
.voucherpayments-history-table tbody td {
  border-color: #364153 !important;
}
.voucherpayments-totals-table tbody tr,
.voucherpayments-users-table tbody tr,
.voucherpayments-history-table tbody tr {
  border-bottom: 1px solid #364153;
}
.voucherpayments-totals-table tbody tr:nth-child(even),
.voucherpayments-users-table tbody tr:nth-child(even),
.voucherpayments-history-table tbody tr:nth-child(even) {
  background-color: rgb(29.4, 40.18, 55.86);
}

.voucherpayments-users-table tbody tr:hover,
.voucherpayments-history-table tbody tr:hover {
  background-color: rgb(37.2931034483, 50.9672413793, 70.8568965517) !important;
}
/*# sourceMappingURL=dark.css.map */