.dzu-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 120px;
  overflow: scroll;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  transition: all .15s linear;
  border: 2px solid #d9d9d9;
  border-radius: 4px;
}

.dzu-dropzoneActive {
  background-color: #DEEBFF;
  border-color: #2484FF;
}

.dzu-dropzoneDisabled {
  opacity: 0.5;
}

.dzu-dropzoneDisabled *:hover {
  cursor: unset;
}

.dzu-input {
  display: none;
}

.dzu-inputLabel {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  font-family: 'Helvetica', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #2484FF;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  cursor: pointer;
}

.dzu-inputLabelWithFiles {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: flex-start;
  padding: 0 14px;
  min-height: 32px;
  background-color: #E6E6E6;
  color: #2484FF;
  border: none;
  font-family: 'Helvetica', sans-serif;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 20px;
  margin-left: 3%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  cursor: pointer;
}

.dzu-previewContainer {
  padding: 40px 3%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  min-height: 60px;
  z-index: 1;
  border-bottom: 1px solid #ECECEC;
  box-sizing: border-box;
}

.dzu-previewStatusContainer {
  display: flex;
  align-items: center;
}

.dzu-previewFileName {
  font-family: 'Helvetica', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
}

.dzu-previewImage {
  width: auto;
  max-height: 40px;
  max-width: 140px;
  border-radius: 4px;
}

.dzu-previewButton {
  background-size: 14px 14px;
  background-position: center;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  cursor: pointer;
  opacity: 0.9;
  margin: 0 0 2px 10px;
}

.dzu-submitButtonContainer {
  margin: 24px 0;
  z-index: 1;
}

.dzu-submitButton {
  padding: 0 14px;
  min-height: 32px;
  background-color: #2484FF;
  border: none;
  border-radius: 4px;
  font-family: 'Helvetica', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #FFF;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  cursor: pointer;
}

.dzu-submitButton:disabled {
  background-color: #E6E6E6;
  color: #333333;
  cursor: unset;
}
@charset "UTF-8";
/**
 * Custom bootstrap theme
 */
/**
 * Variable overrides
 * (these need to come before Bootstrap)
 */
@font-face {
  font-family: "Graphik";
  src: url("/static/Graphik-Regular-Web.e00de50b.woff2") format("woff2"), url("/static/Graphik-Regular-Web.d1d1f5c9.woff") format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "Graphik";
  src: url("/static/Graphik-Medium-Web.f4033fa5.woff2") format("woff2"), url("/static/Graphik-Medium-Web.8b03950d.woff") format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "Maax";
  src: url("/static/Maax-Mono-Regular.245af90c.woff") format("woff");
}
/**
  * Import bootstrap (using vars above)
  */
/*!
 * Bootstrap v4.3.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: #3047ff;
  --indigo: #001eca;
  --purple: rgba(128, 0, 255, 0.2);
  --pink: #e83e8c;
  --red: #ff4949;
  --orange: rgba(245, 166, 35, 0.2);
  --yellow: rgba(239, 255, 4, 0.2);
  --green: rgba(0, 202, 153, 0.2);
  --teal: #5dfeca;
  --cyan: #97fffd;
  --white: #ffffff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #42424e;
  --secondary: #ffffff;
  --success: rgba(0, 202, 153, 0.2);
  --info: #97fffd;
  --warning: #FFBF00;
  --danger: #ff4949;
  --light: #f1f1f5;
  --dark: #777783;
  --breakpoint-xs: 0;
  --breakpoint-sm: 768px;
  --breakpoint-lg: 1436px;
  --font-family-sans-serif: "Graphik", Arial, sans-serif;
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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

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

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

body {
  margin: 0;
  font-family: "Graphik", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.33;
  color: #040405;
  text-align: left;
  background-color: #f1f1f5;
}

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

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

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

p {
  margin-top: 0;
  margin-bottom: 24px;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  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: 500;
}

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: #42424e;
  text-decoration: underline;
  background-color: transparent;
}
a:hover {
  color: #42424e;
  text-decoration: underline;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
  outline: 0;
}

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: 12px;
}

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] {
  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: 6px;
  font-weight: 400;
  line-height: 1.33;
}

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

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

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

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

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

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

.lead {
  font-size: 1.125rem;
  font-weight: 400;
}

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

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

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

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

hr {
  margin-top: 12px;
  margin-bottom: 12px;
  border: 0;
  border-top: 2px solid #f1f1f5;
}

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: 12px;
  font-size: 1.25rem;
}

.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: #f1f1f5;
  border: 2px solid #dddde5;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 6px;
  line-height: 1;
}

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

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

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #ffffff;
  background-color: #212529;
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 500;
}

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: 18px;
  padding-left: 18px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 1436px) {
  .container {
    max-width: 1436px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 18px;
  padding-left: 18px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -18px;
  margin-left: -18px;
}

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

.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-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: 18px;
  padding-left: 18px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.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: 768px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    order: -1;
  }

  .order-sm-last {
    order: 13;
  }

  .order-sm-0 {
    order: 0;
  }

  .order-sm-1 {
    order: 1;
  }

  .order-sm-2 {
    order: 2;
  }

  .order-sm-3 {
    order: 3;
  }

  .order-sm-4 {
    order: 4;
  }

  .order-sm-5 {
    order: 5;
  }

  .order-sm-6 {
    order: 6;
  }

  .order-sm-7 {
    order: 7;
  }

  .order-sm-8 {
    order: 8;
  }

  .order-sm-9 {
    order: 9;
  }

  .order-sm-10 {
    order: 10;
  }

  .order-sm-11 {
    order: 11;
  }

  .order-sm-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: 1436px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    order: -1;
  }

  .order-lg-last {
    order: 13;
  }

  .order-lg-0 {
    order: 0;
  }

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }

  .order-lg-3 {
    order: 3;
  }

  .order-lg-4 {
    order: 4;
  }

  .order-lg-5 {
    order: 5;
  }

  .order-lg-6 {
    order: 6;
  }

  .order-lg-7 {
    order: 7;
  }

  .order-lg-8 {
    order: 8;
  }

  .order-lg-9 {
    order: 9;
  }

  .order-lg-10 {
    order: 10;
  }

  .order-lg-11 {
    order: 11;
  }

  .order-lg-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%;
  }
}
.table {
  width: 100%;
  margin-bottom: 12px;
  color: #040405;
}
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 2px solid #f1f1f5;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 4px solid #f1f1f5;
}
.table tbody + tbody {
  border-top: 4px solid #f1f1f5;
}

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

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

.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(4, 4, 5, 0.05);
}

.table-hover tbody tr:hover {
  color: #040405;
  background-color: rgba(4, 4, 5, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #cacacd;
}
.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #9d9da3;
}

.table-hover .table-primary:hover {
  background-color: #bdbdc1;
}
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #bdbdc1;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: white;
}
.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: white;
}

.table-hover .table-secondary:hover {
  background-color: #f2f2f2;
}
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #f2f2f2;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: rgba(244, 253, 251, 0.776);
}
.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: rgba(228, 249, 244, 0.584);
}

.table-hover .table-success:hover {
  background-color: rgba(222, 249, 243, 0.776);
}
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: rgba(222, 249, 243, 0.776);
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #e2fffe;
}
.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: #c9fffe;
}

.table-hover .table-info:hover {
  background-color: #c9fffd;
}
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #c9fffd;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #ffedb8;
}
.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: #ffde7a;
}

.table-hover .table-warning:hover {
  background-color: #ffe79f;
}
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffe79f;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #ffcccc;
}
.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: #ffa0a0;
}

.table-hover .table-danger:hover {
  background-color: #ffb3b3;
}
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #ffb3b3;
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: #fbfbfc;
}
.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: #f8f8fa;
}

.table-hover .table-light:hover {
  background-color: #ececf1;
}
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf1;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #d9d9dc;
}
.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #b8b8bf;
}

.table-hover .table-dark:hover {
  background-color: #ccccd0;
}
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #ccccd0;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(4, 4, 5, 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: #ffffff;
  background-color: #343a40;
  border-color: #454d55;
}
.table .thead-light th {
  color: #363935;
  background-color: #f1f1f5;
  border-color: #f1f1f5;
}

.table-dark {
  color: #ffffff;
  background-color: #343a40;
}
.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #454d55;
}
.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: #ffffff;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 767.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: 1435.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-lg > .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.33em + 36px + 4px);
  padding: 18px 18px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.33;
  color: #040405;
  background-color: #f9f9fc;
  background-clip: padding-box;
  border: 2px solid #dddde5;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:focus {
  color: #040405;
  background-color: #f9f9fc;
  border-color: #42424e;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}
.form-control::placeholder {
  color: #b8b8c2;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: rgba(221, 221, 229, 0.5);
  opacity: 1;
}

select.form-control:focus::-ms-value {
  color: #040405;
  background-color: #f9f9fc;
}

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

.col-form-label {
  padding-top: calc(18px + 2px);
  padding-bottom: calc(18px + 2px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.33;
}

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

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

.form-control-plaintext {
  display: block;
  width: 100%;
  padding-top: 18px;
  padding-bottom: 18px;
  margin-bottom: 0;
  line-height: 1.33;
  color: #040405;
  background-color: transparent;
  border: solid transparent;
  border-width: 2px 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.2em + 0.5rem + 4px);
  padding: 0.25rem 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.2;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 4px);
  padding: 0.5rem 1rem;
  font-size: 1.125rem;
  line-height: 1.5;
}

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

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 30px;
}

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

.form-row {
  display: flex;
  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 {
  color: #6c757d;
}

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

.form-check-inline {
  display: inline-flex;
  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: 6px;
  font-size: 0.9375rem;
  color: rgba(0, 202, 153, 0.2);
}

.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.9375rem;
  line-height: 1.33;
  color: #ffffff;
  background-color: rgba(0, 202, 153, 0.9);
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: rgba(0, 202, 153, 0.2);
  padding-right: calc(1.33em + 36px);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='rgba(0, 202, 153, 0.2)' 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: center right calc(0.3325em + 9px);
  background-size: calc(0.665em + 18px) calc(0.665em + 18px);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: rgba(0, 202, 153, 0.2);
  box-shadow: 0 0 0 0.2rem rgba(0, 202, 153, 0.25);
}
.was-validated .form-control:valid ~ .valid-feedback,
.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,
.form-control.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.33em + 36px);
  background-position: top calc(0.3325em + 9px) right calc(0.3325em + 9px);
}

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: rgba(0, 202, 153, 0.2);
  padding-right: calc((1em + 2.2556390977rem) * 3 / 4 + 2.1278195489rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 1.1278195489rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='rgba(0, 202, 153, 0.2)' 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") #f9f9fc no-repeat center right 2.1278195489rem/calc(0.665em + 18px) calc(0.665em + 18px);
}
.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  border-color: rgba(0, 202, 153, 0.2);
  box-shadow: 0 0 0 0.2rem rgba(0, 202, 153, 0.25);
}
.was-validated .custom-select:valid ~ .valid-feedback,
.was-validated .custom-select:valid ~ .valid-tooltip, .custom-select.is-valid ~ .valid-feedback,
.custom-select.is-valid ~ .valid-tooltip {
  display: block;
}

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

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: rgba(0, 202, 153, 0.2);
}
.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: rgba(0, 202, 153, 0.2);
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: rgba(0, 202, 153, 0.2);
}
.was-validated .custom-control-input:valid ~ .valid-feedback,
.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,
.custom-control-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: rgba(0, 253, 192, 0.2);
  background-color: rgba(0, 253, 192, 0.2);
}
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 202, 153, 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: rgba(0, 202, 153, 0.2);
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: rgba(0, 202, 153, 0.2);
}
.was-validated .custom-file-input:valid ~ .valid-feedback,
.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,
.custom-file-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: rgba(0, 202, 153, 0.2);
  box-shadow: 0 0 0 0.2rem rgba(0, 202, 153, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 6px;
  font-size: 0.9375rem;
  color: #ff4949;
}

.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.9375rem;
  line-height: 1.33;
  color: #ffffff;
  background-color: rgba(255, 73, 73, 0.9);
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #ff4949;
  padding-right: calc(1.33em + 36px);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff4949' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23ff4949' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
  background-repeat: no-repeat;
  background-position: center right calc(0.3325em + 9px);
  background-size: calc(0.665em + 18px) calc(0.665em + 18px);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #ff4949;
  box-shadow: 0 0 0 0.2rem rgba(255, 73, 73, 0.25);
}
.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.33em + 36px);
  background-position: top calc(0.3325em + 9px) right calc(0.3325em + 9px);
}

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #ff4949;
  padding-right: calc((1em + 2.2556390977rem) * 3 / 4 + 2.1278195489rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 1.1278195489rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff4949' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23ff4949' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #f9f9fc no-repeat center right 2.1278195489rem/calc(0.665em + 18px) calc(0.665em + 18px);
}
.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  border-color: #ff4949;
  box-shadow: 0 0 0 0.2rem rgba(255, 73, 73, 0.25);
}
.was-validated .custom-select:invalid ~ .invalid-feedback,
.was-validated .custom-select:invalid ~ .invalid-tooltip, .custom-select.is-invalid ~ .invalid-feedback,
.custom-select.is-invalid ~ .invalid-tooltip {
  display: block;
}

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

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #ff4949;
}
.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: #ff4949;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #ff4949;
}
.was-validated .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,
.custom-control-input.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #ff7c7c;
  background-color: #ff7c7c;
}
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(255, 73, 73, 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: #ff4949;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #ff4949;
}
.was-validated .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,
.custom-file-input.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #ff4949;
  box-shadow: 0 0 0 0.2rem rgba(255, 73, 73, 0.25);
}

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.form-inline .form-check {
  width: 100%;
}
@media (min-width: 768px) {
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    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: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.btn, .btn-toggle {
  display: inline-block;
  font-weight: 500;
  color: #040405;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 2px solid transparent;
  padding: 0.7518796992rem 1.8796992481rem;
  font-size: 1rem;
  line-height: 1.33;
  border-radius: 0;
  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;
}
@media (prefers-reduced-motion: reduce) {
  .btn, .btn-toggle {
    transition: none;
  }
}
.btn:hover, .btn-toggle:hover {
  color: #040405;
  text-decoration: none;
}
.btn:focus, .btn-toggle:focus, .btn.focus, .focus.btn-toggle {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}
.btn.disabled, .disabled.btn-toggle, .btn:disabled, .btn-toggle:disabled {
  opacity: 1;
}
a.btn.disabled, a.disabled.btn-toggle,
fieldset:disabled a.btn,
fieldset:disabled a.btn-toggle {
  pointer-events: none;
}

.btn-primary {
  color: #ffffff;
  background-color: #42424e;
  border-color: #42424e;
}
.btn-primary:hover {
  color: #ffffff;
  background-color: #303039;
  border-color: #2b2b32;
}
.btn-primary:focus, .btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(94, 94, 105, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
  color: #ffffff;
  background-color: #42424e;
  border-color: #42424e;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #ffffff;
  background-color: #2b2b32;
  border-color: #25252b;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(94, 94, 105, 0.5);
}

.btn-secondary {
  color: #212529;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-secondary:hover {
  color: #212529;
  background-color: #ececec;
  border-color: #e6e6e6;
}
.btn-secondary:focus, .btn-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 222, 223, 0.5);
}
.btn-secondary.disabled, .btn-secondary:disabled {
  color: #212529;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #212529;
  background-color: #e6e6e6;
  border-color: #dfdfdf;
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 222, 223, 0.5);
}

.btn-success {
  color: #ffffff;
  background-color: rgba(0, 202, 153, 0.2);
  border-color: rgba(0, 202, 153, 0.2);
}
.btn-success:hover {
  color: #ffffff;
  background-color: rgba(0, 164, 124, 0.2);
  border-color: rgba(0, 151, 114, 0.2);
}
.btn-success:focus, .btn-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(156, 235, 216, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
  color: #ffffff;
  background-color: rgba(0, 202, 153, 0.2);
  border-color: rgba(0, 202, 153, 0.2);
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #ffffff;
  background-color: rgba(0, 151, 114, 0.2);
  border-color: rgba(0, 138, 105, 0.2);
}
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(156, 235, 216, 0.5);
}

.btn-info {
  color: #212529;
  background-color: #97fffd;
  border-color: #97fffd;
}
.btn-info:hover {
  color: #212529;
  background-color: #71fffc;
  border-color: #64fffc;
}
.btn-info:focus, .btn-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(133, 222, 221, 0.5);
}
.btn-info.disabled, .btn-info:disabled {
  color: #212529;
  background-color: #97fffd;
  border-color: #97fffd;
}
.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  color: #212529;
  background-color: #64fffc;
  border-color: #57fffc;
}
.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(133, 222, 221, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #FFBF00;
  border-color: #FFBF00;
}
.btn-warning:hover {
  color: #212529;
  background-color: #d9a200;
  border-color: #cc9900;
}
.btn-warning:focus, .btn-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 168, 6, 0.5);
}
.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #FFBF00;
  border-color: #FFBF00;
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #cc9900;
  border-color: #bf8f00;
}
.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 168, 6, 0.5);
}

.btn-danger {
  color: #ffffff;
  background-color: #ff4949;
  border-color: #ff4949;
}
.btn-danger:hover {
  color: #ffffff;
  background-color: #ff2323;
  border-color: #ff1616;
}
.btn-danger:focus, .btn-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 100, 100, 0.5);
}
.btn-danger.disabled, .btn-danger:disabled {
  color: #ffffff;
  background-color: #ff4949;
  border-color: #ff4949;
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #ffffff;
  background-color: #ff1616;
  border-color: #ff0909;
}
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 100, 100, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f1f1f5;
  border-color: #f1f1f5;
}
.btn-light:hover {
  color: #212529;
  background-color: #dbdbe5;
  border-color: #d3d3e0;
}
.btn-light:focus, .btn-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(210, 210, 214, 0.5);
}
.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f1f1f5;
  border-color: #f1f1f5;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #d3d3e0;
  border-color: #ccccda;
}
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(210, 210, 214, 0.5);
}

.btn-dark {
  color: #ffffff;
  background-color: #777783;
  border-color: #777783;
}
.btn-dark:hover {
  color: #ffffff;
  background-color: #65656f;
  border-color: #5f5f68;
}
.btn-dark:focus, .btn-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(139, 139, 150, 0.5);
}
.btn-dark.disabled, .btn-dark:disabled {
  color: #ffffff;
  background-color: #777783;
  border-color: #777783;
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  color: #ffffff;
  background-color: #5f5f68;
  border-color: #595962;
}
.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(139, 139, 150, 0.5);
}

.btn-outline-primary {
  color: #42424e;
  border-color: #42424e;
}
.btn-outline-primary:hover {
  color: #ffffff;
  background-color: #42424e;
  border-color: #42424e;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(66, 66, 78, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #42424e;
  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: #ffffff;
  background-color: #42424e;
  border-color: #42424e;
}
.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 {
  box-shadow: 0 0 0 0.2rem rgba(66, 66, 78, 0.5);
}

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

.btn-outline-success {
  color: rgba(0, 202, 153, 0.2);
  border-color: rgba(0, 202, 153, 0.2);
}
.btn-outline-success:hover {
  color: #ffffff;
  background-color: rgba(0, 202, 153, 0.2);
  border-color: rgba(0, 202, 153, 0.2);
}
.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 202, 153, 0.5);
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: rgba(0, 202, 153, 0.2);
  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: #ffffff;
  background-color: rgba(0, 202, 153, 0.2);
  border-color: rgba(0, 202, 153, 0.2);
}
.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 {
  box-shadow: 0 0 0 0.2rem rgba(0, 202, 153, 0.5);
}

.btn-outline-info {
  color: #97fffd;
  border-color: #97fffd;
}
.btn-outline-info:hover {
  color: #212529;
  background-color: #97fffd;
  border-color: #97fffd;
}
.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(151, 255, 253, 0.5);
}
.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #97fffd;
  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: #212529;
  background-color: #97fffd;
  border-color: #97fffd;
}
.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 {
  box-shadow: 0 0 0 0.2rem rgba(151, 255, 253, 0.5);
}

.btn-outline-warning {
  color: #FFBF00;
  border-color: #FFBF00;
}
.btn-outline-warning:hover {
  color: #212529;
  background-color: #FFBF00;
  border-color: #FFBF00;
}
.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 191, 0, 0.5);
}
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #FFBF00;
  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: #FFBF00;
  border-color: #FFBF00;
}
.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 {
  box-shadow: 0 0 0 0.2rem rgba(255, 191, 0, 0.5);
}

.btn-outline-danger {
  color: #ff4949;
  border-color: #ff4949;
}
.btn-outline-danger:hover {
  color: #ffffff;
  background-color: #ff4949;
  border-color: #ff4949;
}
.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 73, 73, 0.5);
}
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #ff4949;
  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: #ffffff;
  background-color: #ff4949;
  border-color: #ff4949;
}
.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 {
  box-shadow: 0 0 0 0.2rem rgba(255, 73, 73, 0.5);
}

.btn-outline-light {
  color: #f1f1f5;
  border-color: #f1f1f5;
}
.btn-outline-light:hover {
  color: #212529;
  background-color: #f1f1f5;
  border-color: #f1f1f5;
}
.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(241, 241, 245, 0.5);
}
.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f1f1f5;
  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: #f1f1f5;
  border-color: #f1f1f5;
}
.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 {
  box-shadow: 0 0 0 0.2rem rgba(241, 241, 245, 0.5);
}

.btn-outline-dark {
  color: #777783;
  border-color: #777783;
}
.btn-outline-dark:hover {
  color: #ffffff;
  background-color: #777783;
  border-color: #777783;
}
.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(119, 119, 131, 0.5);
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #777783;
  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: #ffffff;
  background-color: #777783;
  border-color: #777783;
}
.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 {
  box-shadow: 0 0 0 0.2rem rgba(119, 119, 131, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #42424e;
  text-decoration: underline;
}
.btn-link:hover {
  color: #42424e;
  text-decoration: underline;
}
.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
  box-shadow: none;
}
.btn-link:disabled, .btn-link.disabled {
  color: #040405;
  pointer-events: none;
}

.btn-lg, .btn-group-lg > .btn, .btn-group-lg > .btn-toggle {
  padding: 0.7518796992rem 3.007518797rem;
  font-size: 1.125rem;
  line-height: 1.5;
  border-radius: 0;
}

.btn-sm, .btn-group-sm > .btn, .btn-group-sm > .btn-toggle {
  padding: 0.25rem 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.2;
  border-radius: 0;
}

.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 12px;
}

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

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

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

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    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 0;
  margin: 0 0 0;
  font-size: 1rem;
  color: #040405;
  text-align: left;
  list-style: none;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 0 solid rgba(4, 4, 5, 0.15);
}

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

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

@media (min-width: 768px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1436px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0;
}
.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;
}
.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;
}
.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: 6px 0;
  overflow: hidden;
  border-top: 1px solid #f1f1f5;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 18px 24px;
  clear: both;
  font-weight: 400;
  color: #040405;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: #040405;
  text-decoration: none;
  background-color: #f1f1f5;
}
.dropdown-item.active, .dropdown-item:active {
  color: #42424e;
  text-decoration: none;
  background-color: #ffffff;
}
.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 24px;
  margin-bottom: 0;
  font-size: 0.9375rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 18px 24px;
  color: #040405;
}

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

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child), .btn-group > .btn-toggle:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -2px;
}
.dropdown-toggle-split {
  padding-right: 1.4097744361rem;
  padding-left: 1.4097744361rem;
}
.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, .btn-group-sm > .btn-toggle + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

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

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn, .btn-group-vertical > .btn-toggle,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child), .btn-group-vertical > .btn-toggle:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -2px;
}
.btn-group-toggle > .btn, .btn-group-toggle > .btn-toggle,
.btn-group-toggle > .btn-group > .btn,
.btn-group-toggle > .btn-group > .btn-toggle {
  margin-bottom: 0;
}
.btn-group-toggle > .btn input[type=radio], .btn-group-toggle > .btn-toggle input[type=radio],
.btn-group-toggle > .btn input[type=checkbox],
.btn-group-toggle > .btn-toggle 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: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-control-plaintext,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  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: -2px;
}
.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 > .custom-file {
  display: flex;
  align-items: center;
}
.input-group-prepend,
.input-group-append {
  display: flex;
}
.input-group-prepend .btn, .input-group-prepend .btn-toggle,
.input-group-append .btn,
.input-group-append .btn-toggle {
  position: relative;
  z-index: 2;
}
.input-group-prepend .btn:focus, .input-group-prepend .btn-toggle:focus,
.input-group-append .btn:focus,
.input-group-append .btn-toggle:focus {
  z-index: 3;
}
.input-group-prepend .btn + .btn, .input-group-prepend .btn-toggle + .btn, .input-group-prepend .btn + .btn-toggle, .input-group-prepend .btn-toggle + .btn-toggle,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .btn-toggle + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-prepend .input-group-text + .btn-toggle,
.input-group-append .btn + .btn,
.input-group-append .btn-toggle + .btn,
.input-group-append .btn + .btn-toggle,
.input-group-append .btn-toggle + .btn-toggle,
.input-group-append .btn + .input-group-text,
.input-group-append .btn-toggle + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn,
.input-group-append .input-group-text + .btn-toggle {
  margin-left: -2px;
}

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

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

.input-group-text {
  display: flex;
  align-items: center;
  padding: 18px 18px;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.33;
  color: #040405;
  text-align: center;
  white-space: nowrap;
  background-color: #f1f1f5;
  border: 2px solid #dddde5;
}
.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 + 4px);
}

.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-prepend > .btn-toggle,
.input-group-lg > .input-group-append > .btn,
.input-group-lg > .input-group-append > .btn-toggle {
  padding: 0.5rem 1rem;
  font-size: 1.125rem;
  line-height: 1.5;
}

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

.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-prepend > .btn-toggle,
.input-group-sm > .input-group-append > .btn,
.input-group-sm > .input-group-append > .btn-toggle {
  padding: 0.25rem 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.2;
}

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

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

.custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #42424e;
  border-color: #ffffff;
  background-color: #ffffff;
}
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #42424e;
}
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #42424e;
  background-color: white;
  border-color: white;
}
.custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}
.custom-control-input:disabled ~ .custom-control-label::before {
  background-color: rgba(221, 221, 229, 0.5);
}

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

.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' viewBox='0 0 8 8'%3e%3cpath fill='%2342424e' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #ffffff;
  background-color: #ffffff;
}
.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' viewBox='0 0 4 4'%3e%3cpath stroke='%2342424e' d='M0 2h4'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(66, 66, 78, 0.5);
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(66, 66, 78, 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' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2342424e'/%3e%3c/svg%3e");
}
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(66, 66, 78, 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.165rem + 4px);
  left: calc(-2.25rem + 4px);
  width: calc(1rem - 8px);
  height: calc(1rem - 8px);
  background-color: #777783;
  border-radius: 0.5rem;
  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;
}
@media (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label::after {
    transition: none;
  }
}
.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #f9f9fc;
  transform: translateX(0.75rem);
}
.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(66, 66, 78, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: auto;
  padding: 1.1278195489rem 2.1278195489rem 1.1278195489rem 1.1278195489rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.33;
  color: #040405;
  vertical-align: middle;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 1.1278195489rem center/8px 10px;
  background-color: #f9f9fc;
  border: 2px solid #dddde5;
  border-radius: 0;
  appearance: none;
}
.custom-select:focus {
  border-color: #42424e;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}
.custom-select:focus::-ms-value {
  color: #040405;
  background-color: #f9f9fc;
}
.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 1.1278195489rem;
  background-image: none;
}
.custom-select:disabled {
  color: #6c757d;
  background-color: #f1f1f5;
}
.custom-select::-ms-expand {
  display: none;
}

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

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

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.33em + 36px + 4px);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.33em + 36px + 4px);
  margin: 0;
  opacity: 0;
}
.custom-file-input:focus ~ .custom-file-label {
  border-color: #42424e;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}
.custom-file-input:disabled ~ .custom-file-label {
  background-color: rgba(221, 221, 229, 0.5);
}
.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.33em + 36px + 4px);
  padding: 18px 18px;
  font-weight: 400;
  line-height: 1.33;
  color: #040405;
  background-color: #f9f9fc;
  border: 2px solid #dddde5;
}
.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.33em + 36px);
  padding: 18px 18px;
  line-height: 1.33;
  color: #040405;
  content: "Browse";
  background-color: #f1f1f5;
  border-left: inherit;
}

.custom-range {
  width: 100%;
  height: calc(1rem + 0.4rem);
  padding: 0;
  background-color: transparent;
  appearance: none;
}
.custom-range:focus {
  outline: none;
}
.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #f1f1f5, 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}
.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #f1f1f5, 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}
.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #f1f1f5, 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}
.custom-range::-moz-focus-outer {
  border: 0;
}
.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #ffffff;
  border: 0;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    transition: none;
  }
}
.custom-range::-webkit-slider-thumb:active {
  background-color: white;
}
.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dddde5;
  border-color: transparent;
}
.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #ffffff;
  border: 0;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    transition: none;
  }
}
.custom-range::-moz-range-thumb:active {
  background-color: white;
}
.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dddde5;
  border-color: transparent;
}
.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #ffffff;
  border: 0;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    transition: none;
  }
}
.custom-range::-ms-thumb:active {
  background-color: white;
}
.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: #dddde5;
}
.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dddde5;
}
.custom-range:disabled::-webkit-slider-thumb {
  background-color: #777783;
}
.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}
.custom-range:disabled::-moz-range-thumb {
  background-color: #777783;
}
.custom-range:disabled::-moz-range-track {
  cursor: default;
}
.custom-range:disabled::-ms-thumb {
  background-color: #777783;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
  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-control-label::before,
.custom-file-label,
.custom-select {
    transition: none;
  }
}

.nav {
  display: flex;
  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: 2px solid #dddde5;
}
.nav-tabs .nav-item {
  margin-bottom: -2px;
}
.nav-tabs .nav-link {
  border: 2px solid transparent;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #f1f1f5 #f1f1f5 #dddde5;
}
.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: #363935;
  background-color: #f1f1f5;
  border-color: #dddde5 #dddde5 #f1f1f5;
}
.nav-tabs .dropdown-menu {
  margin-top: -2px;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #42424e;
  background-color: #ffffff;
}

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

.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

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

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}
.navbar > .container,
.navbar > .container-fluid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.416875rem;
  padding-bottom: 0.416875rem;
  margin-right: 48px;
  font-size: 1.125rem;
  line-height: inherit;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  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 {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.125rem;
  line-height: 1;
  background-color: transparent;
  border: 2px solid transparent;
}
.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: 767.98px) {
  .navbar-expand-sm > .container,
.navbar-expand-sm > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
  }
  .navbar-expand-sm > .container,
.navbar-expand-sm > .container-fluid {
    flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1435.98px) {
  .navbar-expand-lg > .container,
.navbar-expand-lg > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1436px) {
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
  }
  .navbar-expand-lg > .container,
.navbar-expand-lg > .container-fluid {
    flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid {
  padding-right: 0;
  padding-left: 0;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid {
  flex-wrap: nowrap;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}

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

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

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #ffffff;
  background-clip: border-box;
  border: 2px solid rgba(4, 4, 5, 0.125);
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card-body {
  flex: 1 1 auto;
  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(4, 4, 5, 0.03);
  border-bottom: 2px solid rgba(4, 4, 5, 0.125);
}
.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(4, 4, 5, 0.03);
  border-top: 2px solid rgba(4, 4, 5, 0.125);
}
.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 {
  width: 100%;
}

.card-img-top {
  width: 100%;
}

.card-img-bottom {
  width: 100%;
}

.card-deck {
  display: flex;
  flex-direction: column;
}
.card-deck .card {
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .card-deck {
    flex-flow: row wrap;
    margin-right: -18px;
    margin-left: -18px;
  }
  .card-deck .card {
    display: flex;
    flex: 1 0 0%;
    flex-direction: column;
    margin-right: 18px;
    margin-bottom: 0;
    margin-left: 18px;
  }
}

.card-group {
  display: flex;
  flex-direction: column;
}
.card-group > .card {
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .card-group {
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
}

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

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 18px 0;
  margin-bottom: 12px;
  list-style: none;
  background-color: transparent;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 6px;
}
.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 6px;
  color: #777783;
  content: ">";
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #777783;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  padding: 8px 12px;
  margin-left: -1px;
  line-height: 1;
  color: #777783;
  background-color: #ffffff;
  border: 1px solid transparent;
}
.page-link:hover {
  z-index: 2;
  color: #777783;
  text-decoration: none;
  background-color: #ffffff;
  border-color: transparent;
}
.page-link:focus {
  z-index: 2;
  outline: 0;
  box-shadow: none;
}

.page-item:first-child .page-link {
  margin-left: 0;
}
.page-item.active .page-link {
  z-index: 1;
  color: #42424e;
  background-color: #ffffff;
  border-color: #42424e;
}
.page-item.disabled .page-link {
  color: #f1f1f5;
  pointer-events: none;
  cursor: auto;
  background-color: #ffffff;
  border-color: transparent;
}

.pagination-lg .page-link {
  padding: 8px 12px;
  font-size: 1.125rem;
  line-height: 1.5;
}
.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.2;
}
.badge {
  display: inline-block;
  padding: 6px 12px;
  font-size: 70%;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  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;
}
@media (prefers-reduced-motion: reduce) {
  .badge {
    transition: none;
  }
}
a.badge:hover, a.badge:focus {
  text-decoration: none;
}

.badge:empty {
  display: none;
}

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

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
}

.badge-primary {
  color: #ffffff;
  background-color: #42424e;
}
a.badge-primary:hover, a.badge-primary:focus {
  color: #ffffff;
  background-color: #2b2b32;
}
a.badge-primary:focus, a.badge-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(66, 66, 78, 0.5);
}

.badge-secondary {
  color: #212529;
  background-color: #ffffff;
}
a.badge-secondary:hover, a.badge-secondary:focus {
  color: #212529;
  background-color: #e6e6e6;
}
a.badge-secondary:focus, a.badge-secondary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.badge-success {
  color: #ffffff;
  background-color: rgba(0, 202, 153, 0.2);
}
a.badge-success:hover, a.badge-success:focus {
  color: #ffffff;
  background-color: rgba(0, 151, 114, 0.2);
}
a.badge-success:focus, a.badge-success.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 202, 153, 0.5);
}

.badge-info {
  color: #212529;
  background-color: #97fffd;
}
a.badge-info:hover, a.badge-info:focus {
  color: #212529;
  background-color: #64fffc;
}
a.badge-info:focus, a.badge-info.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(151, 255, 253, 0.5);
}

.badge-warning {
  color: #212529;
  background-color: #FFBF00;
}
a.badge-warning:hover, a.badge-warning:focus {
  color: #212529;
  background-color: #cc9900;
}
a.badge-warning:focus, a.badge-warning.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 191, 0, 0.5);
}

.badge-danger {
  color: #ffffff;
  background-color: #ff4949;
}
a.badge-danger:hover, a.badge-danger:focus {
  color: #ffffff;
  background-color: #ff1616;
}
a.badge-danger:focus, a.badge-danger.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 73, 73, 0.5);
}

.badge-light {
  color: #212529;
  background-color: #f1f1f5;
}
a.badge-light:hover, a.badge-light:focus {
  color: #212529;
  background-color: #d3d3e0;
}
a.badge-light:focus, a.badge-light.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(241, 241, 245, 0.5);
}

.badge-dark {
  color: #ffffff;
  background-color: #777783;
}
a.badge-dark:hover, a.badge-dark:focus {
  color: #ffffff;
  background-color: #5f5f68;
}
a.badge-dark:focus, a.badge-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(119, 119, 131, 0.5);
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #f1f1f5;
}
@media (min-width: 768px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}

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

.alert {
  position: relative;
  padding: 0.7518796992rem 0.7518796992rem;
  margin-bottom: 0;
  border: 2px solid transparent;
}

.alert-heading {
  color: inherit;
}

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

.alert-dismissible {
  padding-right: 3.0037593985rem;
}
.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.7518796992rem 0.7518796992rem;
  color: inherit;
}

.alert-primary {
  color: #24242b;
  background-color: #42424e;
  border-color: #42424e;
}
.alert-primary hr {
  border-top-color: #363640;
}
.alert-primary .alert-link {
  color: #0d0d0f;
}

.alert-secondary {
  color: #878787;
  background-color: white;
  border-color: white;
}
.alert-secondary hr {
  border-top-color: #f2f2f2;
}
.alert-secondary .alert-link {
  color: #6e6e6e;
}

.alert-success {
  color: rgba(4, 25, 21, 0.584);
  background-color: rgba(0, 202, 153, 0.2);
  border-color: rgba(0, 202, 153, 0.2);
}
.alert-success hr {
  border-top-color: rgba(0, 177, 134, 0.2);
}
.alert-success .alert-link {
  color: rgba(0, 0, 0, 0.584);
}

.alert-info {
  color: #508786;
  background-color: #97fffd;
  border-color: #97fffd;
}
.alert-info hr {
  border-top-color: #7efffd;
}
.alert-info .alert-link {
  color: #3d6766;
}

.alert-warning {
  color: #876502;
  background-color: #ffbf00;
  border-color: #ffbf00;
}
.alert-warning hr {
  border-top-color: #e6ac00;
}
.alert-warning .alert-link {
  color: #553f01;
}

.alert-danger {
  color: #872828;
  background-color: #ff4949;
  border-color: #ff4949;
}
.alert-danger hr {
  border-top-color: #ff3030;
}
.alert-danger .alert-link {
  color: #601c1c;
}

.alert-light {
  color: #7f7f82;
  background-color: #f1f1f5;
  border-color: #f1f1f5;
}
.alert-light hr {
  border-top-color: #e2e2ea;
}
.alert-light .alert-link {
  color: #666668;
}

.alert-dark {
  color: #404047;
  background-color: #777783;
  border-color: #777783;
}
.alert-dark hr {
  border-top-color: #6b6b76;
}
.alert-dark .alert-link {
  color: #28282c;
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #f1f1f5;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  background-color: #42424e;
  transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    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 {
  animation: progress-bar-stripes 1s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    animation: none;
  }
}

.media {
  display: flex;
  align-items: flex-start;
}

.media-body {
  flex: 1;
}

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

.list-group-item-action {
  width: 100%;
  color: #363935;
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #363935;
  text-decoration: none;
  background-color: #f9f9fc;
}
.list-group-item-action:active {
  color: #040405;
  background-color: #f1f1f5;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -2px;
  background-color: #ffffff;
  border: 2px solid #f1f1f5;
}
.list-group-item:last-child {
  margin-bottom: 0;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #ffffff;
}
.list-group-item.active {
  z-index: 2;
  color: #42424e;
  background-color: #ffffff;
  border-color: #ffffff;
}

.list-group-horizontal {
  flex-direction: row;
}
.list-group-horizontal .list-group-item {
  margin-right: -2px;
  margin-bottom: 0;
}
.list-group-horizontal .list-group-item:last-child {
  margin-right: 0;
}

@media (min-width: 768px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm .list-group-item {
    margin-right: -2px;
    margin-bottom: 0;
  }
  .list-group-horizontal-sm .list-group-item:last-child {
    margin-right: 0;
  }
}
@media (min-width: 1436px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg .list-group-item {
    margin-right: -2px;
    margin-bottom: 0;
  }
  .list-group-horizontal-lg .list-group-item:last-child {
    margin-right: 0;
  }
}
.list-group-flush .list-group-item {
  border-right: 0;
  border-left: 0;
}
.list-group-flush .list-group-item:last-child {
  margin-bottom: -2px;
}
.list-group-flush:first-child .list-group-item:first-child {
  border-top: 0;
}
.list-group-flush:last-child .list-group-item:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.list-group-item-primary {
  color: #24242b;
  background-color: #cacacd;
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #24242b;
  background-color: #bdbdc1;
}
.list-group-item-primary.list-group-item-action.active {
  color: #ffffff;
  background-color: #24242b;
  border-color: #24242b;
}

.list-group-item-secondary {
  color: #878787;
  background-color: white;
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #878787;
  background-color: #f2f2f2;
}
.list-group-item-secondary.list-group-item-action.active {
  color: #ffffff;
  background-color: #878787;
  border-color: #878787;
}

.list-group-item-success {
  color: rgba(4, 25, 21, 0.584);
  background-color: rgba(244, 253, 251, 0.776);
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: rgba(4, 25, 21, 0.584);
  background-color: rgba(222, 249, 243, 0.776);
}
.list-group-item-success.list-group-item-action.active {
  color: #ffffff;
  background-color: rgba(4, 25, 21, 0.584);
  border-color: rgba(4, 25, 21, 0.584);
}

.list-group-item-info {
  color: #508786;
  background-color: #e2fffe;
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #508786;
  background-color: #c9fffd;
}
.list-group-item-info.list-group-item-action.active {
  color: #ffffff;
  background-color: #508786;
  border-color: #508786;
}

.list-group-item-warning {
  color: #876502;
  background-color: #ffedb8;
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #876502;
  background-color: #ffe79f;
}
.list-group-item-warning.list-group-item-action.active {
  color: #ffffff;
  background-color: #876502;
  border-color: #876502;
}

.list-group-item-danger {
  color: #872828;
  background-color: #ffcccc;
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #872828;
  background-color: #ffb3b3;
}
.list-group-item-danger.list-group-item-action.active {
  color: #ffffff;
  background-color: #872828;
  border-color: #872828;
}

.list-group-item-light {
  color: #7f7f82;
  background-color: #fbfbfc;
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #7f7f82;
  background-color: #ececf1;
}
.list-group-item-light.list-group-item-action.active {
  color: #ffffff;
  background-color: #7f7f82;
  border-color: #7f7f82;
}

.list-group-item-dark {
  color: #404047;
  background-color: #d9d9dc;
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #404047;
  background-color: #ccccd0;
}
.list-group-item-dark.list-group-item-action.active {
  color: #ffffff;
  background-color: #404047;
  border-color: #404047;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  color: #040405;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.5;
}
.close:hover {
  color: #040405;
  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;
  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);
  box-shadow: 0 0.25rem 0.75rem rgba(4, 4, 5, 0.1);
  backdrop-filter: blur(10px);
  opacity: 0;
}
.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: flex;
  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 {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}

.modal-dialog-scrollable {
  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 {
  flex-shrink: 0;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  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 {
  flex-direction: column;
  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: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 0px solid rgba(4, 4, 5, 0.2);
  outline: 0;
}

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

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 36px 36px 24px 36px;
  border-bottom: 0px solid #f1f1f5;
}
.modal-header .close {
  padding: 36px 36px 24px 36px;
  margin: -1rem -1rem -1rem auto;
}

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

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 0 36px 36px 36px;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 36px 36px 36px;
  border-top: 0px solid #f1f1f5;
}
.modal-footer > :not(:first-child) {
  margin-left: 0.25rem;
}
.modal-footer > :not(:last-child) {
  margin-right: 0.25rem;
}

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

@media (min-width: 768px) {
  .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: 1436px) {
  .modal-lg,
.modal-xl {
    max-width: 800px;
  }
}
.modal-xl {
  max-width: 1140px;
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: "Graphik", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.33;
  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.9375rem;
  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: #040405;
}

.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: #040405;
}

.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: #040405;
}

.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: #040405;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #ffffff;
  text-align: center;
  background-color: #040405;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: "Graphik", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.33;
  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.9375rem;
  word-wrap: break-word;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 2px solid rgba(4, 4, 5, 0.2);
}
.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 + 2px) * -1);
}
.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(4, 4, 5, 0.25);
}
.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^=top] > .arrow::after {
  bottom: 2px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #ffffff;
}

.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 + 2px) * -1);
  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(4, 4, 5, 0.25);
}
.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^=right] > .arrow::after {
  left: 2px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #ffffff;
}

.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 + 2px) * -1);
}
.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(4, 4, 5, 0.25);
}
.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^=bottom] > .arrow::after {
  top: 2px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #ffffff;
}
.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: 2px solid #f7f7f7;
}

.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 + 2px) * -1);
  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(4, 4, 5, 0.25);
}
.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^=left] > .arrow::after {
  right: 2px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #ffffff;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f7f7f7;
  border-bottom: 2px solid #ebebeb;
}
.popover-header:empty {
  display: none;
}

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

.carousel {
  position: relative;
}

.carousel.pointer-event {
  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%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

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

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

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

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  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;
  transition: 0s 0.6s opacity;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  color: #ffffff;
  text-align: center;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
.carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #ffffff;
  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='%23ffffff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");
}

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

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

@keyframes spinner-border {
  to {
    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%;
  animation: spinner-border 0.75s linear infinite;
}

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

@keyframes spinner-grow {
  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;
  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: #42424e !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #2b2b32 !important;
}

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

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #e6e6e6 !important;
}

.bg-success {
  background-color: rgba(0, 202, 153, 0.2) !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: rgba(0, 151, 114, 0.2) !important;
}

.bg-info {
  background-color: #97fffd !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #64fffc !important;
}

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

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #cc9900 !important;
}

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

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #ff1616 !important;
}

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

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #d3d3e0 !important;
}

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

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #5f5f68 !important;
}

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

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

.border {
  border: 2px solid #f1f1f5 !important;
}

.border-top {
  border-top: 2px solid #f1f1f5 !important;
}

.border-right {
  border-right: 2px solid #f1f1f5 !important;
}

.border-bottom {
  border-bottom: 2px solid #f1f1f5 !important;
}

.border-left {
  border-left: 2px solid #f1f1f5 !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: #42424e !important;
}

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

.border-success {
  border-color: rgba(0, 202, 153, 0.2) !important;
}

.border-info {
  border-color: #97fffd !important;
}

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

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

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

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

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

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

.rounded {
  border-radius: 2px !important;
}

.rounded-top {
  border-top-left-radius: 2px !important;
  border-top-right-radius: 2px !important;
}

.rounded-right {
  border-top-right-radius: 2px !important;
  border-bottom-right-radius: 2px !important;
}

.rounded-bottom {
  border-bottom-right-radius: 2px !important;
  border-bottom-left-radius: 2px !important;
}

.rounded-left {
  border-top-left-radius: 2px !important;
  border-bottom-left-radius: 2px !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: flex !important;
}

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

@media (min-width: 768px) {
  .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: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1436px) {
  .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: flex !important;
  }

  .d-lg-inline-flex {
    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: flex !important;
  }

  .d-print-inline-flex {
    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 {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

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

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

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

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

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

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

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

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

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

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

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

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

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

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

.align-items-stretch {
  align-items: stretch !important;
}

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

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

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

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

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

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

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

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

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 768px) {
  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

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

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

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

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

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

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

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1436px) {
  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

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

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

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

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

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

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

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}

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

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

@media (min-width: 768px) {
  .float-sm-left {
    float: left !important;
  }

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

  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 1436px) {
  .float-lg-left {
    float: left !important;
  }

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

  .float-lg-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;
  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 {
  box-shadow: 0 2px 4px 0 rgba(4, 4, 5, 0.1) !important;
}

.shadow {
  box-shadow: 0 4px 5px 0 rgba(4, 4, 5, 0.1) !important;
}

.shadow-lg {
  box-shadow: 0 10px 35px 0 rgba(0, 0, 0, 0.15) !important;
}

.shadow-none {
  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: 3px !important;
}

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

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

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

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

.m-2 {
  margin: 6px !important;
}

.mt-2,
.my-2 {
  margin-top: 6px !important;
}

.mr-2,
.mx-2 {
  margin-right: 6px !important;
}

.mb-2,
.my-2 {
  margin-bottom: 6px !important;
}

.ml-2,
.mx-2 {
  margin-left: 6px !important;
}

.m-3 {
  margin: 12px !important;
}

.mt-3,
.my-3 {
  margin-top: 12px !important;
}

.mr-3,
.mx-3 {
  margin-right: 12px !important;
}

.mb-3,
.my-3 {
  margin-bottom: 12px !important;
}

.ml-3,
.mx-3 {
  margin-left: 12px !important;
}

.m-4 {
  margin: 18px !important;
}

.mt-4,
.my-4 {
  margin-top: 18px !important;
}

.mr-4,
.mx-4 {
  margin-right: 18px !important;
}

.mb-4,
.my-4 {
  margin-bottom: 18px !important;
}

.ml-4,
.mx-4 {
  margin-left: 18px !important;
}

.m-5 {
  margin: 24px !important;
}

.mt-5,
.my-5 {
  margin-top: 24px !important;
}

.mr-5,
.mx-5 {
  margin-right: 24px !important;
}

.mb-5,
.my-5 {
  margin-bottom: 24px !important;
}

.ml-5,
.mx-5 {
  margin-left: 24px !important;
}

.m-6 {
  margin: 36px !important;
}

.mt-6,
.my-6 {
  margin-top: 36px !important;
}

.mr-6,
.mx-6 {
  margin-right: 36px !important;
}

.mb-6,
.my-6 {
  margin-bottom: 36px !important;
}

.ml-6,
.mx-6 {
  margin-left: 36px !important;
}

.m-7 {
  margin: 48px !important;
}

.mt-7,
.my-7 {
  margin-top: 48px !important;
}

.mr-7,
.mx-7 {
  margin-right: 48px !important;
}

.mb-7,
.my-7 {
  margin-bottom: 48px !important;
}

.ml-7,
.mx-7 {
  margin-left: 48px !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: 3px !important;
}

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

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

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

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

.p-2 {
  padding: 6px !important;
}

.pt-2,
.py-2 {
  padding-top: 6px !important;
}

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

.pb-2,
.py-2 {
  padding-bottom: 6px !important;
}

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

.p-3 {
  padding: 12px !important;
}

.pt-3,
.py-3 {
  padding-top: 12px !important;
}

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

.pb-3,
.py-3 {
  padding-bottom: 12px !important;
}

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

.p-4 {
  padding: 18px !important;
}

.pt-4,
.py-4 {
  padding-top: 18px !important;
}

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

.pb-4,
.py-4 {
  padding-bottom: 18px !important;
}

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

.p-5 {
  padding: 24px !important;
}

.pt-5,
.py-5 {
  padding-top: 24px !important;
}

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

.pb-5,
.py-5 {
  padding-bottom: 24px !important;
}

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

.p-6 {
  padding: 36px !important;
}

.pt-6,
.py-6 {
  padding-top: 36px !important;
}

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

.pb-6,
.py-6 {
  padding-bottom: 36px !important;
}

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

.p-7 {
  padding: 48px !important;
}

.pt-7,
.py-7 {
  padding-top: 48px !important;
}

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

.pb-7,
.py-7 {
  padding-bottom: 48px !important;
}

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

.m-n1 {
  margin: -3px !important;
}

.mt-n1,
.my-n1 {
  margin-top: -3px !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -3px !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -3px !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -3px !important;
}

.m-n2 {
  margin: -6px !important;
}

.mt-n2,
.my-n2 {
  margin-top: -6px !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -6px !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -6px !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -6px !important;
}

.m-n3 {
  margin: -12px !important;
}

.mt-n3,
.my-n3 {
  margin-top: -12px !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -12px !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -12px !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -12px !important;
}

.m-n4 {
  margin: -18px !important;
}

.mt-n4,
.my-n4 {
  margin-top: -18px !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -18px !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -18px !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -18px !important;
}

.m-n5 {
  margin: -24px !important;
}

.mt-n5,
.my-n5 {
  margin-top: -24px !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -24px !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -24px !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -24px !important;
}

.m-n6 {
  margin: -36px !important;
}

.mt-n6,
.my-n6 {
  margin-top: -36px !important;
}

.mr-n6,
.mx-n6 {
  margin-right: -36px !important;
}

.mb-n6,
.my-n6 {
  margin-bottom: -36px !important;
}

.ml-n6,
.mx-n6 {
  margin-left: -36px !important;
}

.m-n7 {
  margin: -48px !important;
}

.mt-n7,
.my-n7 {
  margin-top: -48px !important;
}

.mr-n7,
.mx-n7 {
  margin-right: -48px !important;
}

.mb-n7,
.my-n7 {
  margin-bottom: -48px !important;
}

.ml-n7,
.mx-n7 {
  margin-left: -48px !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: 768px) {
  .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: 3px !important;
  }

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

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

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

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

  .m-sm-2 {
    margin: 6px !important;
  }

  .mt-sm-2,
.my-sm-2 {
    margin-top: 6px !important;
  }

  .mr-sm-2,
.mx-sm-2 {
    margin-right: 6px !important;
  }

  .mb-sm-2,
.my-sm-2 {
    margin-bottom: 6px !important;
  }

  .ml-sm-2,
.mx-sm-2 {
    margin-left: 6px !important;
  }

  .m-sm-3 {
    margin: 12px !important;
  }

  .mt-sm-3,
.my-sm-3 {
    margin-top: 12px !important;
  }

  .mr-sm-3,
.mx-sm-3 {
    margin-right: 12px !important;
  }

  .mb-sm-3,
.my-sm-3 {
    margin-bottom: 12px !important;
  }

  .ml-sm-3,
.mx-sm-3 {
    margin-left: 12px !important;
  }

  .m-sm-4 {
    margin: 18px !important;
  }

  .mt-sm-4,
.my-sm-4 {
    margin-top: 18px !important;
  }

  .mr-sm-4,
.mx-sm-4 {
    margin-right: 18px !important;
  }

  .mb-sm-4,
.my-sm-4 {
    margin-bottom: 18px !important;
  }

  .ml-sm-4,
.mx-sm-4 {
    margin-left: 18px !important;
  }

  .m-sm-5 {
    margin: 24px !important;
  }

  .mt-sm-5,
.my-sm-5 {
    margin-top: 24px !important;
  }

  .mr-sm-5,
.mx-sm-5 {
    margin-right: 24px !important;
  }

  .mb-sm-5,
.my-sm-5 {
    margin-bottom: 24px !important;
  }

  .ml-sm-5,
.mx-sm-5 {
    margin-left: 24px !important;
  }

  .m-sm-6 {
    margin: 36px !important;
  }

  .mt-sm-6,
.my-sm-6 {
    margin-top: 36px !important;
  }

  .mr-sm-6,
.mx-sm-6 {
    margin-right: 36px !important;
  }

  .mb-sm-6,
.my-sm-6 {
    margin-bottom: 36px !important;
  }

  .ml-sm-6,
.mx-sm-6 {
    margin-left: 36px !important;
  }

  .m-sm-7 {
    margin: 48px !important;
  }

  .mt-sm-7,
.my-sm-7 {
    margin-top: 48px !important;
  }

  .mr-sm-7,
.mx-sm-7 {
    margin-right: 48px !important;
  }

  .mb-sm-7,
.my-sm-7 {
    margin-bottom: 48px !important;
  }

  .ml-sm-7,
.mx-sm-7 {
    margin-left: 48px !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: 3px !important;
  }

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

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

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

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

  .p-sm-2 {
    padding: 6px !important;
  }

  .pt-sm-2,
.py-sm-2 {
    padding-top: 6px !important;
  }

  .pr-sm-2,
.px-sm-2 {
    padding-right: 6px !important;
  }

  .pb-sm-2,
.py-sm-2 {
    padding-bottom: 6px !important;
  }

  .pl-sm-2,
.px-sm-2 {
    padding-left: 6px !important;
  }

  .p-sm-3 {
    padding: 12px !important;
  }

  .pt-sm-3,
.py-sm-3 {
    padding-top: 12px !important;
  }

  .pr-sm-3,
.px-sm-3 {
    padding-right: 12px !important;
  }

  .pb-sm-3,
.py-sm-3 {
    padding-bottom: 12px !important;
  }

  .pl-sm-3,
.px-sm-3 {
    padding-left: 12px !important;
  }

  .p-sm-4 {
    padding: 18px !important;
  }

  .pt-sm-4,
.py-sm-4 {
    padding-top: 18px !important;
  }

  .pr-sm-4,
.px-sm-4 {
    padding-right: 18px !important;
  }

  .pb-sm-4,
.py-sm-4 {
    padding-bottom: 18px !important;
  }

  .pl-sm-4,
.px-sm-4 {
    padding-left: 18px !important;
  }

  .p-sm-5 {
    padding: 24px !important;
  }

  .pt-sm-5,
.py-sm-5 {
    padding-top: 24px !important;
  }

  .pr-sm-5,
.px-sm-5 {
    padding-right: 24px !important;
  }

  .pb-sm-5,
.py-sm-5 {
    padding-bottom: 24px !important;
  }

  .pl-sm-5,
.px-sm-5 {
    padding-left: 24px !important;
  }

  .p-sm-6 {
    padding: 36px !important;
  }

  .pt-sm-6,
.py-sm-6 {
    padding-top: 36px !important;
  }

  .pr-sm-6,
.px-sm-6 {
    padding-right: 36px !important;
  }

  .pb-sm-6,
.py-sm-6 {
    padding-bottom: 36px !important;
  }

  .pl-sm-6,
.px-sm-6 {
    padding-left: 36px !important;
  }

  .p-sm-7 {
    padding: 48px !important;
  }

  .pt-sm-7,
.py-sm-7 {
    padding-top: 48px !important;
  }

  .pr-sm-7,
.px-sm-7 {
    padding-right: 48px !important;
  }

  .pb-sm-7,
.py-sm-7 {
    padding-bottom: 48px !important;
  }

  .pl-sm-7,
.px-sm-7 {
    padding-left: 48px !important;
  }

  .m-sm-n1 {
    margin: -3px !important;
  }

  .mt-sm-n1,
.my-sm-n1 {
    margin-top: -3px !important;
  }

  .mr-sm-n1,
.mx-sm-n1 {
    margin-right: -3px !important;
  }

  .mb-sm-n1,
.my-sm-n1 {
    margin-bottom: -3px !important;
  }

  .ml-sm-n1,
.mx-sm-n1 {
    margin-left: -3px !important;
  }

  .m-sm-n2 {
    margin: -6px !important;
  }

  .mt-sm-n2,
.my-sm-n2 {
    margin-top: -6px !important;
  }

  .mr-sm-n2,
.mx-sm-n2 {
    margin-right: -6px !important;
  }

  .mb-sm-n2,
.my-sm-n2 {
    margin-bottom: -6px !important;
  }

  .ml-sm-n2,
.mx-sm-n2 {
    margin-left: -6px !important;
  }

  .m-sm-n3 {
    margin: -12px !important;
  }

  .mt-sm-n3,
.my-sm-n3 {
    margin-top: -12px !important;
  }

  .mr-sm-n3,
.mx-sm-n3 {
    margin-right: -12px !important;
  }

  .mb-sm-n3,
.my-sm-n3 {
    margin-bottom: -12px !important;
  }

  .ml-sm-n3,
.mx-sm-n3 {
    margin-left: -12px !important;
  }

  .m-sm-n4 {
    margin: -18px !important;
  }

  .mt-sm-n4,
.my-sm-n4 {
    margin-top: -18px !important;
  }

  .mr-sm-n4,
.mx-sm-n4 {
    margin-right: -18px !important;
  }

  .mb-sm-n4,
.my-sm-n4 {
    margin-bottom: -18px !important;
  }

  .ml-sm-n4,
.mx-sm-n4 {
    margin-left: -18px !important;
  }

  .m-sm-n5 {
    margin: -24px !important;
  }

  .mt-sm-n5,
.my-sm-n5 {
    margin-top: -24px !important;
  }

  .mr-sm-n5,
.mx-sm-n5 {
    margin-right: -24px !important;
  }

  .mb-sm-n5,
.my-sm-n5 {
    margin-bottom: -24px !important;
  }

  .ml-sm-n5,
.mx-sm-n5 {
    margin-left: -24px !important;
  }

  .m-sm-n6 {
    margin: -36px !important;
  }

  .mt-sm-n6,
.my-sm-n6 {
    margin-top: -36px !important;
  }

  .mr-sm-n6,
.mx-sm-n6 {
    margin-right: -36px !important;
  }

  .mb-sm-n6,
.my-sm-n6 {
    margin-bottom: -36px !important;
  }

  .ml-sm-n6,
.mx-sm-n6 {
    margin-left: -36px !important;
  }

  .m-sm-n7 {
    margin: -48px !important;
  }

  .mt-sm-n7,
.my-sm-n7 {
    margin-top: -48px !important;
  }

  .mr-sm-n7,
.mx-sm-n7 {
    margin-right: -48px !important;
  }

  .mb-sm-n7,
.my-sm-n7 {
    margin-bottom: -48px !important;
  }

  .ml-sm-n7,
.mx-sm-n7 {
    margin-left: -48px !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: 1436px) {
  .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: 3px !important;
  }

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

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

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

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

  .m-lg-2 {
    margin: 6px !important;
  }

  .mt-lg-2,
.my-lg-2 {
    margin-top: 6px !important;
  }

  .mr-lg-2,
.mx-lg-2 {
    margin-right: 6px !important;
  }

  .mb-lg-2,
.my-lg-2 {
    margin-bottom: 6px !important;
  }

  .ml-lg-2,
.mx-lg-2 {
    margin-left: 6px !important;
  }

  .m-lg-3 {
    margin: 12px !important;
  }

  .mt-lg-3,
.my-lg-3 {
    margin-top: 12px !important;
  }

  .mr-lg-3,
.mx-lg-3 {
    margin-right: 12px !important;
  }

  .mb-lg-3,
.my-lg-3 {
    margin-bottom: 12px !important;
  }

  .ml-lg-3,
.mx-lg-3 {
    margin-left: 12px !important;
  }

  .m-lg-4 {
    margin: 18px !important;
  }

  .mt-lg-4,
.my-lg-4 {
    margin-top: 18px !important;
  }

  .mr-lg-4,
.mx-lg-4 {
    margin-right: 18px !important;
  }

  .mb-lg-4,
.my-lg-4 {
    margin-bottom: 18px !important;
  }

  .ml-lg-4,
.mx-lg-4 {
    margin-left: 18px !important;
  }

  .m-lg-5 {
    margin: 24px !important;
  }

  .mt-lg-5,
.my-lg-5 {
    margin-top: 24px !important;
  }

  .mr-lg-5,
.mx-lg-5 {
    margin-right: 24px !important;
  }

  .mb-lg-5,
.my-lg-5 {
    margin-bottom: 24px !important;
  }

  .ml-lg-5,
.mx-lg-5 {
    margin-left: 24px !important;
  }

  .m-lg-6 {
    margin: 36px !important;
  }

  .mt-lg-6,
.my-lg-6 {
    margin-top: 36px !important;
  }

  .mr-lg-6,
.mx-lg-6 {
    margin-right: 36px !important;
  }

  .mb-lg-6,
.my-lg-6 {
    margin-bottom: 36px !important;
  }

  .ml-lg-6,
.mx-lg-6 {
    margin-left: 36px !important;
  }

  .m-lg-7 {
    margin: 48px !important;
  }

  .mt-lg-7,
.my-lg-7 {
    margin-top: 48px !important;
  }

  .mr-lg-7,
.mx-lg-7 {
    margin-right: 48px !important;
  }

  .mb-lg-7,
.my-lg-7 {
    margin-bottom: 48px !important;
  }

  .ml-lg-7,
.mx-lg-7 {
    margin-left: 48px !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: 3px !important;
  }

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

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

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

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

  .p-lg-2 {
    padding: 6px !important;
  }

  .pt-lg-2,
.py-lg-2 {
    padding-top: 6px !important;
  }

  .pr-lg-2,
.px-lg-2 {
    padding-right: 6px !important;
  }

  .pb-lg-2,
.py-lg-2 {
    padding-bottom: 6px !important;
  }

  .pl-lg-2,
.px-lg-2 {
    padding-left: 6px !important;
  }

  .p-lg-3 {
    padding: 12px !important;
  }

  .pt-lg-3,
.py-lg-3 {
    padding-top: 12px !important;
  }

  .pr-lg-3,
.px-lg-3 {
    padding-right: 12px !important;
  }

  .pb-lg-3,
.py-lg-3 {
    padding-bottom: 12px !important;
  }

  .pl-lg-3,
.px-lg-3 {
    padding-left: 12px !important;
  }

  .p-lg-4 {
    padding: 18px !important;
  }

  .pt-lg-4,
.py-lg-4 {
    padding-top: 18px !important;
  }

  .pr-lg-4,
.px-lg-4 {
    padding-right: 18px !important;
  }

  .pb-lg-4,
.py-lg-4 {
    padding-bottom: 18px !important;
  }

  .pl-lg-4,
.px-lg-4 {
    padding-left: 18px !important;
  }

  .p-lg-5 {
    padding: 24px !important;
  }

  .pt-lg-5,
.py-lg-5 {
    padding-top: 24px !important;
  }

  .pr-lg-5,
.px-lg-5 {
    padding-right: 24px !important;
  }

  .pb-lg-5,
.py-lg-5 {
    padding-bottom: 24px !important;
  }

  .pl-lg-5,
.px-lg-5 {
    padding-left: 24px !important;
  }

  .p-lg-6 {
    padding: 36px !important;
  }

  .pt-lg-6,
.py-lg-6 {
    padding-top: 36px !important;
  }

  .pr-lg-6,
.px-lg-6 {
    padding-right: 36px !important;
  }

  .pb-lg-6,
.py-lg-6 {
    padding-bottom: 36px !important;
  }

  .pl-lg-6,
.px-lg-6 {
    padding-left: 36px !important;
  }

  .p-lg-7 {
    padding: 48px !important;
  }

  .pt-lg-7,
.py-lg-7 {
    padding-top: 48px !important;
  }

  .pr-lg-7,
.px-lg-7 {
    padding-right: 48px !important;
  }

  .pb-lg-7,
.py-lg-7 {
    padding-bottom: 48px !important;
  }

  .pl-lg-7,
.px-lg-7 {
    padding-left: 48px !important;
  }

  .m-lg-n1 {
    margin: -3px !important;
  }

  .mt-lg-n1,
.my-lg-n1 {
    margin-top: -3px !important;
  }

  .mr-lg-n1,
.mx-lg-n1 {
    margin-right: -3px !important;
  }

  .mb-lg-n1,
.my-lg-n1 {
    margin-bottom: -3px !important;
  }

  .ml-lg-n1,
.mx-lg-n1 {
    margin-left: -3px !important;
  }

  .m-lg-n2 {
    margin: -6px !important;
  }

  .mt-lg-n2,
.my-lg-n2 {
    margin-top: -6px !important;
  }

  .mr-lg-n2,
.mx-lg-n2 {
    margin-right: -6px !important;
  }

  .mb-lg-n2,
.my-lg-n2 {
    margin-bottom: -6px !important;
  }

  .ml-lg-n2,
.mx-lg-n2 {
    margin-left: -6px !important;
  }

  .m-lg-n3 {
    margin: -12px !important;
  }

  .mt-lg-n3,
.my-lg-n3 {
    margin-top: -12px !important;
  }

  .mr-lg-n3,
.mx-lg-n3 {
    margin-right: -12px !important;
  }

  .mb-lg-n3,
.my-lg-n3 {
    margin-bottom: -12px !important;
  }

  .ml-lg-n3,
.mx-lg-n3 {
    margin-left: -12px !important;
  }

  .m-lg-n4 {
    margin: -18px !important;
  }

  .mt-lg-n4,
.my-lg-n4 {
    margin-top: -18px !important;
  }

  .mr-lg-n4,
.mx-lg-n4 {
    margin-right: -18px !important;
  }

  .mb-lg-n4,
.my-lg-n4 {
    margin-bottom: -18px !important;
  }

  .ml-lg-n4,
.mx-lg-n4 {
    margin-left: -18px !important;
  }

  .m-lg-n5 {
    margin: -24px !important;
  }

  .mt-lg-n5,
.my-lg-n5 {
    margin-top: -24px !important;
  }

  .mr-lg-n5,
.mx-lg-n5 {
    margin-right: -24px !important;
  }

  .mb-lg-n5,
.my-lg-n5 {
    margin-bottom: -24px !important;
  }

  .ml-lg-n5,
.mx-lg-n5 {
    margin-left: -24px !important;
  }

  .m-lg-n6 {
    margin: -36px !important;
  }

  .mt-lg-n6,
.my-lg-n6 {
    margin-top: -36px !important;
  }

  .mr-lg-n6,
.mx-lg-n6 {
    margin-right: -36px !important;
  }

  .mb-lg-n6,
.my-lg-n6 {
    margin-bottom: -36px !important;
  }

  .ml-lg-n6,
.mx-lg-n6 {
    margin-left: -36px !important;
  }

  .m-lg-n7 {
    margin: -48px !important;
  }

  .mt-lg-n7,
.my-lg-n7 {
    margin-top: -48px !important;
  }

  .mr-lg-n7,
.mx-lg-n7 {
    margin-right: -48px !important;
  }

  .mb-lg-n7,
.my-lg-n7 {
    margin-bottom: -48px !important;
  }

  .ml-lg-n7,
.mx-lg-n7 {
    margin-left: -48px !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;
  }
}
.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: 768px) {
  .text-sm-left {
    text-align: left !important;
  }

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

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 1436px) {
  .text-lg-left {
    text-align: left !important;
  }

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

  .text-lg-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: 500 !important;
}

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

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

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

.text-primary {
  color: #42424e !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #1f1f25 !important;
}

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

a.text-secondary:hover, a.text-secondary:focus {
  color: #d9d9d9 !important;
}

.text-success {
  color: rgba(0, 202, 153, 0.2) !important;
}

a.text-success:hover, a.text-success:focus {
  color: rgba(0, 126, 95, 0.2) !important;
}

.text-info {
  color: #97fffd !important;
}

a.text-info:hover, a.text-info:focus {
  color: #4bfffc !important;
}

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

a.text-warning:hover, a.text-warning:focus {
  color: #b38600 !important;
}

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

a.text-danger:hover, a.text-danger:focus {
  color: #fc0000 !important;
}

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

a.text-light:hover, a.text-light:focus {
  color: #c4c4d5 !important;
}

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

a.text-dark:hover, a.text-dark:focus {
  color: #53535b !important;
}

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

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

.text-black-50 {
  color: rgba(4, 4, 5, 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;
    box-shadow: none !important;
  }

  a:not(.btn):not(.btn-toggle) {
    text-decoration: underline;
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
blockquote {
    border: 2px solid #777783;
    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: 1436px !important;
  }

  .container {
    min-width: 1436px !important;
  }

  .navbar {
    display: none;
  }

  .badge {
    border: 2px solid #040405;
  }

  .table {
    border-collapse: collapse !important;
  }
  .table td,
.table th {
    background-color: #ffffff !important;
  }

  .table-bordered th,
.table-bordered td {
    border: 1px solid #dddde5 !important;
  }

  .table-dark {
    color: inherit;
  }
  .table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
    border-color: #f1f1f5;
  }

  .table .thead-dark th {
    color: inherit;
    border-color: #f1f1f5;
  }
}
/**
  * Selector overrides
  * (these need to come after bootstrap)
  */
.container--narrow {
  max-width: 1074px;
  width: 100%;
}

.navbar {
  padding: 6px 18px;
  background-color: #363935;
}
@media (min-width: 1436px) {
  .navbar {
    padding-left: 48px;
    padding-right: 48px;
  }
}
.navbar-nav {
  width: 100%;
}
@media (min-width: 768px) {
  .navbar .dropdown.nav-item {
    margin-left: auto;
  }
}

.navbar-dark .navbar-nav .nav-link {
  text-decoration: none;
}
@media (min-width: 768px) {
  .navbar-dark .navbar-nav .nav-link {
    margin: 0 12px;
  }
}
.navbar-dark .navbar-nav .nav-link.active {
  font-weight: 500;
}

.breadcrumb-item {
  font-size: 0.75rem;
}
.breadcrumb-item a {
  text-decoration: none;
}
.breadcrumb-item a:hover {
  text-decoration: underline;
}

.page-link {
  margin: 0 6px;
  text-decoration: none;
  border-radius: 2px;
  font-size: 0.9375rem;
  font-weight: 500;
}
.page-link:hover {
  color: #040405;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  box-shadow: 0 2px 4px 0 rgba(4, 4, 5, 0.1);
}
.page-item:first-child .page-link:hover,
.page-item:last-child .page-link:hover {
  box-shadow: 0 2px 4px 0 rgba(4, 4, 5, 0.3);
}

.page-item.disabled {
  color: #f1f1f5;
}

.dropdown-menu {
  box-shadow: 0 10px 35px 0 rgba(0, 0, 0, 0.15);
}
.dropdown-menu a {
  color: #040405;
  text-decoration: none;
}

.dropdown-toggle {
  padding: 0;
}
.dropdown-toggle::after {
  content: "●●●";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border: none;
  font-size: 10px;
  line-height: 0.7;
  vertical-align: 0;
  white-space: normal;
  overflow-wrap: break-word;
}

.btn, .btn-toggle {
  text-decoration: none;
  border-radius: 2px;
}
.btn-toggle:hover {
  background-color: #42424e;
}
.btn-toggle:disabled {
  background-color: #f1f1f5;
  border: solid 2px #42424e !important;
  color: black;
  pointer-events: none;
}

.btn-primary {
  background-color: #42424e;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
}
.btn-primary:hover {
  background-color: #040405;
}
.btn-primary:disabled {
  background: #dddde5;
  border-color: #dddde5;
  color: white;
}

.btn-outline-secondary, .btn-toggle {
  background: #ffffff;
  border: solid 2px #dddde5;
  color: #040405;
  font-size: 13px;
}
.btn-outline-secondary:hover, .btn-toggle:hover {
  background-color: #42424e;
  color: #ffffff;
}
.btn-outline-secondary:disabled, .btn-toggle:disabled {
  border: solid 2px #dddde5;
  background-color: #ffffff;
  color: #777783;
}

.btn-lg, .btn-group-lg > .btn, .btn-group-lg > .btn-toggle {
  font-size: 1rem;
}

.btn.dropdown-toggle, .dropdown-toggle.btn-toggle {
  padding: 0 12px;
}
.btn.dropdown-toggle:after, .dropdown-toggle.btn-toggle:after {
  margin-top: 6px;
}

.btn + .btn, .btn-toggle + .btn, .btn + .btn-toggle, .btn-toggle + .btn-toggle, .btn + a, .btn-toggle + a {
  margin-left: 6px;
}

.btn-group + .btn-group {
  margin-left: 6px;
}

.btn-lg + .btn-lg, .btn-group-lg > .btn + .btn-lg, .btn-group-lg > .btn-toggle + .btn-lg, .btn-group-lg > .btn-lg + .btn, .btn-group-lg > .btn + .btn, .btn-group-lg > .btn-toggle + .btn, .btn-group-lg > .btn-lg + .btn-toggle, .btn-group-lg > .btn + .btn-toggle, .btn-group-lg > .btn-toggle + .btn-toggle {
  margin-left: 12px;
}

.btn-block + .btn-block {
  margin-left: 0;
}

.badge {
  background: #f1f1f5;
  text-transform: uppercase;
  border-radius: 2px;
}

.badge-primary {
  color: #42424e;
}

.badge-secondary {
  color: #7b74ff;
}

.badge-success {
  color: rgba(0, 202, 153, 0.2);
}

.badge-danger {
  color: #ff4949;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #040405;
  flex-grow: 1;
}

.popover {
  border: 2px #ffffff solid;
  border-radius: 2px;
  box-shadow: 0 10px 35px 0 rgba(0, 0, 0, 0.15);
}
.popover .popover-body {
  background: #ffffff;
  color: #040405;
  padding: 12px;
}
.popover .popover-body > p {
  margin-bottom: 8px;
}

.bs-popover-top, .bs-popover-auto[x-placement^=top] {
  box-shadow: 0 2px 25px 0 rgba(4, 4, 5, 0.07);
}
.bs-popover-top .arrow, .bs-popover-auto[x-placement^=top] .arrow {
  left: 50%;
  margin-left: -8px;
}
.bs-popover-top .arrow:before, .bs-popover-auto[x-placement^=top] .arrow:before {
  border-top-color: #ffffff;
}
.bs-popover-top .arrow:after, .bs-popover-auto[x-placement^=top] .arrow:after {
  border-top-color: #ffffff;
}

.bs-popover-right, .bs-popover-auto[x-placement^=right] {
  box-shadow: 0 -2px 25px 0 rgba(4, 4, 5, 0.07);
}
.bs-popover-right .arrow, .bs-popover-auto[x-placement^=right] .arrow {
  bottom: 45%;
}
.bs-popover-right .arrow:before, .bs-popover-auto[x-placement^=right] .arrow:before {
  border-right-color: #ffffff;
}
.bs-popover-right .arrow:after, .bs-popover-auto[x-placement^=right] .arrow:after {
  border-right-color: #ffffff;
}

.bs-popover-bottom, .bs-popover-auto[x-placement^=bottom] {
  box-shadow: 0 -2px 25px 0 rgba(4, 4, 5, 0.07);
}
.bs-popover-bottom .arrow, .bs-popover-auto[x-placement^=bottom] .arrow {
  left: 50%;
  margin-left: -4px;
}
.bs-popover-bottom .arrow:before, .bs-popover-auto[x-placement^=bottom] .arrow:before {
  border-bottom-color: #ffffff;
}
.bs-popover-bottom .arrow:after, .bs-popover-auto[x-placement^=bottom] .arrow:after {
  border-bottom-color: #ffffff;
}

.alert {
  text-align: center;
  color: #ffffff !important;
  font-size: 0.9375rem;
  font-weight: 500;
  position: fixed !important;
  bottom: 0 !important;
  width: 100vw !important;
}
.alert a {
  color: #ffffff;
}
.alert .close {
  top: -3px;
  right: 0;
  text-shadow: none;
  font-weight: 400;
}
.alert .close:hover, .alert .close:focus {
  outline: none;
  color: #ffffff !important;
}
.alert-light, .alert-info {
  color: #777783 !important;
}

.list-group {
  margin-bottom: 24px;
}

.list-group--sm .list-group-item {
  padding: 12px 12px 0 0;
}
.list-group--sm .list-group-item > p {
  margin-bottom: 12px;
}

.list-group-item {
  margin-bottom: 0;
  padding: 24px 36px 0 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.list-group--shrink-top .list-group-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.list-group--no-header .list-group-item:first-child {
  border-top: 0;
}

fieldset.form-group {
  border-bottom: 2px solid #dddde5;
  padding-bottom: 24px;
  margin-bottom: 36px;
}
fieldset.form-group:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

label {
  font-size: 0.9375rem;
  color: #777783;
}

.form-control {
  border-radius: 2px;
  height: 60px !important;
}
.form-control:disabled {
  color: #040405;
}

.custom-control-label::before {
  top: 0;
  background-color: #f9f9fc;
  border: 2px solid #dddde5;
}
.custom-control-label::after {
  top: 0;
}

.custom-control-input:disabled ~ .custom-control-label {
  color: #777783;
}
.custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #dddde5;
}

.custom-select {
  -webkit-appearance: none;
  -moz-appearance: none;
}

.input-group-prepend .btn-outline-secondary, .input-group-prepend .btn-toggle,
.input-group-append .btn-outline-secondary,
.input-group-append .btn-toggle {
  border-color: #dddde5;
}

h2,
h4,
b,
strong,
.h2,
.h4,
.font-weight-bold {
  font-weight: 500;
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-bottom: 24px;
}

h5,
h6,
.h5,
.h6 {
  color: #777783;
}

.h5-big-margin {
  color: #777783;
  font-size: 0.9375rem;
  margin-bottom: 18px;
}

body {
  -webkit-font-smoothing: antialiased;
}

/* Extra */
hr,
address {
  margin-bottom: 24px;
}

/* non bootstrap helper classes */
.font-size-xs {
  font-size: 0.75rem;
}

.font-size-sm {
  font-size: 0.9375rem;
}

.font-size-lg {
  font-size: 1.125rem;
}

.font-size-xl {
  font-size: 1.5rem;
}

.font-size-xxl {
  font-size: 1.75rem;
}

small {
  font-size: 0.75rem;
}

a {
  text-decoration: none;
}

.backgroundColor-grey {
  background-color: #f9f9fc;
}

.disabled-link {
  color: #dddde5 !important;
}

.border-bottom-show {
  border-bottom: 2px solid #dddde5;
}

.border-top {
  border-top: 2px solid #dddde5;
}

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

.modal-body {
  overflow: auto;
}

.roundel {
  display: inline-block;
  width: 48px;
  height: 48px;
  border-radius: 48px;
  border: 1px solid #b8b8c2;
}

.bg-color--white {
  background-color: #ffffff;
}

.bg-color--secondary {
  background-color: #ffffff;
}

.bg-color--charcoal {
  background-color: #42424e;
}

.bg-color--offWhite {
  background-color: #f9f9fc;
}

.bg-color--lightGrey {
  background-color: #f1f1f5;
}

.bg-color--midGrey {
  background-color: #dddde5;
}

.bg-color--specGrey {
  background-color: #b8b8c2;
}

.bg-color--darkGrey {
  background-color: #777783;
}

.bg-color--darkBlack {
  background-color: #040405;
}

.bg-color--lightGreen {
  background-color: rgba(0, 202, 153, 0.2);
}

.bg-color--failed {
  background-color: #ff4949;
}

.bg-color--lightRed {
  background-color: rgba(255, 137, 157, 0.2);
}

.bg-color--lightYellow {
  background-color: rgba(239, 255, 4, 0.2);
}

.bg-color--purple {
  background-color: rgba(128, 0, 255, 0.2);
}

.bg-color--lightPurple {
  background-color: #efeffc;
}

.bg-color--orange {
  background-color: rgba(245, 166, 35, 0.2);
}

.bg-color--orange-300 {
  background-color: rgba(255, 156, 8, 0.2);
}

.bg-color--teal {
  background-color: #5dfeca;
}

.bg-color--link {
  background-color: #2b47ff;
}

body {
  overflow-x: auto;
  overflow-y: scroll;
}

html {
  font-size: 16px;
}

html,
body,
#app {
  height: 100%;
  margin: 0;
  width: 100vw;
  min-width: 1200px;
}

.logo {
  width: 100px;
}

.layout {
  min-height: 100%;
}

.layout__head {
  background: #ffffff;
  color: #040405;
  box-shadow: 0px 15px 30px 0px rgba(4, 4, 5, 0.03);
}

.layout__body {
  position: relative;
  min-height: 6rem;
}

.layout__nav .nav-link {
  padding: 0.7518796992rem 0.7518796992rem 0.3759398496rem 0.7518796992rem;
}

.layout__wrapper {
  position: relative;
  min-height: 12rem;
}

.layout__topline {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 36px;
  margin-bottom: 2rem;
}

.header {
  min-height: 96px;
  display: flex;
}
.header__info {
  display: flex;
  flex: 1;
}
.header__title {
  margin-bottom: 0;
  margin-right: 12px;
  display: flex;
  flex-direction: column;
}
.header__strap {
  margin-bottom: 0;
  color: #777783;
  font-size: 0.9375rem;
}
.header__nav .nav-link {
  color: #777783;
  font-size: 1.5rem;
  text-decoration: none;
}
.header__nav .nav-link:hover {
  color: #9f9fa8;
}
.header__nav .nav-link.active {
  color: #040405;
  border-bottom: 2px solid #ffffff;
}

.nav__count {
  background-color: #f1f1f5;
  color: #040405;
  font-size: 0.75rem;
  padding: 3px;
  border-radius: 20px;
  vertical-align: middle;
  margin: 4px;
}

.panel {
  position: relative;
  min-height: 6rem;
  margin-bottom: 36px;
  padding: 36px 36px 24px 36px;
  background: #ffffff;
  box-shadow: 0 10px 35px 0 rgba(0, 0, 0, 0.15);
  border-radius: 2px;
}
.panel h2 .badge {
  margin-left: 6px;
  font-size: 0.75rem;
  vertical-align: middle;
}
.panel--no-padding {
  padding: 0 18px;
}
.panel--gray-background {
  background: #ffffff;
}

.fit-content {
  height: auto;
}

.panel__inner--remove-gutter-right {
  margin-right: -36px;
}

.panel__link {
  position: absolute;
  top: 36px;
  right: 36px;
}

.panel__inner--remove-gutter {
  padding: 0px;
}

.card {
  border: solid 1px rgba(4, 4, 5, 0.2) !important;
  padding: 16px;
  margin: 0 0 16px;
}
.card-title {
  font-size: 16px;
}
.card-subtitle {
  font-size: 12px;
}
.card-body {
  margin: 16px 0 0;
}

.sticky-sub-header {
  position: sticky;
  z-index: 5;
  top: -1px;
  background-color: #ffffff;
  height: 104px;
}

.sub-header-filter {
  padding: 24px 50px 24px 50px;
  border-bottom: 2px solid #dddde5;
}

.card {
  border: none;
}

.card-body {
  padding: 0px;
}

#addressSearch {
  border: none;
  background: url("/static/search-default.fcdce8be.png") no-repeat scroll 4% center;
  padding-left: 80px;
  border-bottom: 2px solid #dddde5;
  background-color: #f9f9fc;
}

.test-data-block-show {
  display: flex;
  position: relative;
  left: 250%;
  bottom: 50px;
}

.test-data-block {
  display: flex;
  position: relative;
  left: 450%;
  bottom: 50px;
}

.ReactCollapse--collapse {
  transition: all 0.5s ease 0s;
}

.icon-wrap {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

.order-control__filter, .order-control__timeZone, .order-control__search {
  display: flex;
  justify-content: flex-end;
}
.order-control__filter label, .order-control__timeZone label, .order-control__search label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
}
.order-control__filter input, .order-control__timeZone input, .order-control__search input {
  margin-right: 0px;
}
.order-control__filter--due-day, .order-control__timeZone--due-day, .order-control__search--due-day {
  justify-content: flex-start;
}
.order-control__filter--due-day__link, .order-control__timeZone--due-day__link, .order-control__search--due-day__link {
  cursor: pointer;
  color: rgba(4, 4, 5, 0.5);
  font-size: 24px;
  line-height: 1.5;
  margin-right: 50px;
}
.order-control__filter--due-day__link--active, .order-control__timeZone--due-day__link--active, .order-control__search--due-day__link--active {
  text-decoration: underline;
  color: #040405;
  margin-right: 50px;
}

.filter .select-search-box {
  width: 213px;
  height: 59px;
}

.order-control__buttons {
  display: flex;
  flex-wrap: wrap;
}

.test-data__label {
  font-weight: 600;
  margin-right: 12px;
  margin-bottom: 0;
}
.test-data__label--separator {
  color: #040405;
  margin-bottom: 0;
}
.test-data__btn {
  border: none;
  padding: 2px;
  text-decoration: none;
}
.test-data__btn--selected {
  text-decoration: underline;
  color: #3047ff;
}

.order-table .data-table__row {
  grid-template-columns: [status] 16% [req_by] 24% [contact] 25% [address] 35%;
}

.details-mini span {
  display: inline-block;
  min-width: 30%;
  margin-right: 5%;
}
.details-mini span svg {
  position: relative;
  top: 3px;
  margin-right: 0.5em;
}

.processing-status {
  padding: 10px 0px 10px 15px;
  font-size: 13px;
  height: 44px;
  line-height: 1.62;
}
.processing-status:last-child {
  border-bottom: none;
}

.task-status {
  display: block;
  width: initial;
  font-size: 13px;
  height: 44px;
  line-height: 1.62;
  border-right: 2px solid #f9f9fc;
  border-bottom: 2px solid #f9f9fc;
}
.task-status--processed {
  background: rgba(0, 202, 153, 0.2);
}
.task-status--awaiting {
  background: #f9f9fc;
}
.task-status--in_qc {
  background: rgba(255, 0, 75, 0.2);
}
.task-status--checking_assets {
  background: #dddde5;
}
.task-status--in_production {
  background: rgba(48, 71, 255, 0.2);
}
.task-status--in_correction {
  background: rgba(48, 71, 255, 0.2);
}
.task-status--completed {
  background: rgba(0, 202, 153, 0.2);
}
.task-status--paused {
  background: #ffffff;
}
.task-status--requested_qc {
  background-color: rgba(239, 255, 4, 0.2);
}
.task-status--corrections_needed {
  background-color: rgba(245, 166, 35, 0.2);
}
.task-status--edited {
  background: rgba(239, 255, 4, 0.2);
}
.task-status .select-search-box__search {
  padding: 10px 20px;
}

.assignee {
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  height: 44px;
  line-height: 1.62;
}
.assignee img {
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin-right: 9px;
}

.notes-qty, .task-icon {
  padding: 10px 0px 10px 10px;
  text-align: center;
  width: fit-content;
}

.address-details {
  margin-top: 10px;
  position: relative;
  width: auto;
  height: 100%;
}
.address-details__blockd__recapture-info {
  padding: 12px 10px 49px 19px;
  visibility: hidden;
  background-color: #ffffff;
  color: #040405;
  font-size: 13px;
  position: absolute;
  width: 230px;
  height: 115px;
  top: 0px;
  left: 55%;
}
.address-details__blockd__recapture-info__title {
  color: #777783;
  margin-bottom: 12px;
  margin-top: 10px;
}
.address-details__blockd__description {
  visibility: hidden;
  background-color: #ffffff;
  color: #040405;
  font-size: 13px;
  top: 140px;
  left: 35%;
  right: 0px;
  padding: 18px 16px 18px 18px;
}
.address-details__blockd__description__title {
  color: #777783;
  margin-bottom: 12px;
}
.address-details__blockd__description__organisationName {
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 15px;
}
.address-details img {
  position: absolute;
  max-height: 45px;
  max-width: 47px;
  right: 8px;
  bottom: 40px;
}
.address-details .address {
  margin-bottom: 13px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 3px;
}
.address-details .details-mini {
  bottom: 30px;
  width: 100%;
}
.address-details .details-mini span {
  display: block;
  font-size: 13px;
  line-height: 1.32;
  margin-bottom: 5px;
}

.address-details__blockd__image:hover + .address-details__blockd__recapture-info {
  visibility: visible;
}

.address-details__blockd__image:hover + .address-details__blockd__description {
  visibility: visible;
}

.task-icon {
  width: fit-content;
}

.notes-qty {
  width: fit-content;
  padding: 10px 0px 10px 20px !important;
}

.notes-border {
  border-right: none !important;
  height: 44px;
}

.data-table__row--orders {
  grid-template-columns: 10% 17% 4% 13% 13% 18% 18% 4% 0% !important;
  padding-left: 55px;
}

.data-table__row--jobTable {
  grid-template-columns: 100px auto 90px 9% 13% 9% 9% 9% 9% !important;
  padding-left: 30px;
}

.data-table__row--emptyJob {
  background: rgba(239, 239, 252, 0.5);
  grid-template-columns: 100px auto 90px 9% 13% 9% 9% 9% 9% !important;
  padding-left: 0px;
}

.data-table__head--sticky-header {
  padding-top: 20px;
  z-index: 3;
  background: #ffffff;
  grid-template-columns: 10% 17% 4% 13% 13% 18% 18% 4% 0% !important;
}

.data-table__cell--leftpadding {
  padding-left: 15px;
}

.sla {
  position: relative;
  height: 100%;
  width: 100%;
  cursor: default;
}
.sla svg {
  position: absolute;
  left: 0;
}
.sla__time-left {
  font-size: 13px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.62;
  margin-left: 26px;
  margin-top: 13px;
  color: #3047ff;
}
.sla__time-left--urgent {
  color: #ff4949;
}
.sla__time-left--mid {
  color: #ff8a00;
}
.sla__statuses {
  padding-left: 10px;
}
.sla__statuses__day {
  font-size: 13px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.62;
  letter-spacing: normal;
  color: #040405;
  display: block;
  padding-left: 15px;
}
.sla__statuses__detail-view-day {
  font-size: 13px;
  font-weight: normal;
  color: #040405;
  display: block;
  padding-left: 5px;
}
.sla__statuses__time {
  margin-top: 3px;
  font-size: 13px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.62;
  letter-spacing: normal;
  color: #777783;
  display: block;
  padding-left: 20px;
}
.sla__capture-published {
  margin-top: 0px;
  padding-top: 10px;
  padding-left: 5px;
}
.sla__capture-published__day {
  font-size: 13px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.62;
  letter-spacing: normal;
  color: #040405;
  display: block;
}
.sla__capture-published__time {
  margin-top: 3px;
  font-size: 13px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.62;
  letter-spacing: normal;
  color: #777783;
  display: block;
}
.sla__capture-complete {
  margin-top: 60px;
  padding-top: 20px;
  padding-left: 25px;
}
.sla__capture-complete__day {
  font-size: 13px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.62;
  letter-spacing: normal;
  color: #040405;
  display: block;
}
.sla__capture-complete__time {
  margin-top: 3px;
  font-size: 13px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.62;
  letter-spacing: normal;
  color: #777783;
  display: block;
}

.capture-type--inspection {
  width: 69px;
  height: 16px;
  color: #ffffff;
  text-align: center;
  background-color: #23c3e8;
  font-size: 12px;
  font-weight: 500;
  border-radius: 2px;
}

.epc-requested--epc {
  background-color: #00ca99;
  color: #ffffff;
  text-align: center;
  width: 32px;
  height: 16px;
  font-size: 12px;
  font-weight: 500;
  vertical-align: middle;
  border-radius: 2px;
}

.note-tags {
  margin-bottom: 20px;
}
.note-tags svg {
  margin-right: 10px;
}

.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
}

.loader {
  color: #00ca99;
  font-size: 11px;
  text-indent: -99999em;
  margin: 45px auto;
  position: relative;
  width: 100px;
  height: 100px;
  box-shadow: inset 0 0 0 10px;
  transform: translateZ(0);
  animation: fadeIn 1s;
}

.loader:before,
.loader:after {
  position: absolute;
  content: "";
}

.loader:before {
  width: 52px;
  height: 102px;
  background-color: #f1f1f5;
  border-radius: 102px 0 0 102px;
  top: -1px;
  left: -1px;
  transform-origin: 52px 51px;
  animation: loadSpin 2s infinite ease 1.5s;
}

.loader:after {
  width: 5.2em;
  height: 10.2em;
  background-color: #f1f1f5;
  border-radius: 0 102px 102px 0;
  top: -1px;
  left: 51px;
  transform-origin: 0 51px;
  animation: loadSpin 2s infinite ease;
}

@keyframes loadSpin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.data-table {
  display: block;
  margin-bottom: 36px;
  cursor: pointer;
}
.data-table--no-margin {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}
.data-table__head, .data-table__row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0px, 1fr));
  grid-template-rows: auto;
}
.data-table__head--with-background:nth-child(odd), .data-table__row--with-background:nth-child(odd) {
  background: rgba(239, 239, 252, 0.5);
}
.data-table__head:nth-child(even) .cell-bottom-border, .data-table__row:nth-child(even) .cell-bottom-border {
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}
.data-table__head:nth-child(even) .cell-bottom-border:last-child, .data-table__row:nth-child(even) .cell-bottom-border:last-child {
  border-bottom: none;
}
.data-table__head:nth-child(even) .horizontal-line, .data-table__row:nth-child(even) .horizontal-line {
  border-bottom: 2px solid #ffffff;
}
.data-table__head:nth-child(even) .horizontal-line:last-child, .data-table__row:nth-child(even) .horizontal-line:last-child {
  border-bottom: none;
}
.data-table__head:nth-child(even) .vertical-line, .data-table__row:nth-child(even) .vertical-line {
  border-right: 2px solid #ffffff;
}
.data-table__head:nth-child(odd) .cell-bottom-border, .data-table__row:nth-child(odd) .cell-bottom-border {
  border-right: 2px solid #f9f9fc;
  border-bottom: 2px solid #f9f9fc;
}
.data-table__head:nth-child(odd) .cell-bottom-border:last-child, .data-table__row:nth-child(odd) .cell-bottom-border:last-child {
  border-bottom: none;
}
.data-table__head:nth-child(odd) .horizontal-line, .data-table__row:nth-child(odd) .horizontal-line {
  border-bottom: 2px solid #f9f9fc;
}
.data-table__head:nth-child(odd) .horizontal-line:last-child, .data-table__row:nth-child(odd) .horizontal-line:last-child {
  border-bottom: none;
}
.data-table__head:nth-child(odd) .vertical-line, .data-table__row:nth-child(odd) .vertical-line {
  border-right: 2px solid #f9f9fc;
}
.data-table__head--with-border-top, .data-table__row--with-border-top {
  border-top: 2px solid #ffffff;
}
.data-table__head--with-border-bottom, .data-table__row--with-border-bottom {
  border-bottom: 1px solid #f1f1f5;
}
.data-table__head--with-border-left, .data-table__row--with-border-left {
  border-left: 2px solid #f1f1f5;
}
.data-table__head--with-border-right, .data-table__row--with-border-right {
  border-right: 2px solid #f1f1f5;
}
.data-table__cell {
  text-decoration: none;
  color: #040405;
  line-height: 1.5;
}
.data-table__cell:hover {
  text-decoration: none;
  color: #040405;
}
.data-table__cell:first-child {
  padding-left: 0;
  padding-right: 0px;
}
.data-table__cell:last-child {
  padding-left: 0;
  padding-right: 0px;
}
.data-table__cell--head {
  padding-bottom: 20px;
  color: #040405;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.2;
}
.data-table__cell--actions {
  visibility: hidden;
  display: flex;
  align-items: center;
  position: absolute;
  right: 0;
  height: 100%;
  border: none;
  padding: 0;
}
.data-table__cell--actions .dropdown-toggle {
  width: 48px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 0;
}
.data-table__cell--actions .dropdown-toggle::after {
  margin-left: -18px;
}
.data-table__cell--no-vertical-padding {
  padding-top: 0;
  padding-bottom: 0;
}
.data-table__cell--no-horizontal-padding {
  padding-left: 0;
  padding-right: 0;
}
.data-table__cell p,
.data-table__cell address {
  word-wrap: break-word;
  margin-bottom: 0;
}
.data-table__emphasis {
  color: #040405;
  font-weight: 500;
}
.data-table__row--disabled p {
  color: #b8b8c2 !important;
}
.data-table__row--hover:hover, .data-table__row--hover:focus {
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 35px 0 rgba(0, 0, 0, 0.15);
}
.data-table__row--hover:hover .data-table__cell--actions, .data-table__row--hover:focus .data-table__cell--actions {
  visibility: visible;
}
.data-table__text--secondary {
  color: #b8b8c2;
}
.data-table__empty-state {
  padding-left: 15px;
  display: flex;
  align-items: center;
  height: 44px;
  user-select: none;
  color: #777783;
  font-size: 13px;
}
.data-table__empty-state--dropdown::after {
  content: "";
  height: 16px;
  width: 16px;
  position: absolute;
  top: 50%;
  right: 14px;
  z-index: 1;
  transform: translateY(-50%);
  background: url("/static/arrow-dropdown.ed759dc9.svg");
  opacity: 0.3;
}
.data-table__empty-state span {
  margin-left: 6px;
}

.table_cell:hover {
  text-decoration: none;
  color: blue;
}

.pagination__description {
  padding-top: 12px;
  color: #b8b8c2;
  font-size: 0.75rem;
  text-align: center;
}

.actionBar {
  padding: 0 18px 12px;
}

.page404 img {
  display: block;
  margin: 3em auto;
}

.visually-hidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.login {
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
.login p {
  animation: 2s ease 0s normal forwards 1 textFadeIn;
}

@keyframes textFadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.software-btn {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  opacity: 0;
  background-color: #040405;
}
.software-btn svg {
  fill: #ffffff;
}
.software-btn:hover {
  opacity: 0.8;
}

.order-list__header {
  display: grid;
  grid-template-columns: minmax(175px, 225px) minmax(290px, 20%) repeat(3, 1fr);
  grid-column-gap: 40px;
  padding: 0px 20px 0px 40px;
}
.order-list__header-text {
  font-size: 16px;
  font-weight: 500;
  color: #777783;
}
.order-list__body {
  display: grid;
  grid-template-columns: minmax(175px, 225px) minmax(290px, 20%) repeat(3, 1fr);
  grid-column-gap: 40px;
  align-items: center;
  padding: 4px 20px 4px 40px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.order-list__body:nth-child(even) {
  background-color: #f9f9fc;
}
.order-list__body:hover {
  box-shadow: 0 0 15px 0 rgba(4, 4, 5, 0.2);
  background-color: #ffffff;
}
.order-list__body:hover .software-btn {
  opacity: 1;
}
.order-list__body-time {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.order-list__body-current-time {
  display: block;
  padding-bottom: 6px;
  font-size: 16px;
  font-weight: 500;
  color: #363935;
}
.order-list__body-started-time {
  font-size: 12px;
  font-weight: 500;
  color: #777783;
}
.order-list__body-image {
  width: 100px;
  height: 64px;
  border-radius: 4px;
  overflow: hidden;
}
.order-list__body-title {
  position: relative;
  padding-bottom: 6px;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.order-list__body-link {
  opacity: 1;
  font-size: 16px;
  font-weight: 500;
  color: #363935;
}
.order-list__body-link:hover {
  opacity: 0.8;
}
.order-list__body-icon {
  position: absolute;
  top: 0;
  left: -17px;
  width: 14px;
}
.order-list__body-icon svg {
  fill: #363935;
}
.order-list__body-street {
  font-size: 12px;
  font-weight: 500;
  color: #363935;
}
.order-list__body-street-light {
  color: #777783;
}

.list__icon {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  margin-right: 7px;
}
.list__icon svg {
  fill: #ffffff;
}
.list__label {
  display: inline-block;
  padding: 4px 10px 2px 7px;
  border-radius: 4px;
  margin-right: 17px;
  background-color: #dddde5;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
}
.list__label--COMPLETE {
  background-color: rgba(0, 202, 153, 0.2);
}
.list__label--IN_PROGRESS {
  background-color: #3047ff;
}
.list__label--SCHEDULED {
  background-color: #363935;
}
.list__label--CANCELLED {
  background-color: #ff4949;
}
.list__label--RECAPTURE_REQUIRED {
  background-color: rgba(255, 156, 8, 0.2);
}
.list__label--QUALITY_CONTROL {
  background-color: rgba(245, 166, 35, 0.2);
}
.list__label--QUALITY_CONTROL_COMPLETE {
  background-color: rgba(128, 0, 255, 0.2);
}
.list__label--UNASSIGNED {
  color: #777783;
}
.list__label--UNASSIGNED .label__icon svg {
  fill: #777783;
}

.order-progress {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.order-progress:before {
  content: "";
  position: absolute;
  top: -14px;
  left: -20px;
  height: calc(100% + 27px);
  border-left: 1px solid #dddde5;
}
.order-progress__assigned-time {
  display: block;
  padding-top: 7px;
  font-size: 12px;
  color: #777783;
}
.order-progress__assigned-text {
  font-weight: 500;
}
.order-progress__assigned-name {
  color: #363935;
}
.order-progress__img {
  border: solid 1px #777783;
  border-radius: 50%;
}

.order-summary .panel--no-padding .grey-column {
  background: #f9f9fc;
  height: auto;
}

.order-summary-header__title {
  font-size: 28px;
  line-height: 1.29;
  color: #777783;
  margin-right: 60px;
  position: relative;
}
.order-summary-header__title:hover {
  text-decoration: none;
}
.order-summary-header__title--active {
  color: #040405;
}
.order-summary-header__title--processed::before, .order-summary-header__title--awaiting::before, .order-summary-header__title--in_qc::before, .order-summary-header__title--checking_assets::before, .order-summary-header__title--in_production::before, .order-summary-header__title--in_correction::before, .order-summary-header__title--completed::before, .order-summary-header__title--paused::before, .order-summary-header__title--requested_qc::before, .order-summary-header__title--corrections_needed::before, .order-summary-header__title--edited::before {
  content: "";
  height: 10px;
  width: 10px;
  position: absolute;
  left: -20px;
  top: 13px;
  border-radius: 50%;
}
.order-summary-header__title--processed::before {
  background: rgba(0, 202, 153, 0.5);
  border: solid 2px rgba(0, 202, 153, 0.2);
}
.order-summary-header__title--awaiting::before {
  background-color: rgba(216, 216, 216, 0.5);
  border: solid 2px #d8d8d8;
}
.order-summary-header__title--in_qc::before {
  background: rgba(255, 0, 75, 0.5);
  border: 2px solid #ff004b;
}
.order-summary-header__title--checking_assets::before {
  background: #dddde5;
}
.order-summary-header__title--in_production::before {
  background: rgba(48, 71, 255, 0.5);
  border: 2px solid #3047ff;
}
.order-summary-header__title--in_correction::before {
  background: rgba(48, 71, 255, 0.5);
  border: 2px solid #3047ff;
}
.order-summary-header__title--completed::before {
  background: rgba(0, 202, 153, 0.5);
  border: 2px solid rgba(0, 202, 153, 0.2);
}
.order-summary-header__title--paused::before {
  background: #ffffff;
}
.order-summary-header__title--requested_qc::before {
  border: solid 2px #efff04;
  background-color: rgba(239, 255, 4, 0.5);
}
.order-summary-header__title--corrections_needed::before {
  background-color: rgba(245, 166, 35, 0.5);
  border: 2px solid rgba(245, 166, 35, 0.2);
}
.order-summary-header__title--edited::before {
  border: solid 2px #efff04;
  background-color: rgba(239, 255, 4, 0.5);
}

.order-status-badge {
  font-size: 12px;
  text-align: center;
  height: 16px;
  padding: 2px 10px 2px 10px;
}

.order-updated-time {
  font-size: 13px;
  color: #777783;
  margin-right: 16px;
}

.select-search-box, .select-search-box--border, .select-search-box--border-and-width, .select-search-box--border-with-img, .select-search-box--version2,
.select-search-box--new-version-status, .select-search-box--new-version-status--awaiting {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.select-search-box__search-container, .select-search-box--border__search-container, .select-search-box--border-and-width__search-container, .select-search-box--border-with-img__search-container, .select-search-box--version2__search-container,
.select-search-box--new-version-status__search-container, .select-search-box--new-version-status--awaiting__search-container {
  display: flex;
  height: 100%;
  position: relative;
  align-items: center;
}
.select-search-box__search-container svg, .select-search-box__search-container img, .select-search-box--border__search-container svg, .select-search-box--border__search-container img, .select-search-box--border-and-width__search-container svg, .select-search-box--border-and-width__search-container img, .select-search-box--border-with-img__search-container svg, .select-search-box--border-with-img__search-container img, .select-search-box--version2__search-container svg, .select-search-box--version2__search-container img,
.select-search-box--new-version-status__search-container svg,
.select-search-box--new-version-status__search-container img, .select-search-box--new-version-status--awaiting__search-container svg, .select-search-box--new-version-status--awaiting__search-container img {
  position: absolute;
  left: 21px;
  top: 50%;
  transform: translateY(-50%);
}
.select-search-box__select, .select-search-box--border__select, .select-search-box--border-and-width__select, .select-search-box--border-with-img__select, .select-search-box--version2__select,
.select-search-box--new-version-status__select, .select-search-box--new-version-status--awaiting__select {
  min-width: 100%;
  height: auto;
  overflow: auto;
  position: absolute;
  top: 100%;
  display: none;
  box-shadow: 0 10px 30px 0 rgba(4, 4, 5, 0.15);
  background: white;
  z-index: 3;
}
.select-search-box__select--display, .select-search-box--border__select--display, .select-search-box--border-and-width__select--display, .select-search-box--border-with-img__select--display, .select-search-box--version2__select--display,
.select-search-box--new-version-status__select--display, .select-search-box--new-version-status--awaiting__select--display {
  display: block;
  height: 224px;
}
.select-search-box__search, .select-search-box--border__search, .select-search-box--border-and-width__search, .select-search-box--border-with-img__search, .select-search-box--version2__search,
.select-search-box--new-version-status__search, .select-search-box--new-version-status--awaiting__search {
  display: inline-block;
  width: 100%;
  height: auto;
  padding: 0;
  font-size: 13px;
  font-weight: 400;
  color: #040405;
  background: transparent;
  vertical-align: middle;
  white-space: nowrap;
  border: none;
  outline: none;
  height: 100%;
  z-index: 2;
  cursor: pointer;
}
.select-search-box__search::-webkit-search-decoration, .select-search-box__search::-webkit-search-cancel-button, .select-search-box__search::-webkit-search-results-button, .select-search-box__search::-webkit-search-results-decoration, .select-search-box--border__search::-webkit-search-decoration, .select-search-box--border__search::-webkit-search-cancel-button, .select-search-box--border__search::-webkit-search-results-button, .select-search-box--border__search::-webkit-search-results-decoration, .select-search-box--border-and-width__search::-webkit-search-decoration, .select-search-box--border-and-width__search::-webkit-search-cancel-button, .select-search-box--border-and-width__search::-webkit-search-results-button, .select-search-box--border-and-width__search::-webkit-search-results-decoration, .select-search-box--border-with-img__search::-webkit-search-decoration, .select-search-box--border-with-img__search::-webkit-search-cancel-button, .select-search-box--border-with-img__search::-webkit-search-results-button, .select-search-box--border-with-img__search::-webkit-search-results-decoration, .select-search-box--version2__search::-webkit-search-decoration, .select-search-box--version2__search::-webkit-search-cancel-button, .select-search-box--version2__search::-webkit-search-results-button, .select-search-box--version2__search::-webkit-search-results-decoration,
.select-search-box--new-version-status__search::-webkit-search-decoration,
.select-search-box--new-version-status__search::-webkit-search-cancel-button,
.select-search-box--new-version-status__search::-webkit-search-results-button,
.select-search-box--new-version-status__search::-webkit-search-results-decoration, .select-search-box--new-version-status--awaiting__search::-webkit-search-decoration, .select-search-box--new-version-status--awaiting__search::-webkit-search-cancel-button, .select-search-box--new-version-status--awaiting__search::-webkit-search-results-button, .select-search-box--new-version-status--awaiting__search::-webkit-search-results-decoration {
  display: none;
}
.select-search-box__options, .select-search-box--border__options, .select-search-box--border-and-width__options, .select-search-box--border-with-img__options, .select-search-box--version2__options,
.select-search-box--new-version-status__options, .select-search-box--new-version-status--awaiting__options {
  display: none;
  padding-left: 0;
}
.select-search-box__option, .select-search-box--border__option, .select-search-box--border-and-width__option, .select-search-box--border-with-img__option, .select-search-box--version2__option,
.select-search-box--new-version-status__option, .select-search-box--new-version-status--awaiting__option {
  padding: 10px 21px;
  font-weight: 400;
  font-size: 13px;
  color: #040405;
  background: #ffffff;
  border-top: 1px solid #eee;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  user-select: none;
}
.select-search-box__option:first-child, .select-search-box--border__option:first-child, .select-search-box--border-and-width__option:first-child, .select-search-box--border-with-img__option:first-child, .select-search-box--version2__option:first-child,
.select-search-box--new-version-status__option:first-child, .select-search-box--new-version-status--awaiting__option:first-child {
  border-top: none;
}
.select-search-box__option--hover, .select-search-box__option:hover, .select-search-box--border__option--hover, .select-search-box--border__option:hover, .select-search-box--border-and-width__option--hover, .select-search-box--border-and-width__option:hover, .select-search-box--border-with-img__option--hover, .select-search-box--border-with-img__option:hover, .select-search-box--version2__option--hover, .select-search-box--version2__option:hover,
.select-search-box--new-version-status__option--hover,
.select-search-box--new-version-status__option:hover, .select-search-box--new-version-status--awaiting__option--hover, .select-search-box--new-version-status--awaiting__option:hover {
  background: #efeffc;
}
.select-search-box__option--selected, .select-search-box--border__option--selected, .select-search-box--border-and-width__option--selected, .select-search-box--border-with-img__option--selected, .select-search-box--version2__option--selected,
.select-search-box--new-version-status__option--selected, .select-search-box--new-version-status--awaiting__option--selected {
  color: #040405;
  font-weight: 500;
  background: #efeffc;
  border-top-color: #eee;
}
.select-search-box__option--selected:hover, .select-search-box__option--selected--hover, .select-search-box--border__option--selected:hover, .select-search-box--border__option--selected--hover, .select-search-box--border-and-width__option--selected:hover, .select-search-box--border-and-width__option--selected--hover, .select-search-box--border-with-img__option--selected:hover, .select-search-box--border-with-img__option--selected--hover, .select-search-box--version2__option--selected:hover, .select-search-box--version2__option--selected--hover,
.select-search-box--new-version-status__option--selected:hover,
.select-search-box--new-version-status__option--selected--hover, .select-search-box--new-version-status--awaiting__option--selected:hover, .select-search-box--new-version-status--awaiting__option--selected--hover {
  background: #dadaf8;
  color: #040405;
}
.select-search-box--focus .select-search-box__options, .select-search-box--focus .select-search-box--border__options, .select-search-box--focus .select-search-box--border-and-width__options, .select-search-box--focus .select-search-box--border-with-img__options, .select-search-box--focus .select-search-box--version2__options,
.select-search-box--focus .select-search-box--new-version-status__options, .select-search-box--focus .select-search-box--new-version-status--awaiting__options, .select-search-box--border--focus .select-search-box__options, .select-search-box--border--focus .select-search-box--border__options, .select-search-box--border--focus .select-search-box--border-and-width__options, .select-search-box--border--focus .select-search-box--border-with-img__options, .select-search-box--border--focus .select-search-box--version2__options,
.select-search-box--border--focus .select-search-box--new-version-status__options, .select-search-box--border--focus .select-search-box--new-version-status--awaiting__options, .select-search-box--border-and-width--focus .select-search-box__options, .select-search-box--border-and-width--focus .select-search-box--border__options, .select-search-box--border-and-width--focus .select-search-box--border-and-width__options, .select-search-box--border-and-width--focus .select-search-box--border-with-img__options, .select-search-box--border-and-width--focus .select-search-box--version2__options,
.select-search-box--border-and-width--focus .select-search-box--new-version-status__options, .select-search-box--border-and-width--focus .select-search-box--new-version-status--awaiting__options, .select-search-box--border-with-img--focus .select-search-box__options, .select-search-box--border-with-img--focus .select-search-box--border__options, .select-search-box--border-with-img--focus .select-search-box--border-and-width__options, .select-search-box--border-with-img--focus .select-search-box--border-with-img__options, .select-search-box--border-with-img--focus .select-search-box--version2__options,
.select-search-box--border-with-img--focus .select-search-box--new-version-status__options, .select-search-box--border-with-img--focus .select-search-box--new-version-status--awaiting__options, .select-search-box--version2--focus .select-search-box__options, .select-search-box--version2--focus .select-search-box--border__options, .select-search-box--version2--focus .select-search-box--border-and-width__options, .select-search-box--version2--focus .select-search-box--border-with-img__options, .select-search-box--version2--focus .select-search-box--version2__options,
.select-search-box--version2--focus .select-search-box--new-version-status__options, .select-search-box--version2--focus .select-search-box--new-version-status--awaiting__options,
.select-search-box--new-version-status--focus .select-search-box__options,
.select-search-box--new-version-status--focus .select-search-box--border__options,
.select-search-box--new-version-status--focus .select-search-box--border-and-width__options,
.select-search-box--new-version-status--focus .select-search-box--border-with-img__options,
.select-search-box--new-version-status--focus .select-search-box--version2__options,
.select-search-box--new-version-status--focus .select-search-box--new-version-status__options,
.select-search-box--new-version-status--focus .select-search-box--new-version-status--awaiting__options, .select-search-box--new-version-status--awaiting--focus .select-search-box__options, .select-search-box--new-version-status--awaiting--focus .select-search-box--border__options, .select-search-box--new-version-status--awaiting--focus .select-search-box--border-and-width__options, .select-search-box--new-version-status--awaiting--focus .select-search-box--border-with-img__options, .select-search-box--new-version-status--awaiting--focus .select-search-box--version2__options,
.select-search-box--new-version-status--awaiting--focus .select-search-box--new-version-status__options, .select-search-box--new-version-status--awaiting--focus .select-search-box--new-version-status--awaiting__options {
  display: block;
}

.select-search-box--border {
  border: 2px solid #dddde5;
  background: #f9f9fc;
  width: 213px;
  height: 59px;
}
.select-search-box--border input, .select-search-box--border__search {
  padding: 19px 30px 19px 16px;
}
.select-search-box--border__select--display {
  display: block;
  height: fit-content;
}

.select-search-box--border-and-width {
  border: 2px solid #dddde5;
  background: #f9f9fc;
  width: 256px;
  height: 59px;
}
.select-search-box--border-and-width input, .select-search-box--border-and-width__search {
  padding: 19px 30px 19px 16px;
  overflow: hidden;
}
.select-search-box--border-and-width__select--display {
  display: block;
  height: fit-content;
}

.select-search-box--border-with-img {
  border: 2px solid #dddde5;
  background-color: #ffffff;
  width: 256px;
  height: 60px;
}
.select-search-box--border-with-img input, .select-search-box--border-with-img__search {
  padding: 19px 0px 19px 45px;
}
.select-search-box--border-with-img__select--display {
  display: block;
  height: fit-content;
}

.select-search-box--version2 {
  border: 2px solid #dddde5;
  border-radius: 4px;
  background-color: #ffffff;
  height: 34px;
}
.select-search-box--version2 svg, .select-search-box--version2 img, .select-search-box--version2__search-container {
  left: 8px;
}
.select-search-box--version2 input, .select-search-box--version2__search {
  padding: 19px 0px 19px 32px;
}
.select-search-box--version2__search {
  display: block;
  white-space: nowrap;
  width: 13em;
  overflow: hidden;
  text-overflow: ellipsis;
}
.select-search-box--version2__select--display {
  display: block;
  height: fit-content;
}

.select-search-box--new-version-status {
  border-radius: 4px;
  height: 34px;
}
.select-search-box--new-version-status input, .select-search-box--new-version-status__search {
  padding: 8px 0px 8px 8px;
  font-size: 12px;
  overflow: hidden;
  color: white;
}
.select-search-box--new-version-status__select--display {
  display: block;
  height: fit-content;
}

.select-search-box--new-version-status--awaiting {
  border-radius: 4px;
  height: 34px;
}
.select-search-box--new-version-status--awaiting input, .select-search-box--new-version-status--awaiting__search {
  padding: 8px 0px 8px 8px;
  font-size: 12px;
  overflow: hidden;
  color: black;
}
.select-search-box--new-version-status--awaiting__select--display {
  display: block;
  height: fit-content;
}

.select-search-box__search:after, .select-search-box--border__search:after, .select-search-box--border-and-width__search:after, .select-search-box--border-with-img__search:after, .select-search-box--version2__search:after,
.select-search-box--new-version-status__search:after, .select-search-box--new-version-status--awaiting__search:after {
  content: "";
  height: 16px;
  width: 16px;
  position: absolute;
  top: 50%;
  right: 8px;
  z-index: 0;
  transform: translateY(-50%);
  background: url("/static/arrow-dropdown.ed759dc9.svg");
}

.select-search-box__search-container:after, .select-search-box--border__search-container:after, .select-search-box--border-and-width__search-container:after, .select-search-box--border-with-img__search-container:after, .select-search-box--version2__search-container:after,
.select-search-box--new-version-status__search-container:after, .select-search-box--new-version-status--awaiting__search-container:after {
  content: "";
  height: 16px;
  width: 16px;
  position: absolute;
  top: 50%;
  right: 8px;
  z-index: 0;
  transform: translateY(-50%);
  background: url("/static/secondary.58432537.svg");
}

.select-search-box--new-version-status__search:after {
  background: url("/static/white.bbe3e221.svg");
}

.select-search-box--new-version-status--awaiting__search:after {
  background: url("/static/secondary.58432537.svg");
}

.task-status-history__wrapper {
  height: 400px;
  overflow-x: visible;
  overflow-y: auto;
  padding-left: 7px;
  padding-top: 2px;
}
.task-status-history__wrapper--assignment-history-wrapper {
  height: auto !important;
}
.task-status-history__wrapper__block {
  border-left: 2px solid #dddde5;
  position: relative;
  padding-left: 17px;
  padding-bottom: 15px;
}
.task-status-history__wrapper__block__img {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #dddde5;
  position: absolute;
  left: -9px;
  top: 2px;
  background: rgba(128, 0, 255, 0.2);
}
.task-status-history__wrapper__block__name-date {
  font-size: 12px;
  font-weight: 200;
  color: #777783;
  display: block;
}
.task-status-history__wrapper__block__name-date em {
  color: #040405;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.62;
  font-style: normal;
}
.task-status-history__wrapper__block__action {
  line-height: 1.62;
  color: #777783;
  font-size: 13px;
}
.task-status-history__wrapper__block__action em {
  font-style: normal;
  font-size: 13px;
  color: #040405;
}
.task-status-history__wrapper__block:first-child > .task-status-history__wrapper__block__img {
  top: -2px;
}

.boot-hr {
  margin: 0 -20px;
}

.lds-heart {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
  transform: rotate(45deg);
  transform-origin: 32px 32px;
  margin: 0 auto;
}

.lds-heart div {
  top: 23px;
  left: 19px;
  position: absolute;
  width: 26px;
  height: 26px;
  background: rgba(128, 0, 255, 0.2);
  animation: lds-heart 1.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.lds-heart div:after,
.lds-heart div:before {
  content: " ";
  position: absolute;
  display: block;
  width: 26px;
  height: 26px;
  background: rgba(128, 0, 255, 0.2);
}

.lds-heart div:before {
  left: -17px;
  border-radius: 50% 0 0 50%;
}

.lds-heart div:after {
  top: -17px;
  border-radius: 50% 50% 0 0;
}

@keyframes lds-heart {
  0% {
    transform: scale(0.95);
  }
  5% {
    transform: scale(1.1);
  }
  39% {
    transform: scale(0.85);
  }
  45% {
    transform: scale(1);
  }
  60% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(0.9);
  }
}
.order-summary .panel--no-padding .grey-column {
  background: #f9f9fc;
}
.order-summary .panel--no-padding .grey-column-left {
  width: 360px;
  background: #f9f9fc;
}
.order-summary .order-details__main {
  padding: 40px 50px 36px 50px;
}
.order-summary .order-details__address {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.33;
  color: #040405;
  margin-bottom: 18px;
}
.order-summary .order-details__view-google-map {
  font-size: 13px;
  line-height: 1.62;
  color: #3047ff;
  font-family: Graphik;
  font-weight: normal;
}
.order-summary .order-details__property-details {
  font-size: 13px;
  font-weight: normal;
  line-height: 1.62;
  color: #777783;
}
.order-summary .order-details__property-details__container {
  font-size: 16px;
  font-weight: normal;
  color: #040405;
  margin: 0;
  padding-top: 12px;
}
.order-summary .order-details__property-details__container svg {
  margin-right: 6px;
}
.order-summary .order-details__property-details__container li {
  list-style-type: none;
  margin-bottom: 12px;
}
.order-summary .order-details__property-details__orgName {
  padding-top: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #040405;
  margin-bottom: 0px;
}
.order-summary .order-details__property-details__unitName {
  color: #040405;
  padding-top: 12px;
  margin-bottom: 16px;
}
.order-summary .order-details__property-details__capture-type--inspection {
  width: 72px;
  color: #ffffff;
  margin-top: 12px;
  margin-bottom: 13px;
  padding-left: 3px;
  background-color: #23c3e8;
  font-size: 13px;
  font-weight: 500;
}
.order-summary .order-details__property-details__capture-type--marketing {
  width: 72px;
  color: #ffffff;
  padding-left: 3px;
  margin-top: 12px;
  margin-bottom: 13px;
  background-color: #009e78;
  font-size: 13px;
  font-weight: 500;
}

.time-left {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  margin: 0px;
  padding: 0px;
  margin-left: 15%;
}
.time-left svg {
  margin-right: 9px;
}
.time-left--urgent {
  color: #ff4949;
  padding: 0px;
}

.order-details__status__title {
  font-size: 13px;
  font-weight: normal;
  line-height: 1.62;
  letter-spacing: normal;
  color: #777783;
  padding-left: 35px;
  padding-top: 40px;
  margin: 0px;
}
.order-details__status__title--date {
  font-size: 16px;
  color: #040405;
}
.order-details__status__title svg {
  margin-right: 1px;
}

.order-details__status__ds {
  font-size: 13px;
  font-weight: normal;
  letter-spacing: normal;
  color: #777783;
  padding: 16px;
  padding-left: 35px;
  padding-top: 17px;
  padding-bottom: 0px;
  margin: 0px;
}
.order-details__status__ds__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 10px;
}
.order-details__status__ds__list__item {
  position: relative;
}
.order-details__status__ds__list__item__link {
  margin-top: 10px;
  font-size: 13px;
  color: #3047ff;
  cursor: pointer;
  display: block;
}
.order-details__status__ds__list__item__link > svg {
  margin-right: 6px;
}

.order-details__buttons {
  margin-bottom: 36px;
  padding-right: 20px;
}

.order-details__buttons__items {
  font-size: 13px;
  font-weight: 500;
  color: #040405;
  background-color: #ffffff;
  border: solid 2px #dddde5;
  margin-right: 20px;
}
.order-details__buttons__items:hover {
  background-color: #42424e;
  color: #ffffff;
}
.order-details__buttons__items__publishPropertyButton {
  font-size: 13px;
  font-weight: 500;
  background-color: #42424e;
  border: none;
}

.production-summary__container {
  margin-left: 32px;
  margin-right: 32px;
  padding-bottom: 40px;
}

.production-summary__title {
  font-size: 15px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.62;
  color: #040405;
}
.production-summary__title h1 {
  font-size: 24px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.33;
  color: #040405;
  margin-left: 50px;
  margin-top: 36px;
  margin-bottom: 37px;
}
.production-summary__title--paddingLeft {
  padding-left: 15px;
  padding-bottom: 7px;
  padding-right: 0px;
  font-size: 15px;
  font-weight: 500;
}
.production-summary__title--items {
  padding: 10px 15px 10px 10px;
}

.production-summary__assignee {
  padding: 0;
}
.production-summary__assignee .assignee {
  margin: 0;
  width: 100%;
}

.cell-border {
  border-right: 2px solid #f9f9fc;
  border-bottom: 2px solid #f9f9fc;
}

.assignee .select-search-box__search {
  padding-left: 48px;
  padding-right: 30px;
}

.production-summary__notes {
  padding: 0;
}
.production-summary__notes__noteTitle {
  padding-bottom: 7px;
  padding-left: 30px;
  font-size: 15px;
  font-weight: 500;
}

.notes-nb {
  margin: 0;
  padding-left: 30px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 13px;
  height: 44px;
  align-items: center;
  border-bottom: 2px solid #f9f9fc;
}
.notes-nb:last-child {
  border-right: none;
}

.bg {
  background: #ffffff;
}

.main {
  padding: 34px 50px 45px 50px;
}

.title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.33;
}

.sub_title {
  padding: 26px 0px 17px 0px;
  font-size: 15px;
  line-height: 1.4;
  font-weight: normal;
  color: #777783;
}

.grey-row {
  background: #f9f9fc;
  padding: 17px 33px 22px 33px;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.62;
  color: #040405;
}

.notes-container {
  max-height: 400px;
  overflow-y: auto;
}

.notes-container::-webkit-scrollbar {
  background-color: #f1f1f5;
  width: 4px;
  border-radius: 4px;
}

.notes-container::-webkit-scrollbar-thumb {
  width: 4px;
  border-radius: 4px;
  background-color: #dddde5;
}

.note {
  margin-right: 19px;
}

.order-details__status__assignment-history {
  margin-bottom: 43px;
  margin-top: 18px;
  padding-left: 35px;
}
.order-details__status__assignment-history__buttonView {
  text-align: left;
  margin-left: 6px;
  color: #3047ff;
  padding: 0px;
  font-size: 13px;
  font-weight: normal;
}
.order-details__status__assignment-history__sub-title {
  text-align: left;
  margin-left: 6px;
  color: #040405;
  padding: 0px;
  font-size: 13px;
  font-weight: normal;
}
.order-details__status__assignment-history__modalView__histHead {
  font-size: 24px;
  font-weight: 500;
}
.order-details__status__assignment-history__modalView__histBody {
  max-height: 400px;
}
.order-details__status__assignment-history__modalView__histBody__assignmentDate {
  font-size: 22px;
  font-weight: 500;
  line-height: normal;
  color: #040405;
  padding-top: 28px;
}
.order-details__status__assignment-history__modalView__histBody__assignmentHistStatus {
  font-size: 16px;
  font-weight: normal;
  color: gray;
  padding-bottom: 31px;
  padding-top: 9px;
}

#imageModal {
  max-width: unset;
  position: relative;
  height: 80%;
  width: auto;
}
#imageModal .modal-content,
#imageModal .modal-content .modal-body,
#imageModal .modal-content .modal-body .pt-3 {
  position: relative;
  height: 100%;
}
#imageModal .modal-content {
  margin: 0 auto;
  width: auto;
}
#imageModal .modal-body {
  padding: 0px 15px 0px 36px;
}
#imageModal .modal-body img {
  height: 96%;
  width: auto;
}

.ds-notes__image {
  background-position: center;
  background-size: cover;
  height: 84px;
  width: 124px;
  margin-right: 10px;
  margin-bottom: 10px;
}

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

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

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

.transaction-type {
  color: #040405;
  border: 1px solid #040405;
  font-size: 12px;
  line-height: 1.3;
  width: 77px;
  height: 16px;
  font-weight: 500;
  text-align: center;
}

.division-line {
  border-bottom: 2px solid #dddde5;
  margin-bottom: 0px;
  border-top: 0px;
}

.task-comments {
  padding: 24px;
  padding-top: 32px;
}
.task-comments .boot-hr {
  margin-left: -38px;
  margin-right: -38px;
}

.asset-summary__task-status {
  padding: 32px 36px;
}
.asset-summary--task-panel-width {
  width: 880px;
}
.asset-summary--imagery-or-measurement {
  margin-bottom: 200px;
}

.navigation-buttons {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 36px;
}

.nav-point-buttons {
  display: flex;
  border-right: solid 2px #dddde5;
  padding-right: 6px;
}

.navToggle-notification {
  background-color: #00ca99;
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 14px;
  text-align: center;
}

.templated-floorplans {
  padding: 52px;
  padding-top: 36px;
}
.templated-floorplans hr {
  border-top: 2px solid #f9f9fc;
}
.templated-floorplans__header {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.templated-floorplans__header h2 {
  margin: 0;
  font-size: 24px;
}
.templated-floorplans__floorplan-separation {
  width: 100%;
  margin-top: 36px;
  margin-bottom: 53px;
}
.templated-floorplans__floorplan-line {
  display: flex;
  position: relative;
}
.templated-floorplans__details {
  width: 200px;
  box-sizing: content-box;
  margin-left: 52px;
  margin-right: 57px;
}
.templated-floorplans__details hr {
  margin-top: 15px;
  margin-bottom: 15px;
}
.templated-floorplans__floorplan-title {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.templated-floorplans__final {
  position: relative;
  padding-left: 7px;
  width: 53px;
  height: 16px;
  line-height: 18px;
  border-radius: 8px;
  background: #02c999;
  color: white;
  font-size: 10px;
}
.templated-floorplans__final:after {
  content: "";
  position: absolute;
  top: 0;
  right: 3px;
  height: 16px;
  width: 16px;
  background: url("/static/tick.bf4b871b.svg");
}
.templated-floorplans__user {
  display: flex;
  align-items: center;
  font-size: 13px;
}
.templated-floorplans__user-picture {
  width: 16px;
  height: 16px;
  border: solid 1px #dddde5;
  border-radius: 8px;
  margin-right: 6px;
  margin-top: -1px;
  display: block;
}
.templated-floorplans h3 {
  font-size: 15px;
  font-weight: bold;
  margin: 0;
  margin-right: 20px;
}
.templated-floorplans time {
  color: #777783;
  font-size: 13px;
  margin-bottom: 15px;
}
.templated-floorplans__background {
  display: flex;
  justify-content: center;
  width: 350px;
  height: 350px;
  background-color: #f1f1f5;
  padding-top: 20px;
  padding-bottom: 13px;
}
.templated-floorplans__background:hover {
  cursor: pointer;
  background-color: #d2d2df;
}
.templated-floorplans__floorplan {
  width: 100%;
  max-width: 224px;
  max-height: 317px;
  pointer-events: none;
  cursor: pointer;
}
.templated-floorplans__view-floorplan {
  max-width: 100%;
  max-height: calc(100vh - 175px);
}
.templated-floorplans .dropdown {
  position: absolute;
  right: 0;
  top: 0;
}

.templated-floorplan__view-modal {
  max-width: calc(100vw - 36px);
  justify-content: center;
}
.templated-floorplan__view-modal .modal-content {
  width: inherit;
}
.templated-floorplan__view-modal .modal-header {
  padding: 16px 46px 13px 46px;
}
.templated-floorplan__view-modal .modal-title {
  font-size: 16px;
  line-height: 1.5;
  height: 26px;
}
.templated-floorplan__view-modal .modal-body {
  padding: 0 45px 46px 45px;
}
.templated-floorplan__view-modal .modal-body hr {
  border-top: 2px solid #f9f9fc;
  margin: 0;
}
.templated-floorplan__view-modal .close-modal {
  position: absolute;
  top: 2px;
  right: 0;
  width: 50px;
  height: 50px;
  background: url(/static/close-modal.166fbb69.svg);
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.asset-status {
  margin-bottom: 36px;
}
.asset-status__input-row {
  margin-bottom: 20px;
}
.asset-status__title {
  font-size: 13px;
  color: #777783;
  padding-bottom: 7px;
}

.order-summary .panel--no-padding .grey-column {
  background: #f9f9fc;
}
.order-summary .panel--no-padding .grey-column-left {
  width: 360px;
  background: #f9f9fc;
}
.order-summary .order-details__main {
  padding: 40px 50px 36px 50px;
}
.order-summary .order-details__address {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.33;
  color: #040405;
  margin-bottom: 18px;
}
.order-summary .order-details__view-google-map {
  font-size: 13px;
  line-height: 1.62;
  color: #3047ff;
  font-family: Graphik;
  font-weight: normal;
}
.order-summary .order-details__property-details {
  font-size: 13px;
  font-weight: normal;
  line-height: 1.62;
  color: #777783;
}
.order-summary .order-details__property-details__container {
  font-size: 16px;
  font-weight: normal;
  color: #040405;
  margin: 0;
  padding-top: 12px;
}
.order-summary .order-details__property-details__container svg {
  margin-right: 6px;
}
.order-summary .order-details__property-details__container li {
  list-style-type: none;
  margin-bottom: 12px;
}
.order-summary .order-details__property-details__orgName {
  padding-top: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #040405;
  margin-bottom: 0px;
}
.order-summary .order-details__property-details__unitName {
  color: #040405;
  padding-top: 12px;
  margin-bottom: 16px;
}
.order-summary .order-details__property-details__capture-type--inspection {
  width: 72px;
  color: #ffffff;
  margin-top: 12px;
  margin-bottom: 13px;
  padding-left: 3px;
  background-color: #23c3e8;
  font-size: 13px;
  font-weight: 500;
}
.order-summary .order-details__property-details__capture-type--marketing {
  width: 72px;
  color: #ffffff;
  padding-left: 3px;
  margin-top: 12px;
  margin-bottom: 13px;
  background-color: #009e78;
  font-size: 13px;
  font-weight: 500;
}

.time-left {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  margin: 0px;
  padding: 0px;
  margin-left: 15%;
}
.time-left svg {
  margin-right: 9px;
}
.time-left--urgent {
  color: #ff4949;
  padding: 0px;
}

.order-details__status__title {
  font-size: 13px;
  font-weight: normal;
  line-height: 1.62;
  letter-spacing: normal;
  color: #777783;
  padding-left: 35px;
  padding-top: 40px;
  margin: 0px;
}
.order-details__status__title--date {
  font-size: 16px;
  color: #040405;
}
.order-details__status__title svg {
  margin-right: 1px;
}

.order-details__status__ds {
  font-size: 13px;
  font-weight: normal;
  letter-spacing: normal;
  color: #777783;
  padding: 16px;
  padding-left: 35px;
  padding-top: 17px;
  padding-bottom: 0px;
  margin: 0px;
}
.order-details__status__ds__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 10px;
}
.order-details__status__ds__list__item {
  position: relative;
}
.order-details__status__ds__list__item__link {
  margin-top: 10px;
  font-size: 13px;
  color: #3047ff;
  cursor: pointer;
  display: block;
}
.order-details__status__ds__list__item__link > svg {
  margin-right: 6px;
}

.order-details__buttons {
  margin-bottom: 36px;
  padding-right: 20px;
}

.order-details__buttons__items {
  font-size: 13px;
  font-weight: 500;
  color: #040405;
  background-color: #ffffff;
  border: solid 2px #dddde5;
  margin-right: 20px;
}
.order-details__buttons__items:hover {
  background-color: #42424e;
  color: #ffffff;
}
.order-details__buttons__items__publishPropertyButton {
  font-size: 13px;
  font-weight: 500;
  background-color: #42424e;
  border: none;
}

.production-summary__container {
  margin-left: 32px;
  margin-right: 32px;
  padding-bottom: 40px;
}

.production-summary__title {
  font-size: 15px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.62;
  color: #040405;
}
.production-summary__title h1 {
  font-size: 24px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.33;
  color: #040405;
  margin-left: 50px;
  margin-top: 36px;
  margin-bottom: 37px;
}
.production-summary__title--paddingLeft {
  padding-left: 15px;
  padding-bottom: 7px;
  padding-right: 0px;
  font-size: 15px;
  font-weight: 500;
}
.production-summary__title--items {
  padding: 10px 15px 10px 10px;
}

.production-summary__assignee {
  padding: 0;
}
.production-summary__assignee .assignee {
  margin: 0;
  width: 100%;
}

.cell-border {
  border-right: 2px solid #f9f9fc;
  border-bottom: 2px solid #f9f9fc;
}

.assignee .select-search-box__search {
  padding-left: 48px;
  padding-right: 30px;
}

.production-summary__notes {
  padding: 0;
}
.production-summary__notes__noteTitle {
  padding-bottom: 7px;
  padding-left: 30px;
  font-size: 15px;
  font-weight: 500;
}

.notes-nb {
  margin: 0;
  padding-left: 30px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 13px;
  height: 44px;
  align-items: center;
  border-bottom: 2px solid #f9f9fc;
}
.notes-nb:last-child {
  border-right: none;
}

.bg {
  background: #ffffff;
}

.main {
  padding: 34px 50px 45px 50px;
}

.title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.33;
}

.sub_title {
  padding: 26px 0px 17px 0px;
  font-size: 15px;
  line-height: 1.4;
  font-weight: normal;
  color: #777783;
}

.grey-row {
  background: #f9f9fc;
  padding: 17px 33px 22px 33px;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.62;
  color: #040405;
}

.notes-container {
  max-height: 400px;
  overflow-y: auto;
}

.notes-container::-webkit-scrollbar {
  background-color: #f1f1f5;
  width: 4px;
  border-radius: 4px;
}

.notes-container::-webkit-scrollbar-thumb {
  width: 4px;
  border-radius: 4px;
  background-color: #dddde5;
}

.note {
  margin-right: 19px;
}

.order-details__status__assignment-history {
  margin-bottom: 43px;
  margin-top: 18px;
  padding-left: 35px;
}
.order-details__status__assignment-history__buttonView {
  text-align: left;
  margin-left: 6px;
  color: #3047ff;
  padding: 0px;
  font-size: 13px;
  font-weight: normal;
}
.order-details__status__assignment-history__sub-title {
  text-align: left;
  margin-left: 6px;
  color: #040405;
  padding: 0px;
  font-size: 13px;
  font-weight: normal;
}
.order-details__status__assignment-history__modalView__histHead {
  font-size: 24px;
  font-weight: 500;
}
.order-details__status__assignment-history__modalView__histBody {
  max-height: 400px;
}
.order-details__status__assignment-history__modalView__histBody__assignmentDate {
  font-size: 22px;
  font-weight: 500;
  line-height: normal;
  color: #040405;
  padding-top: 28px;
}
.order-details__status__assignment-history__modalView__histBody__assignmentHistStatus {
  font-size: 16px;
  font-weight: normal;
  color: gray;
  padding-bottom: 31px;
  padding-top: 9px;
}

#imageModal {
  max-width: unset;
  position: relative;
  height: 80%;
  width: auto;
}
#imageModal .modal-content,
#imageModal .modal-content .modal-body,
#imageModal .modal-content .modal-body .pt-3 {
  position: relative;
  height: 100%;
}
#imageModal .modal-content {
  margin: 0 auto;
  width: auto;
}
#imageModal .modal-body {
  padding: 0px 15px 0px 36px;
}
#imageModal .modal-body img {
  height: 96%;
  width: auto;
}

.ds-notes__image {
  background-position: center;
  background-size: cover;
  height: 84px;
  width: 124px;
  margin-right: 10px;
  margin-bottom: 10px;
}

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

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

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

.transaction-type {
  color: #040405;
  border: 1px solid #040405;
  font-size: 12px;
  line-height: 1.3;
  width: 77px;
  height: 16px;
  font-weight: 500;
  text-align: center;
}

.division-line {
  border-bottom: 2px solid #dddde5;
  margin-bottom: 0px;
  border-top: 0px;
}

.ds-tooltip {
  top: 30px;
  left: -50px;
}
.ds-tooltip__body {
  padding: 15px;
  min-width: 250px;
}
.ds-tooltip__body__title {
  font-size: 13px;
  color: #777783;
  line-height: 1.62;
}
.ds-tooltip__body__name {
  font-size: 13px;
  color: #040405;
  line-height: 1.62;
  margin-left: 26px;
}
.ds-tooltip__body__hangouts {
  color: #3047ff;
  font-size: 13px;
}
.ds-tooltip__body__hangouts__logo {
  width: 16px;
  height: 19.3px;
  margin-right: 10px;
}

.comments__input-group .select-search-box--border-and-width {
  margin-right: 10px;
}
.comments__input-group__input {
  display: inline;
  width: 78%;
  margin-right: 10px;
}
.comments__input-group__button {
  display: inline;
  font-size: 13px;
  line-height: 1.62;
  padding: 18px;
  background: #42424e;
  border-radius: 2px;
}
.comments__input-group__user-image {
  display: inline;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin: 13px 15px 15px 0;
}
.comments__wrapper {
  max-height: 515px;
  overflow: auto;
  margin-bottom: 36px;
}
.comments__wrapper__bottom-marker {
  float: left;
  clear: both;
}
.comments__wrapper__no-notes {
  width: 80px;
  margin: 24px auto;
  text-align: center;
}
.comments__wrapper__no-notes__icon {
  width: 80px;
  filter: grayscale(1);
}
.comments__wrapper__no-notes__message {
  font-size: 13px;
}
.comments__wrapper__no-feedback {
  margin: 56px;
}
.comments__wrapper__no-feedback__message {
  font-size: 13px;
}

.comment {
  padding-bottom: 27px;
}
.comment__image {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin: 15px 15px 15px 0;
}
.comment__user-name {
  font-size: 13px;
  line-height: 1.62;
  color: #040405;
  font-weight: 500;
}
.comment__created-at {
  font-size: 12px;
  color: #777783;
  margin-left: 10px;
}
.comment__text {
  padding: 19px 33px;
  color: #040405;
  font-size: 13px;
  line-height: 1.62;
  background: #f1f1f5;
  margin-bottom: 10px;
  overflow-wrap: break-word;
}
.comment__text--invalid {
  border-color: red !important;
}
.comment__text str {
  font-weight: 500;
}
.comment__modify {
  font-size: 12px;
  float: right;
  margin: auto 0;
  color: #6c757d;
  display: none;
}
.comment__modify > span {
  margin-top: 5px;
  margin-left: 10px;
  cursor: pointer;
}
.comment__modify > span:hover {
  text-decoration: underline;
}
.comment__modify--shown {
  display: block;
}
.comment:hover .comment__modify {
  display: block;
}

.emoji-picker {
  position: absolute !important;
  z-index: 20;
  top: 70px;
}

.order-list-header__title {
  font-size: 24px;
  line-height: 1.29;
  color: #777783;
  margin-right: 50px;
  position: relative;
  padding: 32px 0px;
  cursor: pointer;
}
.order-list-header__title:hover {
  text-decoration: none;
}
.order-list-header__title--active {
  text-decoration: underline;
  color: #040405;
}

.navigation-asset-controls__navpoint-button {
  padding-top: 18px;
  padding-bottom: 18px;
}
.navigation-asset-controls__dimensions-button-group {
  justify-content: flex-end;
}
.navigation-asset-controls__dimensions-button-group__dimensions-button {
  padding-top: 18px;
  padding-bottom: 18px;
}

.inspection-notes__unsaved-changes-badge {
  float: right;
}
.inspection-notes__title {
  font-size: 36px;
  font-weight: normal;
}
.inspection-notes__alarmTile {
  font-size: 24px;
  margin-bottom: 10px;
  padding-left: 10px;
}
.inspection-notes__alarmContainer__checkbox {
  display: inline-block;
  background: #f9f9fc;
  padding: 20px;
  border-radius: 5px;
  margin-top: 24px;
  font-size: 0.9375rem;
  color: #777783;
}
.inspection-notes__alarmContainer__checkbox input {
  margin-left: 10px;
}
.inspection-notes__alarmContainer__checkbox--checked {
  background: rgba(0, 202, 153, 0.2);
}
.inspection-notes__alarmContainer__searchBox__search-container {
  display: flex;
  height: 100%;
  position: relative;
  align-items: center;
}
.inspection-notes__alarmContainer__searchBox:after {
  content: "";
  height: 16px;
  width: 16px;
  position: absolute;
  top: 50%;
  right: 6px;
  z-index: 1;
  transform: translateY(-50%);
}
.inspection-notes__alarmContainer__searchBox__select {
  height: auto;
  overflow: auto;
  position: absolute;
  top: 100%;
  display: none;
  width: 100%;
  box-shadow: 0 10px 30px 0 rgba(4, 4, 5, 0.15);
  background: white;
  z-index: 3;
}
.inspection-notes__alarmContainer__searchBox__select--display {
  display: block;
}
.inspection-notes__alarmContainer__searchBox__search {
  display: inline-block;
  width: 100%;
  height: auto;
  padding: 0;
  font-size: 13px;
  font-weight: 400;
  color: #040405;
  background: transparent;
  vertical-align: middle;
  white-space: nowrap;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 1.12782rem center/8px 10px;
  border: 2px solid #dddde5;
  padding: 1.12782rem 2.12782rem 1.12782rem 1.12782rem;
  background-color: #ffffff;
  height: 100%;
  z-index: -2;
  cursor: pointer;
}
.inspection-notes__alarmContainer__searchBox__options {
  display: none;
  padding-left: 0;
}
.inspection-notes__alarmContainer__searchBox__option {
  padding: 10px 21px;
  font-weight: 400;
  font-size: 13px;
  color: #040405;
  background: #ffffff;
  border-top: 1px solid #eee;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  user-select: none;
}
.inspection-notes__alarmContainer__searchBox__option:first-child {
  border-top: none;
}
.inspection-notes__alarmContainer__searchBox__option--hover, .inspection-notes__alarmContainer__searchBox__option:hover {
  background: #efeffc;
}
.inspection-notes__alarmContainer__searchBox__option--selected {
  color: #040405;
  font-weight: 500;
  background: #efeffc;
  border-top-color: #eee;
}
.inspection-notes__alarmContainer__searchBox__option--selected:hover, .inspection-notes__alarmContainer__searchBox__option--selected--hover {
  background: #dadaf8;
  color: #040405;
}
.inspection-notes__alarmContainer__searchBox--focus .inspection-notes__alarmContainer__searchBox__options {
  display: block;
}

.addButton {
  width: 161px;
  height: 48px;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 32px 10px 32px;
  color: #ffffff;
  border: solid 1px #dddde5;
  background-color: #42424e;
}

.cancelButton {
  width: 161px;
  height: 48px;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 32px 10px 32px;
  color: #040405;
  border: solid 2px #dddde5;
  background-color: #ffffff;
  margin-left: 15px;
}

.publishButton {
  width: 161px;
  height: 48px;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 32px 10px 32px;
  color: #ffffff;
  border: solid 2px #dddde5;
  background-color: #42424e;
  margin-left: 15px;
}
.publishButton:disabled {
  opacity: 0.5;
}

.removeButton {
  padding: 10px 25px;
  width: 161px;
  height: 48px;
  font-size: 13px;
  font-weight: 500;
  color: #040405;
  border: solid 2px #dddde5;
  background-color: #ffffff;
}

.inspection-containerItems {
  font-size: 15px;
  line-height: 1.5;
  color: #040405;
}

.inspection-panel__notes-containerClass {
  max-height: 380px;
  overflow: auto;
}
.inspection-panel__header {
  font-size: 13px;
  color: #777783;
  padding-top: 25px;
  padding-bottom: 7px;
}

.inspectionRadioButton {
  color: #040405;
}

.recapture-reason__requested-by {
  margin-bottom: 33px;
}

.recapture-reason-title {
  color: #777783;
  font-size: 15px;
  font-size: 13px;
  padding-bottom: 7px;
}

.recapture-reason-textbox {
  width: 408px;
  height: 133px !important;
  margin-bottom: 28px;
}

.recapture-note {
  font-size: 13px;
}

.recapture-user-name {
  font-size: 16px;
  font-weight: 500;
}

.emptyTextItems {
  margin-left: 138px;
  padding-top: 98px;
}

.emptyTextContainer {
  padding-left: 50px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.emptyListMessage {
  font-size: 16px;
  padding-top: 0px;
}

.emptyListTitle {
  font-size: 28px;
  padding-bottom: 12px;
}

.HistoryTooltipText--orderHistoryTooltip .HistoryTooltipText--scheduledDate {
  padding-left: 0px !important;
}
.HistoryTooltipText--orderHistoryTooltip .HistoryTooltipText--scheduledDate div {
  margin-left: 24px;
}
.HistoryTooltipText--orderHistoryTooltip .HistoryTooltipText--scheduledDate svg {
  margin-left: 0px;
  margin-right: 5px !important;
}
.HistoryTooltipText--orderHistoryTooltip .HistoryTooltipText--jobTime {
  padding-left: 0px !important;
}
.HistoryTooltipText--orderHistoryTooltip .HistoryTooltipText--jobTime .sub-title {
  margin-left: 24px;
}
.HistoryTooltipText--orderHistoryTooltip .HistoryTooltipText--jobTime .sub-title-date {
  margin-left: 24px;
}
.HistoryTooltipText--orderHistoryTooltip .HistoryTooltipText--jobTime svg {
  margin-left: 0px;
  margin-right: 5px !important;
}
.HistoryTooltipText--orderHistoryTooltip .HistoryTooltipText--noJobTime {
  padding-left: 0px !important;
}
.HistoryTooltipText--orderHistoryTooltip .HistoryTooltipText--noJobTime .sub-title {
  margin-left: 24px;
}
.HistoryTooltipText--orderHistoryTooltip .HistoryTooltipText--noJobTime .sub-title-date {
  margin-left: 24px;
}
.HistoryTooltipText--orderHistoryTooltip .HistoryTooltipText--noJobTime svg {
  margin-left: 0px;
  margin-right: 5px !important;
}
.HistoryTooltipText--orderHistoryTooltip .published-table--published-date {
  margin-left: 24px;
}
.HistoryTooltipText--orderHistoryTooltip .time-margin {
  padding-left: 24px;
}

.HistoryTooltip {
  position: relative;
  display: inline-block;
}

.HistoryTooltip .HistoryTooltipText {
  visibility: hidden;
  width: 250px;
  color: #777783;
  background-color: #ffffff;
  position: absolute;
  z-index: 1;
  top: 110%;
  left: 50%;
  margin-left: -60px;
}

.HistoryTooltip .HistoryTooltipText::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 20%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #ffffff transparent;
}

.HistoryTooltip:hover .HistoryTooltipText {
  visibility: visible;
}

.HistoryTooltipText {
  font-size: 13px;
  padding: 20px 20px 20px 20px;
}
.HistoryTooltipText__title {
  color: #777783;
}
.HistoryTooltipText svg {
  margin-left: 20px;
}
.HistoryTooltipText--scheduledDate {
  color: #040405;
  margin-top: 15px;
}
.HistoryTooltipText--scheduledDate span {
  font-weight: 500;
}
.HistoryTooltipText--scheduledDate div {
  font-size: 12px;
  margin-top: 5px;
}
.HistoryTooltipText--jobTime {
  color: #040405;
  margin-top: 20px;
}
.HistoryTooltipText--jobTime span {
  font-weight: 500;
}
.HistoryTooltipText--jobTime .sub-title {
  font-size: 8px;
  margin: 5px 0px;
}
.HistoryTooltipText--jobTime .sub-title-date {
  font-size: 12px;
  margin-bottom: 5px;
}
.HistoryTooltipText--noJobTime {
  margin-top: 15px;
}
.HistoryTooltipText--noJobTime span {
  font-weight: 500;
}
.HistoryTooltipText--noJobTime .sub-title {
  font-size: 8px;
  margin: 5px 0px;
}
.HistoryTooltipText--noJobTime .sub-title-date {
  font-size: 12px;
  margin-bottom: 5px;
}

.no-time {
  color: #777783;
}

.property-left {
  font-size: 12px;
  vertical-align: text-top;
  line-height: 1;
}

.published-table--published-date {
  color: #00ca99;
  font-size: 12px;
}
.published-table--unknown {
  color: #777783;
  font-size: 12px;
}

.templated-floorplan__subtitle {
  font-size: 18px;
  margin-bottom: 36px;
}
.templated-floorplan__commercial .modal-body {
  padding-bottom: 0px;
}
.templated-floorplan__modal {
  width: 1158px;
  max-width: calc(100vw - 36px);
}
.templated-floorplan__modal .modal-content {
  border-radius: 12px;
}
.templated-floorplan__modal .alert {
  position: static !important;
  width: unset !important;
}
.templated-floorplan__loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f1f5;
  opacity: 0.7;
  z-index: 1;
}
.templated-floorplan__preview {
  position: relative;
}
.templated-floorplan__preview--landscape {
  width: 100%;
}
.templated-floorplan__preview object {
  width: 100%;
}
.templated-floorplan__form--landscape {
  width: 100%;
}
.templated-floorplan__input-wrapper {
  margin-bottom: 17px;
}
.templated-floorplan__input-wrapper--landscape {
  width: 32%;
  display: inline-block;
  margin-right: 10px;
}
.templated-floorplan__checkbox-wrapper {
  display: flex;
  align-items: center;
  height: 30px;
}
.templated-floorplan__checkbox-wrapper input {
  margin-right: 11px;
  margin-top: -2px;
}
.templated-floorplan__checkbox-wrapper label {
  margin: 0;
  color: #040405;
  font-size: 16px;
}
.templated-floorplan__dropzone {
  position: absolute;
  top: 9%;
  left: 3%;
  width: 94%;
  height: 74.4%;
  border: dashed 2px #979797;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  transition: opacity 0.15s ease-out;
  background: rgba(255, 255, 255, 0.9);
  opacity: 0;
}
.templated-floorplan__dropzone:hover, .templated-floorplan__dropzone--force-show {
  opacity: 1;
}
.templated-floorplan__dropzone--reject {
  border-color: #ff4949;
  color: #ff4949;
}
.templated-floorplan__dropzone--accept {
  border-color: #00ca99;
  color: #00ca99;
}
.templated-floorplan__dropzone--landscape {
  top: 18.3%;
  left: 0%;
  width: 100%;
  height: 61.4%;
}
.templated-floorplan__dropzone-text {
  font-size: 18px;
  display: flex;
  flex-direction: column;
  line-height: 18px;
  align-items: center;
  justify-content: center;
}
.templated-floorplan__dropzone-text span {
  margin-bottom: 20px;
}

.csvLinkBtn {
  min-width: 140px;
  height: 48px;
  font-size: 13px;
  font-weight: 500;
  margin-right: 5px;
  color: #040405;
  text-align: center;
  background-color: #ffffff;
  border: solid 2px #dddde5;
  padding: 14px;
}
.csvLinkBtn:hover {
  background-color: #42424e;
  color: #ffffff;
}
.csvLinkBtn:disabled {
  background: #dddde5;
  border-color: #dddde5;
  color: white;
}

.cancellation-block {
  border: solid 2px #ff4949;
}
.cancellation-block__header {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 36px;
}
.cancellation-block__title {
  font-size: 13px;
  color: #777783;
  margin-bottom: 21px;
}
.cancellation-block__description {
  margin-bottom: 52px;
  font-size: 16px;
  color: #040405;
}
.cancellation-block__description--avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #dddde5;
  margin-right: 10px;
}
.cancellation-block__description span {
  vertical-align: middle;
}

.cancel-grey-column {
  padding: 30px 0px 30px 66px;
}

.publish-property-modal .modal-content {
  height: 900px;
}
.publish-property-modal .modal-body {
  height: 80vh;
  overflow-y: auto;
}
.publish-property-modal .modal-footer {
  justify-content: flex-start;
  padding: 20px 36px;
}
.publish-property-modal__header-title {
  font-size: 24px;
  margin-bottom: 16px;
}
.publish-property-modal__header-sub-title {
  font-size: 18px;
  font-weight: normal;
}
.publish-property-modal__button-style {
  width: 200px;
}
.publish-property-modal__asset-status-checklist--title {
  font-size: 16px;
  margin-bottom: 8px;
}
.publish-property-modal__asset-status-checklist--status {
  font-size: 15px;
  border: 1px solid #b8b8c2;
  margin-bottom: 12px;
  padding: 18px 20px;
}
.publish-property-modal__asset-status-checklist--status img {
  height: 16px;
  width: 16px;
}
.publish-property-modal__asset-status-checklist--requirement-block {
  margin-bottom: 12px;
  background: #f9f9fc !important;
  padding: 18px 20px;
}
.publish-property-modal__floorplan-checklist {
  font-size: 15px;
  border: 1px solid #b8b8c2;
  margin-bottom: 12px;
  padding: 10px 20px;
  line-height: 2.5;
}
.publish-property-modal__floorplan-checklist--check-icon {
  width: 16px;
  height: 16px;
  margin-top: 10px;
}
.publish-property-modal__floorplan-checklist--floorplan-thumbnail {
  display: flex;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #f1f1f5;
  padding: 4px 8px;
  border-radius: 2px;
  border: solid 1px #dddde5;
}
.publish-property-modal__floorplan-checklist--floorplan-thumbnail:hover {
  cursor: pointer;
  border-radius: 2px;
  border: solid 1px #3047ff;
}

.capital-first-char {
  text-transform: capitalize;
}

.label-color {
  color: #040405 !important;
}

.publishImageCountContainer__title {
  font-size: 13px;
  font-weight: 500;
  margin: 0px 0px 16px 0px;
}
.publishImageCountContainer__item {
  display: flex;
  justify-content: space-between;
}
.publishImageCountContainer__count {
  font-size: 36px;
}
.publishImageCountContainer__vertical-line {
  border-left: 2px solid #dddde5;
}

.tooltip__block {
  margin-top: 10px;
  position: relative;
}
.tooltip__block__image {
  margin-left: 10px;
}
.tooltip__block__description {
  visibility: hidden;
  background-color: #ffffff;
  color: #777783;
  font-size: 13px;
  top: -25px;
  left: 35px;
  padding: 15px 22px 20px 22px;
  width: max-content;
}

.tooltip__block__image:hover + .tooltip__block__description {
  visibility: visible;
}

.csv-report {
  font-weight: normal;
}
.csv-report__header {
  padding: 32px 0px 32px 0px;
}
.csv-report__panel-header {
  padding: 36px 48px 24px 48px;
}

.no-notes__container {
  display: flex;
  margin-top: 48px;
}
.no-notes__container__icon {
  width: 80px;
  filter: grayscale(1);
}
.no-notes__container__message {
  font-size: 13px;
  align-self: center;
  font-size: 12px;
  color: #777783;
  margin-left: 11px;
}

.property-key-feature-container {
  max-height: 350px;
  overflow-y: auto;
  overflow-x: hidden;
  margin-top: 20px;
}

.property-key-feature-container::-webkit-scrollbar {
  background-color: #f1f1f5;
  width: 11px;
  margin-top: 5px;
}

.property-key-feature-container::-webkit-scrollbar-thumb {
  width: 11px;
  background-color: #dddde5;
}

#taskAsset__title {
  font-size: 24px;
  font-weight: 500;
  background-color: transparent;
}

.nav-tabs {
  border-bottom-width: 3px;
}
.nav-tabs .nav-link {
  margin-right: 20px;
}

.nav-tabs .nav-link:hover {
  border-color: transparent transparent #3047ff transparent;
  border-bottom-width: 3px;
}

.nav-tabs .nav-link.active {
  border-color: transparent transparent #3047ff transparent;
  border-bottom-width: 3px;
}

.summary-page__title {
  font-size: 16px;
  color: #040405;
  font-weight: 500;
  padding: 24px 0px 24px 0px;
  line-height: 24px;
}
.summary-page__title-property-detail {
  padding: 32px 0px 24px 0px;
  font-size: 16px;
  color: #040405;
  font-weight: 500;
}
.summary-page__sla-time {
  padding: 32px 24px 0px 0px;
}
.summary-page__sub-title {
  color: #777783;
  font-size: 12px;
}
.summary-page__content {
  font-size: 14px;
  padding: 8px 0px 8px 0px;
}
.summary-page__content__dropdown {
  border-radius: 4px;
  padding: 0px;
  height: 34px;
  width: 170px;
  margin: 0px;
}
.summary-page__content--awaiting {
  background: #EDEDF2;
}
.summary-page__content--in_qc {
  background: #7492CD;
}
.summary-page__content--checking_assets {
  background: #EB7100;
}
.summary-page__content--in_production {
  background: #8480FF;
}
.summary-page__content--in_correction {
  background: #7492CD;
}
.summary-page__content--completed {
  background: #00A87E;
}
.summary-page__content--paused {
  background: #78787E;
}
.summary-page__content--requested_qc {
  background-color: #089CC9;
}
.summary-page__content--corrections_needed {
  background-color: #C61444;
}
.summary-page__content--edited {
  background: #FF556F;
}
.summary-page__badge svg {
  margin-right: 10px;
}

.delivery--same-day {
  color: #C61444;
  padding: 8px 0px 8px 0px;
}

.margin {
  margin-bottom: 80px;
}

.property-detail-footer {
  position: absolute;
  right: 4%;
  bottom: 3%;
}

.requirementlist {
  margin-top: 0;
  padding-inline-start: 20px;
  margin-bottom: 0px;
  font-size: 14px;
}

.primary-button-small {
  background: #3047FF;
  border-radius: 8px;
  color: #FFFFFF;
  padding: 8px;
  font-size: 12px;
}
.primary-button-small:hover {
  background: #001ECA;
  color: #FFFFFF;
}

.primary-button-mid {
  background: #3047FF;
  border-radius: 8px;
  color: #FFFFFF;
  padding: 12px;
  font-size: 14px;
}
.primary-button-mid:hover {
  background: #001ECA;
  color: #FFFFFF;
}
.primary-button-mid:disabled {
  padding: 12px;
  background: #E0E0E5 !important;
  border-radius: 8px;
  color: #9E9EA5 !important;
  border: none;
}

.secondary-button-small {
  background: #373A36;
  border-radius: 8px;
  color: #FFFFFF;
  padding: 8px;
  font-size: 12px;
}
.secondary-button-small:hover {
  background: #040405;
  color: #FFFFFF;
}

.secondary-button-mid {
  background: #373A36;
  border-radius: 8px;
  color: #FFFFFF;
  padding: 12px;
  font-size: 14px;
}
.secondary-button-mid:hover {
  background: #040405;
  border-radius: 8px;
  color: #FFFFFF;
  padding: 12px;
  font-size: 14px;
}
.secondary-button-mid--disabled {
  padding: 12px;
  background: #E0E0E5 !important;
  border-radius: 8px;
  color: #9E9EA5 !important;
  border: none;
}

.tertiary-button {
  color: #3047FF;
  font-size: 12px;
  border: 1px solid #C6C6CB;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 8px;
}
.tertiary-button:hover {
  background-color: #E0E0E5;
  color: #001ECA;
}

.ghost-button-small {
  color: #3047FF;
  font-size: 12px;
  padding: 8px;
  border-radius: 4px;
  font-weight: 400;
  border: none;
}
.ghost-button-small:hover {
  background: rgba(48, 71, 255, 0.2);
  color: #001ECA;
}
.ghost-button-small:disabled {
  color: #9E9EA5;
}

.ghost-button-mid {
  color: #3047FF;
  font-size: 14px;
  padding: 12px;
  border-radius: 8px;
}
.ghost-button-mid:hover {
  background: rgba(48, 71, 255, 0.2);
  color: #001ECA;
}

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

.close-crossIcon-button:hover, .close-crossIcon-button:focus {
  outline: none;
}

.previous-button {
  border: 0;
  appearance: none;
  width: 32px;
  height: 32px;
  padding: 0px;
  background: url("/static/default-state.d6cdb024.png");
}
.previous-button:hover {
  border-color: transparent;
  border: 0;
  appearance: none;
  width: 32px;
  height: 32px;
  padding: 0px;
  background: url("/static/hover-state.b8a524ce.png");
}
.previous-button:active {
  border-color: transparent;
  border: none;
  outline: none !important;
  text-decoration: none;
  appearance: none;
  width: 36px;
  height: 36px;
  padding: 0px;
  background: url("/static/focus-state.906c7aea.png");
}
.previous-button:focus {
  border: none;
  outline: none !important;
}

.next-button {
  border: 0;
  appearance: none;
  width: 32px;
  height: 32px;
  padding: 0px;
  background: url("/static/default-state.09f39943.png");
}
.next-button:hover {
  border-color: transparent;
  border: 0;
  appearance: none;
  width: 32px;
  height: 32px;
  padding: 0px;
  background: url("/static/hover-state.69307545.png");
}
.next-button:active {
  border-color: transparent;
  border: none;
  outline: none !important;
  text-decoration: none;
  appearance: none;
  width: 36px;
  height: 36px;
  padding: 0px;
  background: url("/static/focus-state.47b93915.png");
}
.next-button:focus {
  border: none;
  outline: none !important;
}

.tooltip-block {
  align-self: center;
  position: relative;
}
.tooltip-block__image {
  margin-left: 10px;
}
.tooltip-block__description {
  visibility: hidden;
  background: #2B2B31;
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 12px;
  left: 30px;
  top: -17px;
  padding: 4px 8px;
  width: max-content;
  border: none !important;
}

.tooltip-block__image:hover + .tooltip-block__description {
  visibility: visible;
}

.bs-popover-top-edit {
  box-shadow: 0 2px 25px 0 rgba(4, 4, 5, 0.07);
}
.bs-popover-top-edit .arrow {
  bottom: 25%;
}
.bs-popover-top-edit .arrow:before {
  border-right-color: none;
}
.bs-popover-top-edit .arrow:after {
  border-right-color: #2B2B31;
}

.tooltip-block-small {
  align-self: center;
  position: relative;
}
.tooltip-block-small__image {
  margin-left: 6px;
  height: 18px;
}
.tooltip-block-small__description {
  visibility: hidden;
  background: #2B2B31;
  border-radius: 2px;
  color: #FFFFFF;
  font-size: 11px;
  left: 22px;
  padding: 4px 8px;
  width: max-content;
  border: none !important;
}
.tooltip-block-small .popover {
  border: none;
}
.tooltip-block-small .bs-popover-right > .arrow, .tooltip-block-small .bs-popover-auto[x-placement^=right] > .arrow {
  left: calc((0.4rem + 2px) * -1);
}
.tooltip-block-small .bs-popover-top-edit {
  box-shadow: 0 2px 25px 0 rgba(4, 4, 5, 0.07);
}
.tooltip-block-small .bs-popover-top-edit .arrow {
  bottom: -5%;
}
.tooltip-block-small .bs-popover-top-edit .arrow:before {
  border-right-color: none;
}
.tooltip-block-small .bs-popover-top-edit .arrow:after {
  border-right-color: #2B2B31;
}

.tooltip-block-small__image:hover + .tooltip-block-small__description {
  visibility: visible;
}

.tooltip-block-bottom {
  align-self: center;
  position: relative;
}
.tooltip-block-bottom__image {
  margin-left: 10px;
}
.tooltip-block-bottom__description {
  visibility: hidden;
  background: #2B2B31;
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 12px;
  left: -100px;
  top: 25px;
  padding: 4px 8px;
  width: 200px;
  border: none !important;
}
.tooltip-block-bottom .bs-popover-bottom .arrow, .tooltip-block-bottom .bs-popover-auto[x-placement^=bottom] .arrow {
  margin-left: 10px;
}
.tooltip-block-bottom .bs-popover-bottom > .arrow::after, .tooltip-block-bottom .bs-popover-auto[x-placement^=bottom] > .arrow::after {
  border-bottom-color: #2B2B31;
}

.tooltip-block-bottom__image:hover + .tooltip-block-bottom__description {
  visibility: visible;
}

.panel-scroll {
  height: 640px !important;
  overflow: hidden;
}

.panel-scroll:hover {
  overflow-y: scroll;
}

.panel-scroll::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 4px;
}

.panel-scroll::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #E0E0E5;
}

.comment-container-scroll {
  height: 300px;
  overflow-y: auto;
}

.comment-container-scroll::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 4px;
}

.comment-container-scroll::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #E0E0E5;
}

.text-color-grey {
  font-size: 10px;
  color: #78787E;
}

.text-color-grey-m {
  font-size: 12px;
  color: #78787E;
}

.border-radius-4 {
  border-radius: 4px !important;
}

.fix-height-notes-panel {
  height: 565px;
}

.fix-height {
  height: 686px;
}

.OrderDetailSubHeader--address {
  font-size: 24px;
  font-weight: 500;
  margin-right: 20px;
  padding-top: 12px;
}
.OrderDetailSubHeader--job-address {
  text-align: start;
  font-size: 16px;
  font-weight: 500;
  margin-right: 20px;
  padding-top: 12px;
}
.OrderDetailSubHeader--updated-time {
  font-size: 13px;
  color: #777783;
  padding-top: 4px;
}
.OrderDetailSubHeader--badge {
  background: rgba(123, 116, 255, 0.1);
  border-radius: 2px;
  font-size: 12px;
  color: #7B74FF;
  padding: 4px;
  margin-left: 32px;
}
.OrderDetailSubHeader--badge-red {
  color: #C61444;
  background: rgba(255, 85, 111, 0.1);
  border-radius: 2px;
  font-size: 12px;
  padding: 4px;
  margin-left: 32px;
}

.google-link {
  padding: 34px 51px 36px 51px;
}
.google-link__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.33;
}
.google-link__container {
  margin-top: 29px;
}
.google-link__container__link {
  font-size: 13px;
  font-weight: normal;
  line-height: 1.62;
  color: #3047ff;
  padding: 20px 33px 20px 33px;
  background-color: #f9f9fc;
  overflow: hidden;
  text-overflow: ellipsis;
}
.google-link__container__link a {
  color: #3047ff;
}
.google-link__container__buttons {
  margin-top: 25px;
}
.google-link__container__buttons__button-add {
  font-size: 13px;
  font-weight: 500;
  padding: 10px 32px 10px 32px;
  color: #ffffff;
  border: solid 1px #dddde5;
  background-color: #42424e;
}

#google-link-modal {
  max-width: unset;
  position: relative;
  width: 636px;
}
#google-link-modal .modal-content,
#google-link-modal .modal-content .modal-body,
#google-link-modal .modal-content .modal-body .pt-3 {
  position: relative;
  height: 100%;
}

.modal__head {
  padding: 0px;
  margin: 0px;
}
.modal__head__tit {
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 24px;
}
.modal__head__text {
  font-size: 18px;
  font-weight: normal;
  margin: 0px;
}
.modal__head--input {
  padding: 10px 20px 10px 20px;
  margin: 0px;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.62;
  color: #3047ff;
  background-color: #f9f9fc;
  overflow: scroll;
  text-overflow: ellipsis;
}
.modal__head--delete-button {
  position: absolute;
  cursor: pointer;
  right: 16px;
  top: 20px;
}

.manageDropDown {
  background: url("/static/primary.0c4ca5c0.svg") no-repeat 90%;
  margin-right: 10px;
  width: 86px;
  color: #3047FF;
  font-size: 12px;
  padding: 8px;
  border-radius: 4px;
  text-align: left;
  border: 1px solid transparent;
}
.manageDropDown:hover {
  background: url("/static/primary.0c4ca5c0.svg") no-repeat 90%;
  width: 86px;
  color: #001ECA;
  border: 1px solid #001ECA;
  border-radius: 4px;
  font-size: 12px;
  padding: 8px;
  text-align: left;
}
.manageDropDown--item {
  font-size: 14px;
  border-radius: 4px;
  padding: 8px;
  margin: 8px 8px 8px 0px;
}

.manageDropDown {
  background: url("/static/primary.0c4ca5c0.svg") no-repeat 90%;
  margin-right: 10px;
  width: 86px;
  color: #3047FF;
  font-size: 12px;
  padding: 8px;
  border-radius: 4px;
  text-align: left;
  border: 1px solid transparent;
}
.manageDropDown:hover {
  background: url("/static/primary.0c4ca5c0.svg") no-repeat 90%;
  width: 86px;
  color: #001ECA;
  border: 1px solid #001ECA;
  border-radius: 4px;
  font-size: 12px;
  padding: 8px;
  text-align: left;
}
.manageDropDown--item {
  font-size: 14px;
  border-radius: 4px;
  padding: 8px;
  margin: 8px 8px 8px 0px;
}

.container-border {
  border: 2px solid #E0E0E5;
  border-radius: 8px;
  padding-top: 8px;
  padding-bottom: 16px;
}

.carousel-container {
  display: flex;
  width: 404px;
  height: 86px;
  overflow: scroll;
}

.carousel-container::-webkit-scrollbar {
  background-color: white;
  width: 0px;
  height: 4px;
}

.carousel-container::-webkit-scrollbar-thumb {
  background-clip: padding-box;
  background-color: #dddde5;
  border-radius: 8px;
}

.carousel-thumbnail button {
  height: 78px;
  width: 100px;
  padding: 0px;
  border-radius: 4px;
  border: 1px solid #EDEDF2;
  margin-right: 4px;
}
.carousel-thumbnail button:hover, .carousel-thumbnail button:focus {
  border: 1px solid blue;
  height: 78px;
  width: 100px;
  padding: 0px;
  border-radius: 4px;
}
.carousel-thumbnail button img {
  height: 75px;
  width: 98px;
  border-radius: 4px;
}

.floorplan-thumbnail {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 86px;
  border-radius: 4px;
  border: 1px solid #EDEDF2;
}
.floorplan-thumbnail:hover, .floorplan-thumbnail:focus {
  border: 1px solid blue;
  width: 100%;
  height: 86px;
  padding: 0px;
  border-radius: 4px;
}

.icon-container {
  cursor: pointer;
}

.icon-container svg {
  width: 100%;
  height: auto;
}

.icon-container svg:nth-child(2) {
  display: none;
}

.icon-container:hover svg:nth-child(1) {
  display: none;
}

.icon-container:hover svg:nth-child(2) {
  display: block;
}

.published-image-modal__sub-title {
  color: #78787E;
  font-size: 18px;
}
.published-image-modal__title {
  font-size: 24px;
}
.published-image-modal__carousel-thumbnail {
  display: flex;
  overflow: scroll;
  margin-top: 12px;
  height: 116px;
  width: auto;
}
.published-image-modal__carousel-thumbnail button:first-child {
  margin-left: 0px !important;
}
.published-image-modal__carousel-thumbnail--button {
  width: 154px !important;
  height: 98px !important;
  border: 1px solid #EDEDF2;
  box-sizing: border-box;
  box-shadow: none !important;
  border-radius: 4px;
  margin-left: 8px !important;
  padding-right: 0px;
  padding-left: 0px;
  padding-top: 0px;
  border-radius: 4px;
}
.published-image-modal__carousel-thumbnail--button:hover, .published-image-modal__carousel-thumbnail--button:focus {
  border: 1px solid blue;
  width: 154px !important;
  height: 98px !important;
  background: #FBFBFF;
  padding-right: 0px;
  padding-left: 0px;
  padding-top: 0px;
  border-radius: 4px;
}
.published-image-modal__carousel-thumbnail--image {
  width: 154px !important;
  height: 56px !important;
  border-radius: 4px 4px 0px 0px !important;
}
.published-image-modal__carousel-thumbnail--info-container {
  font-size: 12px;
  height: 42px;
  width: 154px;
  text-align: start;
  padding: 8px 5px 8px;
}
.published-image-modal__carousel-thumbnail--scene-name {
  white-space: nowrap;
  width: 154px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.published-image-modal--imageFullView {
  position: absolute;
  top: 10px;
  right: 40px;
}

#imageFullView {
  max-width: unset;
  position: relative;
  height: 100%;
  width: auto;
}
#imageFullView .modal-content,
#imageFullView .modal-content .modal-body,
#imageFullView .modal-content .modal-body .pt-3 {
  position: relative;
}
#imageFullView .modal-content {
  margin: 0 auto;
  width: auto;
  padding: 20px;
  border-radius: 12px;
}
#imageFullView .modal-body {
  padding: 0px;
  flex: none;
  height: 960px;
}
#imageFullView .modal-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  height: 100%;
}

#publishedImageModal {
  max-width: unset;
  position: relative;
  height: 80%;
  width: auto;
}
#publishedImageModal .modal-content,
#publishedImageModal .modal-content .modal-body,
#publishedImageModal .modal-content .modal-body .pt-3 {
  position: relative;
}
#publishedImageModal .modal-content {
  margin: 0 auto;
  width: 900px;
  border-radius: 12px;
}
#publishedImageModal .modal-body {
  padding: 0px 24px 12px 24px;
  flex: none;
}
#publishedImageModal .modal-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
#publishedImageModal .modal-dialog-centered {
  align-items: unset !important;
}
#publishedImageModal .modal-footer {
  padding: 0px 24px 0px 24px;
  margin-bottom: 32px;
  margin-top: 60px;
}
#publishedImageModal .modal-header {
  padding: 24px 24px 48px 24px;
}
#publishedImageModal--floorplanModal .modal-content {
  margin: 0 auto;
  width: 650px !important;
  border-radius: 12px;
}

.previous-next-buton-container {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

#commentContainer__title {
  font-size: 14px;
  color: #78787E;
  background-color: transparent;
}

.commentsInputBlock__input-group .select-search-box--border-and-width {
  margin-right: 8px;
  border: 2px solid #E0E0E5;
  border-radius: 8px;
  height: 56px;
  width: 246px;
}
.commentsInputBlock__input-group .select-search-box--border-and-width__select--display {
  max-height: 150px !important;
  width: 246px;
}
.commentsInputBlock__input-group .select-search-box--border-and-width__search {
  text-overflow: ellipsis;
}
.commentsInputBlock__input-group__input {
  display: inline;
  border: 2px solid #DDDDE5;
  border-radius: 8px;
  margin-right: 8px;
  height: 56px !important;
}
.commentsInputBlock__input-group__button {
  display: inline;
  font-size: 13px;
  padding: 18px;
  background: #42424e;
  border-radius: 8px;
  height: 56px;
}
.commentsInputBlock__input-group__user-image {
  display: inline;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin: 13px 8px 15px 0;
}

.single-comment {
  margin-bottom: 16px;
  padding: 0px 16px 16px;
  background-color: #FBFBFF;
}
.single-comment:last-of-type {
  margin-bottom: 24px;
}
.single-comment__image {
  height: 32px;
  border-radius: 50%;
  margin: 15px 15px 15px 0;
}
.single-comment__user-name {
  font-size: 14px;
  line-height: 18px;
  color: #3047FF;
  font-weight: 500;
  align-self: center;
}
.single-comment__created-at {
  font-size: 12px;
  color: #78787E;
  align-self: center;
}
.single-comment__text {
  padding-left: 48px;
  color: #040405;
  font-size: 12px;
  line-height: 18px;
  overflow-wrap: break-word;
}
.single-comment__text--invalid {
  border-color: red !important;
}
.single-comment__text str {
  font-weight: 500;
}
.single-comment__modify {
  font-size: 12px;
  float: right;
  margin: auto 0;
  color: #3047FF;
  display: none;
}
.single-comment__modify > span {
  margin-top: 5px;
  margin-left: 10px;
  cursor: pointer;
}
.single-comment__modify > span:hover {
  text-decoration: underline;
}
.single-comment__modify--shown {
  display: block;
}
.single-comment:hover .single-comment__modify {
  display: block;
}

.nav-tabs {
  border-bottom-width: 2px;
  margin-bottom: 24px;
}
.nav-tabs .nav-link {
  margin-right: 20px;
}

.nav-tabs .nav-link:hover {
  border-color: transparent transparent #3047ff transparent;
  border-bottom-width: 2px;
  font-weight: 500;
  color: #2B2B31 !important;
}

.nav-tabs .nav-link.active {
  border-color: transparent transparent #3047ff transparent;
  border-bottom-width: 2px;
  font-weight: 500;
  color: #2B2B31 !important;
}

.dzu-dropzone, .commercialFloorplanUploader {
  height: 60px;
  min-height: unset;
  display: flex;
  align-items: flex-start;
  padding: 8px 12px;
  gap: 24px;
  height: 60px;
  border: 1px solid #EDEDF2;
  border-radius: 8px;
  margin-bottom: 16px;
}

.dzu-inputLabel {
  font-weight: 400;
  font-size: 14px;
  color: #78787E;
  justify-content: start;
  margin-bottom: 0px;
  padding-left: 15%;
  background: url("/static/Button.0208ce96.svg") no-repeat 2%;
}

.dzu-previewContainer {
  flex-direction: column;
  height: 60px;
  min-height: unset;
  display: flex;
  align-items: flex-start;
  padding: 8px 12px;
  height: 60px;
  border: 1px solid #EDEDF2;
  border-radius: 8px;
  margin-bottom: 16px;
  background: url("/static/glbIcon.0d5ffb55.svg") no-repeat 2%;
}

.dzu-previewFileName {
  padding-left: 10%;
}

.dzu-previewStatusContainer {
  padding-left: 10%;
}

.dzu-previewButton {
  width: 20px;
  height: 20px;
  opacity: unset;
  background: url("/static/close-circle.b858f011.svg") no-repeat 2% !important;
}

.dzu-submitButton {
  background: #3047FF;
  color: white;
  border-radius: 4px;
  padding: 8px;
  font-size: 12px;
  cursor: pointer;
  border: 0px;
  margin-left: 4px;
}
.dzu-submitButton:hover {
  background: #001ECA;
  color: white;
}
.dzu-submitButton:disabled {
  background: #E0E0E5;
  color: #9E9EA5;
}

.commercialFloorplanUploader {
  height: unset;
  min-height: unset;
  display: contents;
  padding: 8px 12px;
  gap: 24px;
  border: none;
}
.commercialFloorplanUploader .dzu-inputLabel {
  background: none;
}

.button-style {
  bottom: 64px;
  left: 80px;
  position: relative;
}

.multiSelectContainer .searchWrapper {
  border: 2px solid #dddde5;
  padding: 0px;
  height: 34px;
}
.multiSelectContainer input {
  width: 5%;
}
.multiSelectContainer span.chip {
  background: white;
  color: #3047FF;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 0px;
  margin-bottom: 0px;
  margin-right: 0px;
  width: 50px;
  padding: 0px 10px 0px 0px;
  display: unset;
}
.multiSelectContainer span.chip:first-child {
  padding-left: 10px;
}
.multiSelectContainer span.icon_down_dir {
  right: 15px;
}