@charset "UTF-8";
/*-- Chart --*/
.bb svg {
  font: 10px sans-serif;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.bb path, .bb line {
  fill: none;
  stroke: #000;
}
.bb text, .bb .bb-button {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.bb-legend-item-tile,
.bb-xgrid-focus,
.bb-ygrid-focus,
.bb-ygrid,
.bb-event-rect,
.bb-bars path {
  shape-rendering: crispEdges;
}

.bb-chart-arc .bb-gauge-value {
  fill: #000;
}
.bb-chart-arc path {
  stroke: #fff;
}
.bb-chart-arc rect {
  stroke: #fff;
  stroke-width: 1;
}
.bb-chart-arc text {
  fill: #fff;
  font-size: 13px;
}

/*-- Axis --*/
.bb-axis {
  shape-rendering: crispEdges;
}

/*-- Grid --*/
.bb-grid {
  pointer-events: none;
}
.bb-grid line {
  stroke: #aaa;
}
.bb-grid text {
  fill: #aaa;
}

.bb-xgrid, .bb-ygrid {
  stroke-dasharray: 3 3;
}

/*-- Text on Chart --*/
.bb-text.bb-empty {
  fill: #808080;
  font-size: 2em;
}

/*-- Line --*/
.bb-line {
  stroke-width: 1px;
}

/*-- Point --*/
.bb-circle._expanded_ {
  stroke-width: 1px;
  stroke: white;
}

.bb-selected-circle {
  fill: white;
  stroke-width: 2px;
}

/*-- Bar --*/
.bb-bar {
  stroke-width: 0;
}
.bb-bar._expanded_ {
  fill-opacity: 0.75;
}

/*-- Candlestick --*/
.bb-candlestick {
  stroke-width: 1px;
}
.bb-candlestick._expanded_ {
  fill-opacity: 0.75;
}

/*-- Focus --*/
.bb-target.bb-focused, .bb-circles.bb-focused {
  opacity: 1;
}
.bb-target.bb-focused path.bb-line, .bb-target.bb-focused path.bb-step, .bb-circles.bb-focused path.bb-line, .bb-circles.bb-focused path.bb-step {
  stroke-width: 2px;
}
.bb-target.bb-defocused, .bb-circles.bb-defocused {
  opacity: 0.3 !important;
}
.bb-target.bb-defocused .text-overlapping, .bb-circles.bb-defocused .text-overlapping {
  opacity: 0.05 !important;
}

/*-- Region --*/
.bb-region {
  fill: steelblue;
  fill-opacity: 0.1;
}

/*-- Zoom region --*/
.bb-zoom-brush {
  fill-opacity: 0.1;
}

/*-- Brush --*/
.bb-brush .extent {
  fill-opacity: 0.1;
}

/*-- Legend --*/
.bb-legend-item {
  font-size: 12px;
  user-select: none;
}

.bb-legend-item-hidden {
  opacity: 0.15;
}

.bb-legend-background {
  opacity: 0.75;
  fill: white;
  stroke: lightgray;
  stroke-width: 1;
}

/*-- Title --*/
.bb-title {
  font: 14px sans-serif;
}

/*-- Tooltip --*/
.bb-tooltip-container {
  z-index: 10;
  user-select: none;
}

.bb-tooltip {
  border-collapse: collapse;
  border-spacing: 0;
  background-color: #fff;
  empty-cells: show;
  opacity: 0.9;
  -webkit-box-shadow: 7px 7px 12px -9px rgb(119, 119, 119);
  -moz-box-shadow: 7px 7px 12px -9px rgb(119, 119, 119);
  box-shadow: 7px 7px 12px -9px rgb(119, 119, 119);
}
.bb-tooltip tr {
  border: 1px solid #CCC;
}
.bb-tooltip th {
  background-color: #aaa;
  font-size: 14px;
  padding: 2px 5px;
  text-align: left;
  color: #FFF;
}
.bb-tooltip td {
  font-size: 13px;
  padding: 3px 6px;
  background-color: #fff;
  border-left: 1px dotted #999;
}
.bb-tooltip td > span, .bb-tooltip td > svg {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 6px;
}
.bb-tooltip.value {
  text-align: right;
}

/*-- Area --*/
.bb-area {
  stroke-width: 0;
  opacity: 0.2;
}

/*-- Arc --*/
.bb-chart-arcs-title {
  dominant-baseline: middle;
  font-size: 1.3em;
}

text.bb-chart-arcs-gauge-title {
  dominant-baseline: middle;
  font-size: 2.7em;
}

.bb-chart-arcs {
  /*-- Polar --*/
}
.bb-chart-arcs .bb-chart-arcs-background {
  fill: #e0e0e0;
  stroke: #fff;
}
.bb-chart-arcs .bb-chart-arcs-gauge-unit {
  fill: #000;
  font-size: 16px;
}
.bb-chart-arcs .bb-chart-arcs-gauge-max {
  fill: #777;
}
.bb-chart-arcs .bb-chart-arcs-gauge-min {
  fill: #777;
}
.bb-chart-arcs .bb-levels circle {
  fill: none;
  stroke: #848282;
  stroke-width: 0.5px;
}
.bb-chart-arcs .bb-levels text {
  fill: #848282;
}

/*-- Radar --*/
.bb-chart-radars .bb-levels polygon {
  fill: none;
  stroke: #848282;
  stroke-width: 0.5px;
}
.bb-chart-radars .bb-levels text {
  fill: #848282;
}
.bb-chart-radars .bb-axis line {
  stroke: #848282;
  stroke-width: 0.5px;
}
.bb-chart-radars .bb-axis text {
  font-size: 1.15em;
  cursor: default;
}
.bb-chart-radars .bb-shapes polygon {
  fill-opacity: 0.2;
  stroke-width: 1px;
}

/*-- Button --*/
.bb-button {
  position: absolute;
  top: 10px;
  right: 10px;
}
.bb-button .bb-zoom-reset {
  font-size: 11px;
  border: solid 1px #ccc;
  background-color: #fff;
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
}

:root {
  --blue: #3C52D7;
  --indigo: #9013FE;
  --purple: #4C357B;
  --pink: #EC68AB;
  --red: #D33543;
  --orange: #EC6839;
  --yellow: #E5A22A;
  --green: #00a577;
  --teal: #cddc39;
  --cyan: #5BC5F2;
  --white: #ffffff;
  --gray: #5E6771;
  --gray-dark: #292b2c;
  --primary: #44b1a6;
  --secondary: #221e1f;
  --success: #A5CB2C;
  --info: #5BC5F2;
  --warning: #E5A22A;
  --danger: #D33543;
  --light: #ECEBEB;
  --dark: #213033;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: "Ubuntu", 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(0, 0, 0, 0);
}

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

body {
  margin: 0;
  font-family: "Ubuntu", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #292b2c;
  text-align: left;
  background-color: #F7F7F7;
}

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

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

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

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

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  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: 700;
}

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

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #44b1a6;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: #2f7a72;
  text-decoration: none;
}

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

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

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

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.5rem;
  padding-bottom: 0.5rem;
  color: #5E6771;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

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

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

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

[role=button] {
  cursor: pointer;
}

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

textarea {
  overflow: auto;
  resize: vertical;
}

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

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

progress {
  vertical-align: baseline;
}

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

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

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

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

output {
  display: inline-block;
}

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

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

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

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

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

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

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

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

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

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

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

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

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

small,
.small {
  font-size: 0.875em;
  font-weight: 400;
}

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

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

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

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

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

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

.blockquote-footer {
  display: block;
  font-size: 0.875em;
  color: #5E6771;
}
.blockquote-footer::before {
  content: "— ";
}

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

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

.figure {
  display: inline-block;
}

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

.figure-caption {
  font-size: 90%;
  color: #5E6771;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .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.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .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.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #292b2c;
  background-color: #ffffff;
}
.table th,
.table td {
  padding: 0.5rem;
  vertical-align: top;
  border-top: 5px solid #F7F7F7;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 10px solid #F7F7F7;
}
.table tbody + tbody {
  border-top: 10px solid #F7F7F7;
}

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

.table-bordered {
  border: 5px solid #F7F7F7;
}
.table-bordered th,
.table-bordered td {
  border: 5px solid #F7F7F7;
}
.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 10px;
}

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

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

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

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

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

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #c1c0c0;
}
.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: #8c8a8b;
}

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

.table-success,
.table-success > th,
.table-success > td {
  background-color: #e6f0c4;
}
.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #d0e491;
}

.table-hover .table-success:hover {
  background-color: #ddebb0;
}
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #ddebb0;
}

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

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

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

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

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

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

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

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

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c1c5c6;
}
.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #8c9395;
}

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

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

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

.table .thead-dark th {
  color: #ffffff;
  background-color: #292b2c;
  border-color: #3b3e40;
}
.table .thead-light th {
  color: #292b2c;
  background-color: #ECEBEB;
  border-color: #F7F7F7;
}

.table-dark {
  color: #ffffff;
  background-color: #292b2c;
}
.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #3b3e40;
}
.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: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-responsive > .table-bordered {
  border: 0;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 4px);
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #3f3f47;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 2px solid #ECEBEB;
  border-radius: 0.25rem;
  transition: all 0.3s;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:focus {
  color: #3f3f47;
  background-color: #ffffff;
  border-color: #9cd9d3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(68, 177, 166, 0.25);
}
.form-control::placeholder {
  color: #5E6771;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #F7F7F7;
  opacity: 1;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
  appearance: none;
}

select.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #3f3f47;
}
select.form-control:focus::-ms-value {
  color: #3f3f47;
  background-color: #ffffff;
}

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

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

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

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

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #292b2c;
  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.5em + 0.5rem + 4px);
  padding: 0.25rem 0.5rem;
  font-size: 0.765625rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

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

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

textarea.form-control {
  height: auto;
}

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

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

.form-row {
  display: 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, .form-check-input:disabled ~ .form-check-label {
  color: #5E6771;
}

.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: 0.25rem;
  font-size: 0.875em;
  color: #A5CB2C;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.765625rem;
  line-height: 1.5;
  color: #221e1f;
  background-color: rgba(165, 203, 44, 0.9);
  border-radius: 0.25rem;
}
.form-row > .col > .valid-tooltip, .form-row > [class*=col-] > .valid-tooltip {
  left: 5px;
}

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

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

.was-validated select.form-control:valid, select.form-control.is-valid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

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

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #A5CB2C;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3e%3cpath d='M441.9 167.3l-19.8-19.8c-4.7-4.7-12.3-4.7-17 0L224 328.2 42.9 147.5c-4.7-4.7-12.3-4.7-17 0L6.1 167.3c-4.7 4.7-4.7 12.3 0 17l209.4 209.4c4.7 4.7 12.3 4.7 17 0l209.4-209.4c4.7-4.7 4.7-12.3 0-17z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #ffffff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23A5CB2C' 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") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}
.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  border-color: #A5CB2C;
  box-shadow: 0 0 0 0.2rem rgba(165, 203, 44, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #A5CB2C;
}
.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: #A5CB2C;
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #A5CB2C;
}
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #b9d951;
  background-color: #b9d951;
}
.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(165, 203, 44, 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: #A5CB2C;
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #A5CB2C;
}
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #A5CB2C;
  box-shadow: 0 0 0 0.2rem rgba(165, 203, 44, 0.25);
}

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

.invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.765625rem;
  line-height: 1.5;
  color: #ffffff;
  background-color: rgba(211, 53, 67, 0.9);
  border-radius: 0.25rem;
}
.form-row > .col > .invalid-tooltip, .form-row > [class*=col-] > .invalid-tooltip {
  left: 5px;
}

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

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

.was-validated select.form-control:invalid, select.form-control.is-invalid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

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

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #D33543;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3e%3cpath d='M441.9 167.3l-19.8-19.8c-4.7-4.7-12.3-4.7-17 0L224 328.2 42.9 147.5c-4.7-4.7-12.3-4.7-17 0L6.1 167.3c-4.7 4.7-4.7 12.3 0 17l209.4 209.4c4.7 4.7 12.3 4.7 17 0l209.4-209.4c4.7-4.7 4.7-12.3 0-17z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #ffffff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23D33543' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23D33543' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}
.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  border-color: #D33543;
  box-shadow: 0 0 0 0.2rem rgba(211, 53, 67, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #D33543;
}
.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: #D33543;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #D33543;
}
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #dc5f6a;
  background-color: #dc5f6a;
}
.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(211, 53, 67, 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: #D33543;
}

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

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.form-inline .form-check {
  width: 100%;
}
@media (min-width: 576px) {
  .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 {
  display: inline-block;
  font-weight: 400;
  color: #292b2c;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 2px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 1.5rem;
  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 {
    transition: none;
  }
}
.btn:hover {
  color: #292b2c;
  text-decoration: none;
}
.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(68, 177, 166, 0.25);
}
.btn.disabled, .btn:disabled {
  opacity: 0.65;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #ffffff;
  background-color: #44b1a6;
  border-color: #44b1a6;
}
.btn-primary:hover {
  color: #ffffff;
  background-color: #39958c;
  border-color: #368c83;
}
.btn-primary:focus, .btn-primary.focus {
  color: #ffffff;
  background-color: #39958c;
  border-color: #368c83;
  box-shadow: 0 0 0 0.2rem rgba(96, 189, 179, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
  color: #ffffff;
  background-color: #44b1a6;
  border-color: #44b1a6;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #ffffff;
  background-color: #368c83;
  border-color: #32837b;
}
.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(96, 189, 179, 0.5);
}

.btn-secondary {
  color: #ffffff;
  background-color: #221e1f;
  border-color: #221e1f;
}
.btn-secondary:hover {
  color: #ffffff;
  background-color: #0e0c0c;
  border-color: #070606;
}
.btn-secondary:focus, .btn-secondary.focus {
  color: #ffffff;
  background-color: #0e0c0c;
  border-color: #070606;
  box-shadow: 0 0 0 0.2rem rgba(67, 64, 65, 0.5);
}
.btn-secondary.disabled, .btn-secondary:disabled {
  color: #ffffff;
  background-color: #221e1f;
  border-color: #221e1f;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #ffffff;
  background-color: #070606;
  border-color: black;
}
.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(67, 64, 65, 0.5);
}

.btn-success {
  color: #221e1f;
  background-color: #A5CB2C;
  border-color: #A5CB2C;
}
.btn-success:hover {
  color: #ffffff;
  background-color: #8bac25;
  border-color: #83a123;
}
.btn-success:focus, .btn-success.focus {
  color: #ffffff;
  background-color: #8bac25;
  border-color: #83a123;
  box-shadow: 0 0 0 0.2rem rgba(145, 177, 42, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
  color: #221e1f;
  background-color: #A5CB2C;
  border-color: #A5CB2C;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #ffffff;
  background-color: #83a123;
  border-color: #7a9721;
}
.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(145, 177, 42, 0.5);
}

.btn-info {
  color: #221e1f;
  background-color: #5BC5F2;
  border-color: #5BC5F2;
}
.btn-info:hover {
  color: #221e1f;
  background-color: #38b8ef;
  border-color: #2cb4ee;
}
.btn-info:focus, .btn-info.focus {
  color: #221e1f;
  background-color: #38b8ef;
  border-color: #2cb4ee;
  box-shadow: 0 0 0 0.2rem rgba(82, 172, 210, 0.5);
}
.btn-info.disabled, .btn-info:disabled {
  color: #221e1f;
  background-color: #5BC5F2;
  border-color: #5BC5F2;
}
.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  color: #ffffff;
  background-color: #2cb4ee;
  border-color: #20b0ed;
}
.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(82, 172, 210, 0.5);
}

.btn-warning {
  color: #221e1f;
  background-color: #E5A22A;
  border-color: #E5A22A;
}
.btn-warning:hover {
  color: #ffffff;
  background-color: #cf8e19;
  border-color: #c48618;
}
.btn-warning:focus, .btn-warning.focus {
  color: #ffffff;
  background-color: #cf8e19;
  border-color: #c48618;
  box-shadow: 0 0 0 0.2rem rgba(200, 142, 40, 0.5);
}
.btn-warning.disabled, .btn-warning:disabled {
  color: #221e1f;
  background-color: #E5A22A;
  border-color: #E5A22A;
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #ffffff;
  background-color: #c48618;
  border-color: #b97f17;
}
.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(200, 142, 40, 0.5);
}

.btn-danger {
  color: #ffffff;
  background-color: #D33543;
  border-color: #D33543;
}
.btn-danger:hover {
  color: #ffffff;
  background-color: #b92835;
  border-color: #af2632;
}
.btn-danger:focus, .btn-danger.focus {
  color: #ffffff;
  background-color: #b92835;
  border-color: #af2632;
  box-shadow: 0 0 0 0.2rem rgba(218, 83, 95, 0.5);
}
.btn-danger.disabled, .btn-danger:disabled {
  color: #ffffff;
  background-color: #D33543;
  border-color: #D33543;
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #ffffff;
  background-color: #af2632;
  border-color: #a4242f;
}
.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(218, 83, 95, 0.5);
}

.btn-light {
  color: #221e1f;
  background-color: #ECEBEB;
  border-color: #ECEBEB;
}
.btn-light:hover {
  color: #221e1f;
  background-color: #d9d7d7;
  border-color: #d3d1d1;
}
.btn-light:focus, .btn-light.focus {
  color: #221e1f;
  background-color: #d9d7d7;
  border-color: #d3d1d1;
  box-shadow: 0 0 0 0.2rem rgba(206, 204, 204, 0.5);
}
.btn-light.disabled, .btn-light:disabled {
  color: #221e1f;
  background-color: #ECEBEB;
  border-color: #ECEBEB;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  color: #221e1f;
  background-color: #d3d1d1;
  border-color: #cdcaca;
}
.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(206, 204, 204, 0.5);
}

.btn-dark {
  color: #ffffff;
  background-color: #213033;
  border-color: #213033;
}
.btn-dark:hover {
  color: #ffffff;
  background-color: #121a1c;
  border-color: #0d1314;
}
.btn-dark:focus, .btn-dark.focus {
  color: #ffffff;
  background-color: #121a1c;
  border-color: #0d1314;
  box-shadow: 0 0 0 0.2rem rgba(66, 79, 82, 0.5);
}
.btn-dark.disabled, .btn-dark:disabled {
  color: #ffffff;
  background-color: #213033;
  border-color: #213033;
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  color: #ffffff;
  background-color: #0d1314;
  border-color: #080c0c;
}
.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(66, 79, 82, 0.5);
}

.btn-outline-primary {
  color: #44b1a6;
  border-color: #44b1a6;
}
.btn-outline-primary:hover {
  color: #ffffff;
  background-color: #44b1a6;
  border-color: #44b1a6;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(68, 177, 166, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #44b1a6;
  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: #44b1a6;
  border-color: #44b1a6;
}
.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(68, 177, 166, 0.5);
}

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

.btn-outline-success {
  color: #A5CB2C;
  border-color: #A5CB2C;
}
.btn-outline-success:hover {
  color: #221e1f;
  background-color: #A5CB2C;
  border-color: #A5CB2C;
}
.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(165, 203, 44, 0.5);
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #A5CB2C;
  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: #221e1f;
  background-color: #A5CB2C;
  border-color: #A5CB2C;
}
.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(165, 203, 44, 0.5);
}

.btn-outline-info {
  color: #5BC5F2;
  border-color: #5BC5F2;
}
.btn-outline-info:hover {
  color: #221e1f;
  background-color: #5BC5F2;
  border-color: #5BC5F2;
}
.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(91, 197, 242, 0.5);
}
.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #5BC5F2;
  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: #221e1f;
  background-color: #5BC5F2;
  border-color: #5BC5F2;
}
.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(91, 197, 242, 0.5);
}

.btn-outline-warning {
  color: #E5A22A;
  border-color: #E5A22A;
}
.btn-outline-warning:hover {
  color: #221e1f;
  background-color: #E5A22A;
  border-color: #E5A22A;
}
.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(229, 162, 42, 0.5);
}
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #E5A22A;
  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: #221e1f;
  background-color: #E5A22A;
  border-color: #E5A22A;
}
.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(229, 162, 42, 0.5);
}

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

.btn-outline-light {
  color: #ECEBEB;
  border-color: #ECEBEB;
}
.btn-outline-light:hover {
  color: #221e1f;
  background-color: #ECEBEB;
  border-color: #ECEBEB;
}
.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(236, 235, 235, 0.5);
}
.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #ECEBEB;
  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: #221e1f;
  background-color: #ECEBEB;
  border-color: #ECEBEB;
}
.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(236, 235, 235, 0.5);
}

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

.btn-link {
  font-weight: 400;
  color: #44b1a6;
  text-decoration: none;
}
.btn-link:hover {
  color: #2f7a72;
  text-decoration: none;
}
.btn-link:focus, .btn-link.focus {
  text-decoration: none;
}
.btn-link:disabled, .btn-link.disabled {
  color: #5E6771;
  pointer-events: none;
}

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

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

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

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

.fade {
  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;
  }
}
.collapsing.width {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.width {
    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: 15rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 0.875rem;
  color: #292b2c;
  text-align: left;
  list-style: none;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 0 solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

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

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

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

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

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

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

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

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  clear: both;
  font-weight: 400;
  color: #292b2c;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: #221e1f;
  text-decoration: none;
  background-color: #F7F7F7;
}
.dropdown-item.active, .dropdown-item:active {
  color: #ffffff;
  text-decoration: none;
  background-color: #44b1a6;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #9B9B9B;
  pointer-events: none;
  background-color: transparent;
}

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

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

.dropdown-item-text {
  display: block;
  padding: 0.75rem 1rem;
  color: #292b2c;
}

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

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

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

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

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

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

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

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

.input-group {
  position: relative;
  display: 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%;
  min-width: 0;
  margin-bottom: 0;
}
.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -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 > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .custom-file {
  display: flex;
  align-items: center;
}
.input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group:not(.has-validation) > .form-control:not(:last-child),
.input-group:not(.has-validation) > .custom-select:not(:last-child),
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label,
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > .form-control:nth-last-child(n+3),
.input-group.has-validation > .custom-select:nth-last-child(n+3),
.input-group.has-validation > .custom-file:nth-last-child(n+3) .custom-file-label,
.input-group.has-validation > .custom-file:nth-last-child(n+3) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

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

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

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

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #3f3f47;
  text-align: center;
  white-space: nowrap;
  background-color: #F7F7F7;
  border: 2px solid #ECEBEB;
  border-radius: 0.25rem;
}
.input-group-text input[type=radio],
.input-group-text input[type=checkbox] {
  margin-top: 0;
}

.input-group-lg > .form-control:not(textarea),
.input-group-lg > .custom-select {
  height: calc(1.5em + 1rem + 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-append > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.09375rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control:not(textarea),
.input-group-sm > .custom-select {
  height: calc(1.5em + 0.5rem + 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-append > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.765625rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

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

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

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

.custom-control {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 1.3125rem;
  padding-left: 1.5rem;
  print-color-adjust: exact;
}

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

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.15625rem;
  opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #ffffff;
  border-color: #44b1a6;
  background-color: #44b1a6;
}
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(68, 177, 166, 0.25);
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #9cd9d3;
}
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #ffffff;
  background-color: #c1e7e3;
  border-color: #c1e7e3;
}
.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  color: #5E6771;
}
.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #F7F7F7;
}

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

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

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

.custom-switch {
  padding-left: 2.25rem;
}
.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}
.custom-switch .custom-control-label::after {
  top: calc(0.15625rem + 4px);
  left: calc(-2.25rem + 4px);
  width: calc(1rem - 8px);
  height: calc(1rem - 8px);
  background-color: #9B9B9B;
  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: #ffffff;
  transform: translateX(0.75rem);
}
.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(68, 177, 166, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 4px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #3f3f47;
  vertical-align: middle;
  background: #ffffff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3e%3cpath d='M441.9 167.3l-19.8-19.8c-4.7-4.7-12.3-4.7-17 0L224 328.2 42.9 147.5c-4.7-4.7-12.3-4.7-17 0L6.1 167.3c-4.7 4.7-4.7 12.3 0 17l209.4 209.4c4.7 4.7 12.3 4.7 17 0l209.4-209.4c4.7-4.7 4.7-12.3 0-17z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat;
  border: 2px solid #ECEBEB;
  border-radius: 0.25rem;
  appearance: none;
}
.custom-select:focus {
  border-color: #9cd9d3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(68, 177, 166, 0.25);
}
.custom-select:focus::-ms-value {
  color: #3f3f47;
  background-color: #ffffff;
}
.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}
.custom-select:disabled {
  color: #5E6771;
  background-color: #F7F7F7;
}
.custom-select::-ms-expand {
  display: none;
}
.custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #3f3f47;
}

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

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

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

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 0.75rem + 4px);
  margin: 0;
  overflow: hidden;
  opacity: 0;
}
.custom-file-input:focus ~ .custom-file-label {
  border-color: #9cd9d3;
  box-shadow: 0 0 0 0.2rem rgba(68, 177, 166, 0.25);
}
.custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled ~ .custom-file-label {
  background-color: #F7F7F7;
}
.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}
.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

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

.custom-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  appearance: none;
}
.custom-range:focus {
  outline: 0;
}
.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #F7F7F7, 0 0 0 0.2rem rgba(68, 177, 166, 0.25);
}
.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #F7F7F7, 0 0 0 0.2rem rgba(68, 177, 166, 0.25);
}
.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #F7F7F7, 0 0 0 0.2rem rgba(68, 177, 166, 0.25);
}
.custom-range::-moz-focus-outer {
  border: 0;
}
.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #44b1a6;
  border: 0;
  border-radius: 1rem;
  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: #c1e7e3;
}
.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #ECEBEB;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #44b1a6;
  border: 0;
  border-radius: 1rem;
  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: #c1e7e3;
}
.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #ECEBEB;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #44b1a6;
  border: 0;
  border-radius: 1rem;
  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: #c1e7e3;
}
.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: #ECEBEB;
  border-radius: 1rem;
}
.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #ECEBEB;
  border-radius: 1rem;
}
.custom-range:disabled::-webkit-slider-thumb {
  background-color: #9B9B9B;
}
.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}
.custom-range:disabled::-moz-range-thumb {
  background-color: #9B9B9B;
}
.custom-range:disabled::-moz-range-track {
  cursor: default;
}
.custom-range:disabled::-ms-thumb {
  background-color: #9B9B9B;
}

.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: #5E6771;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 2px solid #ECEBEB;
}
.nav-tabs .nav-link {
  margin-bottom: -2px;
  background-color: transparent;
  border: 2px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: #F7F7F7 #F7F7F7 #ECEBEB;
}
.nav-tabs .nav-link.disabled {
  color: #5E6771;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #3f3f47;
  background-color: #ffffff;
  border-color: #ECEBEB #ECEBEB #ffffff;
}
.nav-tabs .dropdown-menu {
  margin-top: -2px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #ffffff;
  background-color: #44b1a6;
}

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

.nav-justified > .nav-link,
.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.5rem 1rem;
}
.navbar .container,
.navbar .container-fluid,
.navbar .container-sm,
.navbar .container-md,
.navbar .container-lg,
.navbar .container-xl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  display: inline-block;
  padding-top: 0.3359375rem;
  padding-bottom: 0.3359375rem;
  margin-right: 1rem;
  font-size: 1.09375rem;
  line-height: inherit;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: 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.09375rem;
  line-height: 1;
  background-color: transparent;
  border: 2px solid transparent;
  border-radius: 1.5rem;
}
.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: 50%/100% 100% no-repeat;
}

.navbar-nav-scroll {
  max-height: 75vh;
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
.navbar-expand-sm > .container-fluid,
.navbar-expand-sm > .container-sm,
.navbar-expand-sm > .container-md,
.navbar-expand-sm > .container-lg,
.navbar-expand-sm > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 576px) {
  .navbar-expand-sm {
    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.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm > .container,
.navbar-expand-sm > .container-fluid,
.navbar-expand-sm > .container-sm,
.navbar-expand-sm > .container-md,
.navbar-expand-sm > .container-lg,
.navbar-expand-sm > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
.navbar-expand-md > .container-fluid,
.navbar-expand-md > .container-sm,
.navbar-expand-md > .container-md,
.navbar-expand-md > .container-lg,
.navbar-expand-md > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md > .container,
.navbar-expand-md > .container-fluid,
.navbar-expand-md > .container-sm,
.navbar-expand-md > .container-md,
.navbar-expand-md > .container-lg,
.navbar-expand-md > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
.navbar-expand-lg > .container-fluid,
.navbar-expand-lg > .container-sm,
.navbar-expand-lg > .container-md,
.navbar-expand-lg > .container-lg,
.navbar-expand-lg > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    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.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg > .container,
.navbar-expand-lg > .container-fluid,
.navbar-expand-lg > .container-sm,
.navbar-expand-lg > .container-md,
.navbar-expand-lg > .container-lg,
.navbar-expand-lg > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
.navbar-expand-xl > .container-fluid,
.navbar-expand-xl > .container-sm,
.navbar-expand-xl > .container-md,
.navbar-expand-xl > .container-lg,
.navbar-expand-xl > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl > .container,
.navbar-expand-xl > .container-fluid,
.navbar-expand-xl > .container-sm,
.navbar-expand-xl > .container-md,
.navbar-expand-xl > .container-lg,
.navbar-expand-xl > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  padding-right: 0;
  padding-left: 0;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  flex-wrap: nowrap;
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}

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

.navbar-dark .navbar-brand {
  color: #ffffff;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #ffffff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #ffffff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-text a {
  color: #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 #ECEBEB;
  border-radius: 0.3rem;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.3rem - 2px);
  border-top-right-radius: calc(0.3rem - 2px);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.3rem - 2px);
  border-bottom-left-radius: calc(0.3rem - 2px);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 15px;
}

.card-title {
  margin-bottom: 15px;
}

.card-subtitle {
  margin-top: -7.5px;
  margin-bottom: 0;
}

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

.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 15px;
}

.card-header {
  padding: 15px 15px;
  margin-bottom: 0;
  background-color: #ffffff;
  border-bottom: 2px solid #ECEBEB;
}
.card-header:first-child {
  border-radius: calc(0.3rem - 2px) calc(0.3rem - 2px) 0 0;
}

.card-footer {
  padding: 15px 15px;
  background-color: #ffffff;
  border-top: 2px solid #ECEBEB;
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.3rem - 2px) calc(0.3rem - 2px);
}

.card-header-tabs {
  margin-right: -7.5px;
  margin-bottom: -15px;
  margin-left: -7.5px;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -7.5px;
  margin-left: -7.5px;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  border-radius: calc(0.3rem - 2px);
}

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

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

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

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

.card-group > .card {
  margin-bottom: 7.5px;
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    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-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
.card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
.card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
.card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
.card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

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

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0px 1rem;
  margin-bottom: 0px;
  list-style: none;
  background-color: none;
  border-radius: 0.25rem;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #5E6771;
  content: "/";
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #5E6771;
}

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

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -2px;
  line-height: 1.25;
  color: #44b1a6;
  background-color: #ffffff;
  border: 2px solid #ECEBEB;
}
.page-link:hover {
  z-index: 2;
  color: #2f7a72;
  text-decoration: none;
  background-color: #F7F7F7;
  border-color: #ECEBEB;
}
.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(68, 177, 166, 0.25);
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.page-item.active .page-link {
  z-index: 3;
  color: #ffffff;
  background-color: #44b1a6;
  border-color: #44b1a6;
}
.page-item.disabled .page-link {
  color: #5E6771;
  pointer-events: none;
  cursor: auto;
  background-color: #ffffff;
  border-color: #ECEBEB;
}

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

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

.badge {
  display: inline-block;
  padding: 0.5em 0.7em;
  font-size: 75%;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  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 {
  position: relative;
  top: -1px;
}

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

.badge-primary {
  color: #ffffff;
  background-color: #44b1a6;
}
a.badge-primary:hover, a.badge-primary:focus {
  color: #ffffff;
  background-color: #368c83;
}
a.badge-primary:focus, a.badge-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(68, 177, 166, 0.5);
}

.badge-secondary {
  color: #ffffff;
  background-color: #221e1f;
}
a.badge-secondary:hover, a.badge-secondary:focus {
  color: #ffffff;
  background-color: #070606;
}
a.badge-secondary:focus, a.badge-secondary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(34, 30, 31, 0.5);
}

.badge-success {
  color: #221e1f;
  background-color: #A5CB2C;
}
a.badge-success:hover, a.badge-success:focus {
  color: #221e1f;
  background-color: #83a123;
}
a.badge-success:focus, a.badge-success.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(165, 203, 44, 0.5);
}

.badge-info {
  color: #221e1f;
  background-color: #5BC5F2;
}
a.badge-info:hover, a.badge-info:focus {
  color: #221e1f;
  background-color: #2cb4ee;
}
a.badge-info:focus, a.badge-info.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(91, 197, 242, 0.5);
}

.badge-warning {
  color: #221e1f;
  background-color: #E5A22A;
}
a.badge-warning:hover, a.badge-warning:focus {
  color: #221e1f;
  background-color: #c48618;
}
a.badge-warning:focus, a.badge-warning.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(229, 162, 42, 0.5);
}

.badge-danger {
  color: #ffffff;
  background-color: #D33543;
}
a.badge-danger:hover, a.badge-danger:focus {
  color: #ffffff;
  background-color: #af2632;
}
a.badge-danger:focus, a.badge-danger.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(211, 53, 67, 0.5);
}

.badge-light {
  color: #221e1f;
  background-color: #ECEBEB;
}
a.badge-light:hover, a.badge-light:focus {
  color: #221e1f;
  background-color: #d3d1d1;
}
a.badge-light:focus, a.badge-light.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(236, 235, 235, 0.5);
}

.badge-dark {
  color: #ffffff;
  background-color: #213033;
}
a.badge-dark:hover, a.badge-dark:focus {
  color: #ffffff;
  background-color: #0d1314;
}
a.badge-dark:focus, a.badge-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(33, 48, 51, 0.5);
}

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

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

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

.alert-heading {
  color: inherit;
}

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

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

.alert-primary {
  color: #235c56;
  background-color: #daefed;
  border-color: #cbe9e6;
}
.alert-primary hr {
  border-top-color: #b9e1dd;
}
.alert-primary .alert-link {
  color: #153733;
}

.alert-secondary {
  color: #121010;
  background-color: #d3d2d2;
  border-color: #c1c0c0;
}
.alert-secondary hr {
  border-top-color: #b4b3b3;
}
.alert-secondary .alert-link {
  color: black;
}

.alert-success {
  color: #566a17;
  background-color: #edf5d5;
  border-color: #e6f0c4;
}
.alert-success hr {
  border-top-color: #ddebb0;
}
.alert-success .alert-link {
  color: #34400e;
}

.alert-info {
  color: #2f667e;
  background-color: #def3fc;
  border-color: #d1effb;
}
.alert-info hr {
  border-top-color: #bae7f9;
}
.alert-info .alert-link {
  color: #214859;
}

.alert-warning {
  color: #775416;
  background-color: #faecd4;
  border-color: #f8e5c3;
}
.alert-warning hr {
  border-top-color: #f5dbac;
}
.alert-warning .alert-link {
  color: #4c360e;
}

.alert-danger, .alert-error {
  color: #6e1c23;
  background-color: #f6d7d9;
  border-color: #f3c6ca;
}
.alert-danger hr, .alert-error hr {
  border-top-color: #efb1b6;
}
.alert-danger .alert-link, .alert-error .alert-link {
  color: #451216;
}

.alert-light {
  color: #7b7a7a;
  background-color: #fbfbfb;
  border-color: #faf9f9;
}
.alert-light hr {
  border-top-color: #eeebeb;
}
.alert-light .alert-link {
  color: #616161;
}

.alert-dark {
  color: #11191b;
  background-color: #d3d6d6;
  border-color: #c1c5c6;
}
.alert-dark hr {
  border-top-color: #b4b9ba;
}
.alert-dark .alert-link {
  color: black;
}

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

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  background-color: #44b1a6;
  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: 1s linear infinite progress-bar-stripes;
}
@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;
  border-radius: 0.25rem;
}

.list-group-item-action {
  width: 100%;
  color: #3f3f47;
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #3f3f47;
  text-decoration: none;
  background-color: #FAFAFA;
}
.list-group-item-action:active {
  color: #292b2c;
  background-color: #F7F7F7;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 1.25rem 1.5rem;
  background-color: #ffffff;
  border: 2px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: #5E6771;
  pointer-events: none;
  background-color: #ffffff;
}
.list-group-item.active {
  z-index: 2;
  color: #ffffff;
  background-color: #44b1a6;
  border-color: #44b1a6;
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: -2px;
  border-top-width: 2px;
}

.list-group-horizontal {
  flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 2px;
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -2px;
  border-left-width: 2px;
}

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

.list-group-item-primary {
  color: #235c56;
  background-color: #cbe9e6;
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #235c56;
  background-color: #b9e1dd;
}
.list-group-item-primary.list-group-item-action.active {
  color: #ffffff;
  background-color: #235c56;
  border-color: #235c56;
}

.list-group-item-secondary {
  color: #121010;
  background-color: #c1c0c0;
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #121010;
  background-color: #b4b3b3;
}
.list-group-item-secondary.list-group-item-action.active {
  color: #ffffff;
  background-color: #121010;
  border-color: #121010;
}

.list-group-item-success {
  color: #566a17;
  background-color: #e6f0c4;
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #566a17;
  background-color: #ddebb0;
}
.list-group-item-success.list-group-item-action.active {
  color: #ffffff;
  background-color: #566a17;
  border-color: #566a17;
}

.list-group-item-info {
  color: #2f667e;
  background-color: #d1effb;
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #2f667e;
  background-color: #bae7f9;
}
.list-group-item-info.list-group-item-action.active {
  color: #ffffff;
  background-color: #2f667e;
  border-color: #2f667e;
}

.list-group-item-warning {
  color: #775416;
  background-color: #f8e5c3;
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #775416;
  background-color: #f5dbac;
}
.list-group-item-warning.list-group-item-action.active {
  color: #ffffff;
  background-color: #775416;
  border-color: #775416;
}

.list-group-item-danger {
  color: #6e1c23;
  background-color: #f3c6ca;
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #6e1c23;
  background-color: #efb1b6;
}
.list-group-item-danger.list-group-item-action.active {
  color: #ffffff;
  background-color: #6e1c23;
  border-color: #6e1c23;
}

.list-group-item-light {
  color: #7b7a7a;
  background-color: #faf9f9;
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #7b7a7a;
  background-color: #eeebeb;
}
.list-group-item-light.list-group-item-action.active {
  color: #ffffff;
  background-color: #7b7a7a;
  border-color: #7b7a7a;
}

.list-group-item-dark {
  color: #11191b;
  background-color: #c1c5c6;
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #11191b;
  background-color: #b4b9ba;
}
.list-group-item-dark.list-group-item-action.active {
  color: #ffffff;
  background-color: #11191b;
  border-color: #11191b;
}

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

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}

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

.toast {
  flex-basis: 350px;
  max-width: 350px;
  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(0, 0, 0, 0.1);
  opacity: 0;
  border-radius: 0.25rem;
}
.toast:not(:last-child) {
  margin-bottom: 0.75rem;
}
.toast.showing {
  opacity: 1;
}
.toast.show {
  display: block;
  opacity: 1;
}
.toast.hide {
  display: none;
}

.toast-header {
  display: flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  color: #5E6771;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.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.modal-static .modal-dialog {
  transform: scale(1.02);
}

.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);
  height: min-content;
  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: #F7F7F7;
  background-clip: padding-box;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

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

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

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

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

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

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

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 800px;
    margin: 8.5rem auto;
  }
  .modal-dialog-scrollable {
    max-height: calc(100% - 17rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 17rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 17rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 17rem);
    height: min-content;
  }
  .modal-sm {
    max-width: 500px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
.modal-xl {
    max-width: 1140px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1600px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: "Ubuntu", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: 0.765625rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=top], .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=top], .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=top], .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=top], .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=top], .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=top], .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=top], .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=top], .bs-tooltip-auto[x-placement^=top] {
  padding: 0.4rem 0;
}
.bs-tooltip-top .arrow, .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=top] .arrow, .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=top] .arrow, .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=top] .arrow, .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=top] .arrow, .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=top] .arrow, .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=top] .arrow, .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=top] .arrow, .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=top] .arrow, .bs-tooltip-auto[x-placement^=top] .arrow {
  bottom: 0;
}
.bs-tooltip-top .arrow::before, .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=top] .arrow::before, .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=top] .arrow::before, .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=top] .arrow::before, .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=top] .arrow::before, .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=top] .arrow::before, .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=top] .arrow::before, .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=top] .arrow::before, .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=top] .arrow::before, .bs-tooltip-auto[x-placement^=top] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-right, .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=right], .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=right], .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=right], .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=right], .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=right], .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=right], .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=right], .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=right], .bs-tooltip-auto[x-placement^=right] {
  padding: 0 0.4rem;
}
.bs-tooltip-right .arrow, .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=right] .arrow, .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=right] .arrow, .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=right] .arrow, .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=right] .arrow, .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=right] .arrow, .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=right] .arrow, .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=right] .arrow, .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=right] .arrow, .bs-tooltip-auto[x-placement^=right] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=right] .arrow::before, .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=right] .arrow::before, .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=right] .arrow::before, .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=right] .arrow::before, .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=right] .arrow::before, .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=right] .arrow::before, .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=right] .arrow::before, .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=right] .arrow::before, .bs-tooltip-auto[x-placement^=right] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom, .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=bottom], .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=bottom], .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=bottom], .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=bottom], .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=bottom], .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=bottom], .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=bottom], .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=bottom], .bs-tooltip-auto[x-placement^=bottom] {
  padding: 0.4rem 0;
}
.bs-tooltip-bottom .arrow, .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=bottom] .arrow, .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=bottom] .arrow, .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=bottom] .arrow, .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=bottom] .arrow, .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=bottom] .arrow, .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=bottom] .arrow, .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=bottom] .arrow, .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=bottom] .arrow, .bs-tooltip-auto[x-placement^=bottom] .arrow {
  top: 0;
}
.bs-tooltip-bottom .arrow::before, .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-left, .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=left], .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=left], .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=left], .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=left], .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=left], .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=left], .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=left], .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=left], .bs-tooltip-auto[x-placement^=left] {
  padding: 0 0.4rem;
}
.bs-tooltip-left .arrow, .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=left] .arrow, .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=left] .arrow, .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=left] .arrow, .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=left] .arrow, .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=left] .arrow, .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=left] .arrow, .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=left] .arrow, .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=left] .arrow, .bs-tooltip-auto[x-placement^=left] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=left] .arrow::before, .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=left] .arrow::before, .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=left] .arrow::before, .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=left] .arrow::before, .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=left] .arrow::before, .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=left] .arrow::before, .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=left] .arrow::before, .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=left] .arrow::before, .bs-tooltip-auto[x-placement^=left] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

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

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: "Ubuntu", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: 0.765625rem;
  word-wrap: break-word;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}
.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}
.popover .arrow::before, .popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top, .b-popover-dark.bs-popover-auto[x-placement^=top], .b-popover-light.bs-popover-auto[x-placement^=top], .b-popover-danger.bs-popover-auto[x-placement^=top], .b-popover-warning.bs-popover-auto[x-placement^=top], .b-popover-info.bs-popover-auto[x-placement^=top], .b-popover-success.bs-popover-auto[x-placement^=top], .b-popover-secondary.bs-popover-auto[x-placement^=top], .b-popover-primary.bs-popover-auto[x-placement^=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);
}
.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^=top] > .arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^=top] > .arrow::after {
  bottom: 2px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #ffffff;
}

.bs-popover-right, .b-popover-dark.bs-popover-auto[x-placement^=right], .b-popover-light.bs-popover-auto[x-placement^=right], .b-popover-danger.bs-popover-auto[x-placement^=right], .b-popover-warning.bs-popover-auto[x-placement^=right], .b-popover-info.bs-popover-auto[x-placement^=right], .b-popover-success.bs-popover-auto[x-placement^=right], .b-popover-secondary.bs-popover-auto[x-placement^=right], .b-popover-primary.bs-popover-auto[x-placement^=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);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}
.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^=right] > .arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^=right] > .arrow::after {
  left: 2px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #ffffff;
}

.bs-popover-bottom, .b-popover-dark.bs-popover-auto[x-placement^=bottom], .b-popover-light.bs-popover-auto[x-placement^=bottom], .b-popover-danger.bs-popover-auto[x-placement^=bottom], .b-popover-warning.bs-popover-auto[x-placement^=bottom], .b-popover-info.bs-popover-auto[x-placement^=bottom], .b-popover-success.bs-popover-auto[x-placement^=bottom], .b-popover-secondary.bs-popover-auto[x-placement^=bottom], .b-popover-primary.bs-popover-auto[x-placement^=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);
}
.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^=bottom] > .arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^=bottom] > .arrow::after {
  top: 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, .b-popover-dark.bs-popover-auto[x-placement^=left], .b-popover-light.bs-popover-auto[x-placement^=left], .b-popover-danger.bs-popover-auto[x-placement^=left], .b-popover-warning.bs-popover-auto[x-placement^=left], .b-popover-info.bs-popover-auto[x-placement^=left], .b-popover-success.bs-popover-auto[x-placement^=left], .b-popover-secondary.bs-popover-auto[x-placement^=left], .b-popover-primary.bs-popover-auto[x-placement^=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);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}
.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^=left] > .arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^=left] > .arrow::after {
  right: 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: 0.875rem;
  background-color: #f7f7f7;
  border-bottom: 2px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 2px);
  border-top-right-radius: calc(0.3rem - 2px);
}
.popover-header:empty {
  display: none;
}

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

.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: opacity 0s 0.6s;
}
@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%;
  padding: 0;
  color: #ffffff;
  text-align: center;
  background: none;
  border: 0;
  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: 50%/100% 100% no-repeat;
}

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

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

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: 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: -0.125em;
  border: 0.25em solid currentcolor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: 0.75s linear infinite spinner-border;
}

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

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

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

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
.spinner-grow {
    animation-duration: 1.5s;
  }
}
.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: #44b1a6 !important;
}

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

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

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

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

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #83a123 !important;
}

.bg-info {
  background-color: #5BC5F2 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.border-left {
  border-left: 2px solid #ECEBEB !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: #44b1a6 !important;
}

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

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

.border-info {
  border-color: #5BC5F2 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-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.85714286%;
}

.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: 576px) {
  .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: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .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;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}

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

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

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

.user-select-auto {
  user-select: auto !important;
}

.user-select-none {
  user-select: 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, .bootstrap-datetimepicker-widget table th.next::after, .bootstrap-datetimepicker-widget table th.prev::after, .bootstrap-datetimepicker-widget .picker-switch::after, .bootstrap-datetimepicker-widget .btn[data-action=today]::after, .bootstrap-datetimepicker-widget .btn[data-action=clear]::after, .bootstrap-datetimepicker-widget .btn[data-action=togglePeriod]::after, .bootstrap-datetimepicker-widget .btn[data-action=showMinutes]::after, .bootstrap-datetimepicker-widget .btn[data-action=showHours]::after, .bootstrap-datetimepicker-widget .btn[data-action=decrementMinutes]::after, .bootstrap-datetimepicker-widget .btn[data-action=decrementHours]::after, .bootstrap-datetimepicker-widget .btn[data-action=incrementMinutes]::after, .bootstrap-datetimepicker-widget .btn[data-action=incrementHours]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

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

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !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;
}

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

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

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

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

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

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

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

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

.w-90 {
  width: 90% !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;
}

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

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

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

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

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

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

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

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

.h-90 {
  height: 90% !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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
.my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
.mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
.my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
.mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
.my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
.mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
.my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
.mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
.my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
.mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
.my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
.mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
.my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
.mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
.my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
.mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
.my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
.mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
.my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
.mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
.my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
.mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
.my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
.mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
.py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
.px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
.py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
.px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
.py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
.px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
.py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
.px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
.py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
.px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
.py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
.px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
.py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
.px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
.py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
.px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
.py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
.px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
.py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
.px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
.py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
.px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
.py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
.px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1,
.my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1,
.mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1,
.my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1,
.mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .mt-sm-n2,
.my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2,
.mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2,
.my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2,
.mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3,
.my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3,
.mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3,
.my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3,
.mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4,
.my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4,
.mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4,
.my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4,
.mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5,
.my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5,
.mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5,
.my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5,
.mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
.my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
.mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
.my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
.mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
.my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
.mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
.my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
.mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
.my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
.mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
.my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
.mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
.my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
.mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
.my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
.mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
.my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
.mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
.my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
.mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
.my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
.mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
.my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
.mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
.my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
.mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
.my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
.mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
.py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
.px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
.py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
.px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
.py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
.px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
.py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
.px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
.py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
.px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
.py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
.px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
.py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
.px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
.py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
.px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
.py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
.px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
.py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
.px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
.py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
.px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
.py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
.px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1,
.my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1,
.mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1,
.my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1,
.mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .mt-md-n2,
.my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2,
.mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2,
.my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2,
.mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3,
.my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3,
.mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3,
.my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3,
.mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4,
.my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4,
.mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4,
.my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4,
.mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5,
.my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5,
.mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5,
.my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5,
.mx-md-n5 {
    margin-left: -3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
.my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
.mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
.my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
.mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
.my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
.mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
.my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
.mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
.my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
.mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
.my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
.mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
.my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
.mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
.my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
.mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
.my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
.mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
.my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
.mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
.my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
.mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
.my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
.mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
.my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
.mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
.my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
.mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
.py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
.px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
.py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
.px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
.py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
.px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
.py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
.px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
.py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
.px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
.py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
.px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
.py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
.px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
.py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
.px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
.py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
.px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
.py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
.px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
.py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
.px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
.py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
.px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1,
.my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1,
.mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1,
.my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1,
.mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .mt-lg-n2,
.my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2,
.mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2,
.my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2,
.mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3,
.my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3,
.mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3,
.my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3,
.mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4,
.my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4,
.mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4,
.my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4,
.mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5,
.my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5,
.mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5,
.my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5,
.mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
.my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
.mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
.my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
.mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
.my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
.mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
.my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
.mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
.my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
.mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
.my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
.mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
.my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
.mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
.my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
.mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
.my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
.mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
.my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
.mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
.my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
.mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
.my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
.mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
.my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
.mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
.my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
.mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
.py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
.px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
.py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
.px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
.py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
.px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
.py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
.px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
.py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
.px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
.py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
.px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
.py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
.px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
.py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
.px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
.py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
.px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
.py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
.px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
.py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
.px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
.py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
.px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1,
.my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1,
.mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1,
.my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1,
.mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xl-n2,
.my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2,
.mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2,
.my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2,
.mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3,
.my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3,
.mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3,
.my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3,
.mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4,
.my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4,
.mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4,
.my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4,
.mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5,
.my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5,
.mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5,
.my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5,
.mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
.my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
.mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
.my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
.mx-xl-auto {
    margin-left: auto !important;
  }
}
.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);
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text-primary {
  color: #44b1a6 !important;
}

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

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

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

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

a.text-success:hover, a.text-success:focus {
  color: #728c1e !important;
}

.text-info {
  color: #5BC5F2 !important;
}

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

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

a.text-warning:hover, a.text-warning:focus {
  color: #ad7715 !important;
}

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

a.text-danger:hover, a.text-danger:focus {
  color: #9a222c !important;
}

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

a.text-light:hover, a.text-light:focus {
  color: #c7c4c4 !important;
}

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

a.text-dark:hover, a.text-dark:focus {
  color: #030405 !important;
}

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

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

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

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

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

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

.text-break {
  word-break: break-word !important;
  word-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) {
    text-decoration: underline;
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
blockquote {
    border: 2px solid #9B9B9B;
    page-break-inside: avoid;
  }
  tr,
img {
    page-break-inside: avoid;
  }
  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
h3 {
    page-break-after: avoid;
  }
  @page {
    size: a3;
  }
  body {
    min-width: 992px !important;
  }
  .container {
    min-width: 992px !important;
  }
  .navbar {
    display: none;
  }
  .badge {
    border: 2px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
.table th {
    background-color: #ffffff !important;
  }
  .table-bordered th,
.table-bordered td {
    border: 1px solid #ECEBEB !important;
  }
  .table-dark {
    color: inherit;
  }
  .table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
    border-color: #F7F7F7;
  }
  .table .thead-dark th {
    color: inherit;
    border-color: #F7F7F7;
  }
}
.bv-no-focus-ring:focus {
  outline: none;
}

@media (max-width: 575.98px) {
  .bv-d-xs-down-none {
    display: none !important;
  }
}
@media (max-width: 767.98px) {
  .bv-d-sm-down-none {
    display: none !important;
  }
}
@media (max-width: 991.98px) {
  .bv-d-md-down-none {
    display: none !important;
  }
}
@media (max-width: 1199.98px) {
  .bv-d-lg-down-none {
    display: none !important;
  }
}
.bv-d-xl-down-none {
  display: none !important;
}

.form-control.focus {
  color: #3f3f47;
  background-color: #ffffff;
  border-color: #9cd9d3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(68, 177, 166, 0.25);
}
.form-control.focus.is-valid {
  border-color: #A5CB2C;
  box-shadow: 0 0 0 0.2rem rgba(165, 203, 44, 0.25);
}
.form-control.focus.is-invalid {
  border-color: #D33543;
  box-shadow: 0 0 0 0.2rem rgba(211, 53, 67, 0.25);
}

.b-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  font-size: inherit;
  font-weight: 400;
  line-height: 1;
  max-width: 100%;
  max-height: auto;
  text-align: center;
  overflow: visible;
  position: relative;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.b-avatar:focus {
  outline: 0;
}
.b-avatar.btn, .b-avatar[href] {
  padding: 0;
  border: 0;
}
.b-avatar.btn .b-avatar-img img, .b-avatar[href] .b-avatar-img img {
  transition: transform 0.15s ease-in-out;
}
.b-avatar.btn:not(:disabled):not(.disabled), .b-avatar[href]:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.b-avatar.btn:not(:disabled):not(.disabled):hover .b-avatar-img img, .b-avatar[href]:not(:disabled):not(.disabled):hover .b-avatar-img img {
  transform: scale(1.15);
}
.b-avatar.disabled, .b-avatar:disabled, .b-avatar[disabled] {
  opacity: 0.65;
  pointer-events: none;
}
.b-avatar .b-avatar-custom,
.b-avatar .b-avatar-text,
.b-avatar .b-avatar-img {
  border-radius: inherit;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  mask-image: radial-gradient(white, black);
}
.b-avatar .b-avatar-text {
  text-transform: uppercase;
  white-space: nowrap;
}
.b-avatar[href] {
  text-decoration: none;
}
.b-avatar > .b-icon {
  width: 60%;
  height: auto;
  max-width: 100%;
}
.b-avatar .b-avatar-img img {
  width: 100%;
  height: 100%;
  max-height: auto;
  border-radius: inherit;
  object-fit: cover;
}
.b-avatar .b-avatar-badge {
  position: absolute;
  min-height: 1.5em;
  min-width: 1.5em;
  padding: 0.25em;
  line-height: 1;
  border-radius: 10em;
  font-size: 70%;
  font-weight: 700;
  z-index: 1;
}

.b-avatar-sm {
  width: 1.5rem;
  height: 1.5rem;
}
.b-avatar-sm .b-avatar-text {
  font-size: calc(0.6rem);
}
.b-avatar-sm .b-avatar-badge {
  font-size: calc(0.42rem);
}

.b-avatar-lg {
  width: 3.5rem;
  height: 3.5rem;
}
.b-avatar-lg .b-avatar-text {
  font-size: calc(1.4rem);
}
.b-avatar-lg .b-avatar-badge {
  font-size: calc(0.98rem);
}

.b-avatar-group .b-avatar-group-inner {
  display: flex;
  flex-wrap: wrap;
}
.b-avatar-group .b-avatar {
  border: 2px solid #ECEBEB;
}
.b-avatar-group a.b-avatar:hover:not(.disabled):not(disabled),
.b-avatar-group .btn.b-avatar:hover:not(.disabled):not(disabled) {
  z-index: 1;
}

.b-calendar {
  display: inline-flex;
}
.b-calendar .b-calendar-inner {
  min-width: 250px;
}
.b-calendar .b-calendar-header,
.b-calendar .b-calendar-nav {
  margin-bottom: 0.25rem;
}
.b-calendar .b-calendar-nav .btn {
  padding: 0.25rem;
}
.b-calendar output {
  padding: 0.25rem;
  font-size: 80%;
}
.b-calendar output.readonly {
  background-color: #F7F7F7;
  opacity: 1;
}
.b-calendar .b-calendar-footer {
  margin-top: 0.5rem;
}
.b-calendar .b-calendar-grid {
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.b-calendar .b-calendar-grid .row {
  flex-wrap: nowrap;
}
.b-calendar .b-calendar-grid-caption {
  padding: 0.25rem;
}
.b-calendar .b-calendar-grid-body .col[data-date] .btn {
  width: 32px;
  height: 32px;
  font-size: 14px;
  line-height: 1;
  margin: 3px auto;
  padding: 9px 0;
}
.b-calendar .btn:disabled, .b-calendar .btn.disabled, .b-calendar .btn[aria-disabled=true] {
  cursor: default;
  pointer-events: none;
}

.card-img-left {
  border-top-left-radius: calc(0.3rem - 2px);
  border-bottom-left-radius: calc(0.3rem - 2px);
}

.card-img-right {
  border-top-right-radius: calc(0.3rem - 2px);
  border-bottom-right-radius: calc(0.3rem - 2px);
}

.dropdown:not(.dropleft) .dropdown-toggle.dropdown-toggle-no-caret::after {
  display: none !important;
}
.dropdown.dropleft .dropdown-toggle.dropdown-toggle-no-caret::before {
  display: none !important;
}
.dropdown .dropdown-menu:focus {
  outline: none;
}

.b-dropdown-form {
  display: inline-block;
  padding: 0.75rem 1rem;
  width: 100%;
  clear: both;
  font-weight: 400;
}
.b-dropdown-form:focus {
  outline: 1px dotted !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}
.b-dropdown-form.disabled, .b-dropdown-form:disabled {
  outline: 0 !important;
  color: #9B9B9B;
  pointer-events: none;
}

.b-dropdown-text {
  display: inline-block;
  padding: 0.75rem 1rem;
  margin-bottom: 0;
  width: 100%;
  clear: both;
  font-weight: lighter;
}

.custom-checkbox.b-custom-control-lg,
.input-group-lg .custom-checkbox {
  font-size: 1.09375rem;
  line-height: 1.5;
  padding-left: 1.875rem;
}
.custom-checkbox.b-custom-control-lg .custom-control-label::before,
.input-group-lg .custom-checkbox .custom-control-label::before {
  top: 0.1953125rem;
  left: -1.875rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.3rem;
}
.custom-checkbox.b-custom-control-lg .custom-control-label::after,
.input-group-lg .custom-checkbox .custom-control-label::after {
  top: 0.1953125rem;
  left: -1.875rem;
  width: 1.25rem;
  height: 1.25rem;
  background-size: 50% 50%;
}

.custom-checkbox.b-custom-control-sm,
.input-group-sm .custom-checkbox {
  font-size: 0.765625rem;
  line-height: 1.5;
  padding-left: 1.3125rem;
}
.custom-checkbox.b-custom-control-sm .custom-control-label::before,
.input-group-sm .custom-checkbox .custom-control-label::before {
  top: 0.13671875rem;
  left: -1.3125rem;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 0.2rem;
}
.custom-checkbox.b-custom-control-sm .custom-control-label::after,
.input-group-sm .custom-checkbox .custom-control-label::after {
  top: 0.13671875rem;
  left: -1.3125rem;
  width: 0.875rem;
  height: 0.875rem;
  background-size: 50% 50%;
}

.custom-switch.b-custom-control-lg,
.input-group-lg .custom-switch {
  padding-left: 2.8125rem;
}
.custom-switch.b-custom-control-lg .custom-control-label,
.input-group-lg .custom-switch .custom-control-label {
  font-size: 1.09375rem;
  line-height: 1.5;
}
.custom-switch.b-custom-control-lg .custom-control-label::before,
.input-group-lg .custom-switch .custom-control-label::before {
  top: 0.1953125rem;
  height: 1.25rem;
  left: -2.8125rem;
  width: 2.1875rem;
  border-radius: 0.625rem;
}
.custom-switch.b-custom-control-lg .custom-control-label::after,
.input-group-lg .custom-switch .custom-control-label::after {
  top: calc(
        0.1953125rem + 4px
      );
  left: calc(
        -2.8125rem + 4px
      );
  width: calc(
  1.25rem - 8px
);
  height: calc(
  1.25rem - 8px
);
  border-radius: 0.625rem;
  background-size: 50% 50%;
}
.custom-switch.b-custom-control-lg .custom-control-input:checked ~ .custom-control-label::after,
.input-group-lg .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  transform: translateX(0.9375rem);
}

.custom-switch.b-custom-control-sm,
.input-group-sm .custom-switch {
  padding-left: 1.96875rem;
}
.custom-switch.b-custom-control-sm .custom-control-label,
.input-group-sm .custom-switch .custom-control-label {
  font-size: 0.765625rem;
  line-height: 1.5;
}
.custom-switch.b-custom-control-sm .custom-control-label::before,
.input-group-sm .custom-switch .custom-control-label::before {
  top: 0.13671875rem;
  left: -1.96875rem;
  width: 1.53125rem;
  height: 0.875rem;
  border-radius: 0.4375rem;
}
.custom-switch.b-custom-control-sm .custom-control-label::after,
.input-group-sm .custom-switch .custom-control-label::after {
  top: calc(
        0.13671875rem + 4px
      );
  left: calc(
        -1.96875rem + 4px
      );
  width: calc(
  0.875rem - 8px
);
  height: calc(
  0.875rem - 8px
);
  border-radius: 0.4375rem;
  background-size: 50% 50%;
}
.custom-switch.b-custom-control-sm .custom-control-input:checked ~ .custom-control-label::after,
.input-group-sm .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  transform: translateX(0.65625rem);
}

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

.b-form-btn-label-control.form-control {
  display: flex;
  align-items: stretch;
  height: auto;
  padding: 0;
  background-image: none;
}
.input-group .b-form-btn-label-control.form-control {
  padding: 0;
}

[dir=rtl] .b-form-btn-label-control.form-control, .b-form-btn-label-control.form-control[dir=rtl] {
  flex-direction: row-reverse;
}
[dir=rtl] .b-form-btn-label-control.form-control > label, .b-form-btn-label-control.form-control[dir=rtl] > label {
  text-align: right;
}

.b-form-btn-label-control.form-control > .btn {
  line-height: 1;
  font-size: inherit;
  box-shadow: none !important;
  border: 0;
}
.b-form-btn-label-control.form-control > .btn:disabled {
  pointer-events: none;
}
.b-form-btn-label-control.form-control.is-valid > .btn {
  color: #A5CB2C;
}
.b-form-btn-label-control.form-control.is-invalid > .btn {
  color: #D33543;
}
.b-form-btn-label-control.form-control > .dropdown-menu {
  padding: 0.5rem;
}
.b-form-btn-label-control.form-control > .form-control {
  height: auto;
  min-height: calc(calc(1.5em + 0.75rem + 4px) - 4px);
  padding-left: 0.25rem;
  margin: 0;
  border: 0;
  outline: 0;
  background: transparent;
  word-break: break-word;
  font-size: inherit;
  white-space: normal;
  cursor: pointer;
}
.b-form-btn-label-control.form-control > .form-control.form-control-sm {
  min-height: calc(calc(1.5em + 0.5rem + 4px) - 4px);
}
.b-form-btn-label-control.form-control > .form-control.form-control-lg {
  min-height: calc(calc(1.5em + 1rem + 4px) - 4px);
}
.input-group.input-group-sm .b-form-btn-label-control.form-control > .form-control {
  min-height: calc(calc(1.5em + 0.5rem + 4px) - 4px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.input-group.input-group-lg .b-form-btn-label-control.form-control > .form-control {
  min-height: calc(calc(1.5em + 1rem + 4px) - 4px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.b-form-btn-label-control.form-control[aria-disabled=true], .b-form-btn-label-control.form-control[aria-readonly=true] {
  background-color: #F7F7F7;
  opacity: 1;
}
.b-form-btn-label-control.form-control[aria-disabled=true] {
  pointer-events: none;
}
.b-form-btn-label-control.form-control[aria-disabled=true] > label {
  cursor: default;
}

.b-form-btn-label-control.btn-group > .dropdown-menu {
  padding: 0.5rem;
}

.custom-file-label {
  white-space: nowrap;
  overflow-x: hidden;
}

.b-custom-control-lg.custom-file,
.b-custom-control-lg .custom-file-input,
.b-custom-control-lg .custom-file-label,
.input-group-lg.custom-file,
.input-group-lg .custom-file-input,
.input-group-lg .custom-file-label {
  font-size: 1.09375rem;
  height: calc(1.5em + 1rem + 4px);
}
.b-custom-control-lg .custom-file-label,
.b-custom-control-lg .custom-file-label:after,
.input-group-lg .custom-file-label,
.input-group-lg .custom-file-label:after {
  padding: 0.5rem 1rem;
  line-height: 1.5;
}
.b-custom-control-lg .custom-file-label,
.input-group-lg .custom-file-label {
  border-radius: 0.3rem;
}
.b-custom-control-lg .custom-file-label::after,
.input-group-lg .custom-file-label::after {
  font-size: inherit;
  height: calc(
  1.5em + 1rem
);
  border-radius: 0 0.3rem 0.3rem 0;
}

.b-custom-control-sm.custom-file,
.b-custom-control-sm .custom-file-input,
.b-custom-control-sm .custom-file-label,
.input-group-sm.custom-file,
.input-group-sm .custom-file-input,
.input-group-sm .custom-file-label {
  font-size: 0.765625rem;
  height: calc(1.5em + 0.5rem + 4px);
}
.b-custom-control-sm .custom-file-label,
.b-custom-control-sm .custom-file-label:after,
.input-group-sm .custom-file-label,
.input-group-sm .custom-file-label:after {
  padding: 0.25rem 0.5rem;
  line-height: 1.5;
}
.b-custom-control-sm .custom-file-label,
.input-group-sm .custom-file-label {
  border-radius: 0.2rem;
}
.b-custom-control-sm .custom-file-label::after,
.input-group-sm .custom-file-label::after {
  font-size: inherit;
  height: calc(
  1.5em + 0.5rem
);
  border-radius: 0 0.2rem 0.2rem 0;
}

.was-validated .form-control:invalid, .was-validated .form-control:valid, .form-control.is-invalid, .form-control.is-valid {
  background-position: right calc(0.375em + 0.1875rem) center;
}

input[type=color].form-control {
  height: calc(1.5em + 0.75rem + 4px);
  padding: 0.125rem 0.25rem;
}

input[type=color].form-control.form-control-sm,
.input-group-sm input[type=color].form-control {
  height: calc(1.5em + 0.5rem + 4px);
  padding: 0.125rem 0.25rem;
}

input[type=color].form-control.form-control-lg,
.input-group-lg input[type=color].form-control {
  height: calc(1.5em + 1rem + 4px);
  padding: 0.125rem 0.25rem;
}

input[type=color].form-control:disabled {
  background-color: #9B9B9B;
  opacity: 0.65;
}

.input-group > .custom-range {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}
.input-group > .custom-range + .form-control,
.input-group > .custom-range + .form-control-plaintext,
.input-group > .custom-range + .custom-select,
.input-group > .custom-range + .custom-range,
.input-group > .custom-range + .custom-file {
  margin-left: -2px;
}
.input-group > .form-control + .custom-range,
.input-group > .form-control-plaintext + .custom-range,
.input-group > .custom-select + .custom-range,
.input-group > .custom-range + .custom-range,
.input-group > .custom-file + .custom-range {
  margin-left: -2px;
}
.input-group > .custom-range:focus {
  z-index: 3;
}
.input-group > .custom-range:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .custom-range:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .custom-range {
  height: calc(1.5em + 0.75rem + 4px);
  padding: 0 0.75rem;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 2px solid #ECEBEB;
  height: calc(1.5em + 0.75rem + 4px);
  border-radius: 0.25rem;
  transition: all 0.3s;
}
@media (prefers-reduced-motion: reduce) {
  .input-group > .custom-range {
    transition: none;
  }
}
.input-group > .custom-range:focus {
  color: #3f3f47;
  background-color: #ffffff;
  border-color: #9cd9d3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(68, 177, 166, 0.25);
}
.input-group > .custom-range:disabled, .input-group > .custom-range[readonly] {
  background-color: #F7F7F7;
}

.input-group-lg > .custom-range {
  height: calc(1.5em + 1rem + 4px);
  padding: 0 1rem;
  border-radius: 0.3rem;
}

.input-group-sm > .custom-range {
  height: calc(1.5em + 0.5rem + 4px);
  padding: 0 0.5rem;
  border-radius: 0.2rem;
}

.was-validated .input-group .custom-range:valid, .input-group .custom-range.is-valid {
  border-color: #A5CB2C;
}
.was-validated .input-group .custom-range:valid:focus, .input-group .custom-range.is-valid:focus {
  border-color: #A5CB2C;
  box-shadow: 0 0 0 0.2rem rgba(165, 203, 44, 0.25);
}

.was-validated .custom-range:valid:focus::-webkit-slider-thumb, .custom-range.is-valid:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #F7F7F7, 0 0 0 0.2rem #e3f0ba;
}
.was-validated .custom-range:valid:focus::-moz-range-thumb, .custom-range.is-valid:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #F7F7F7, 0 0 0 0.2rem #e3f0ba;
}
.was-validated .custom-range:valid:focus::-ms-thumb, .custom-range.is-valid:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #F7F7F7, 0 0 0 0.2rem #e3f0ba;
}
.was-validated .custom-range:valid::-webkit-slider-thumb, .custom-range.is-valid::-webkit-slider-thumb {
  background-color: #A5CB2C;
  background-image: none;
}
.was-validated .custom-range:valid::-webkit-slider-thumb:active, .custom-range.is-valid::-webkit-slider-thumb:active {
  background-color: #e3f0ba;
  background-image: none;
}
.was-validated .custom-range:valid::-webkit-slider-runnable-track, .custom-range.is-valid::-webkit-slider-runnable-track {
  background-color: rgba(165, 203, 44, 0.35);
}
.was-validated .custom-range:valid::-moz-range-thumb, .custom-range.is-valid::-moz-range-thumb {
  background-color: #A5CB2C;
  background-image: none;
}
.was-validated .custom-range:valid::-moz-range-thumb:active, .custom-range.is-valid::-moz-range-thumb:active {
  background-color: #e3f0ba;
  background-image: none;
}
.was-validated .custom-range:valid::-moz-range-track, .custom-range.is-valid::-moz-range-track {
  background: rgba(165, 203, 44, 0.35);
}
.was-validated .custom-range:valid ~ .valid-feedback,
.was-validated .custom-range:valid ~ .valid-tooltip, .custom-range.is-valid ~ .valid-feedback,
.custom-range.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .custom-range:valid::-ms-thumb, .custom-range.is-valid::-ms-thumb {
  background-color: #A5CB2C;
  background-image: none;
}
.was-validated .custom-range:valid::-ms-thumb:active, .custom-range.is-valid::-ms-thumb:active {
  background-color: #e3f0ba;
  background-image: none;
}
.was-validated .custom-range:valid::-ms-track-lower, .custom-range.is-valid::-ms-track-lower {
  background: rgba(165, 203, 44, 0.35);
}
.was-validated .custom-range:valid::-ms-track-upper, .custom-range.is-valid::-ms-track-upper {
  background: rgba(165, 203, 44, 0.35);
}

.was-validated .input-group .custom-range:invalid, .input-group .custom-range.is-invalid {
  border-color: #D33543;
}
.was-validated .input-group .custom-range:invalid:focus, .input-group .custom-range.is-invalid:focus {
  border-color: #D33543;
  box-shadow: 0 0 0 0.2rem rgba(211, 53, 67, 0.25);
}

.was-validated .custom-range:invalid:focus::-webkit-slider-thumb, .custom-range.is-invalid:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #F7F7F7, 0 0 0 0.2rem #f3c8cb;
}
.was-validated .custom-range:invalid:focus::-moz-range-thumb, .custom-range.is-invalid:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #F7F7F7, 0 0 0 0.2rem #f3c8cb;
}
.was-validated .custom-range:invalid:focus::-ms-thumb, .custom-range.is-invalid:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #F7F7F7, 0 0 0 0.2rem #f3c8cb;
}
.was-validated .custom-range:invalid::-webkit-slider-thumb, .custom-range.is-invalid::-webkit-slider-thumb {
  background-color: #D33543;
  background-image: none;
}
.was-validated .custom-range:invalid::-webkit-slider-thumb:active, .custom-range.is-invalid::-webkit-slider-thumb:active {
  background-color: #f3c8cb;
  background-image: none;
}
.was-validated .custom-range:invalid::-webkit-slider-runnable-track, .custom-range.is-invalid::-webkit-slider-runnable-track {
  background-color: rgba(211, 53, 67, 0.35);
}
.was-validated .custom-range:invalid::-moz-range-thumb, .custom-range.is-invalid::-moz-range-thumb {
  background-color: #D33543;
  background-image: none;
}
.was-validated .custom-range:invalid::-moz-range-thumb:active, .custom-range.is-invalid::-moz-range-thumb:active {
  background-color: #f3c8cb;
  background-image: none;
}
.was-validated .custom-range:invalid::-moz-range-track, .custom-range.is-invalid::-moz-range-track {
  background: rgba(211, 53, 67, 0.35);
}
.was-validated .custom-range:invalid ~ .invalid-feedback,
.was-validated .custom-range:invalid ~ .invalid-tooltip, .custom-range.is-invalid ~ .invalid-feedback,
.custom-range.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .custom-range:invalid::-ms-thumb, .custom-range.is-invalid::-ms-thumb {
  background-color: #D33543;
  background-image: none;
}
.was-validated .custom-range:invalid::-ms-thumb:active, .custom-range.is-invalid::-ms-thumb:active {
  background-color: #f3c8cb;
  background-image: none;
}
.was-validated .custom-range:invalid::-ms-track-lower, .custom-range.is-invalid::-ms-track-lower {
  background: rgba(211, 53, 67, 0.35);
}
.was-validated .custom-range:invalid::-ms-track-upper, .custom-range.is-invalid::-ms-track-upper {
  background: rgba(211, 53, 67, 0.35);
}

.custom-radio.b-custom-control-lg,
.input-group-lg .custom-radio {
  font-size: 1.09375rem;
  line-height: 1.5;
  padding-left: 1.875rem;
}
.custom-radio.b-custom-control-lg .custom-control-label::before,
.input-group-lg .custom-radio .custom-control-label::before {
  top: 0.1953125rem;
  left: -1.875rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
}
.custom-radio.b-custom-control-lg .custom-control-label::after,
.input-group-lg .custom-radio .custom-control-label::after {
  top: 0.1953125rem;
  left: -1.875rem;
  width: 1.25rem;
  height: 1.25rem;
  background: no-repeat 50%/50% 50%;
}

.custom-radio.b-custom-control-sm,
.input-group-sm .custom-radio {
  font-size: 0.765625rem;
  line-height: 1.5;
  padding-left: 1.3125rem;
}
.custom-radio.b-custom-control-sm .custom-control-label::before,
.input-group-sm .custom-radio .custom-control-label::before {
  top: 0.13671875rem;
  left: -1.3125rem;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
}
.custom-radio.b-custom-control-sm .custom-control-label::after,
.input-group-sm .custom-radio .custom-control-label::after {
  top: 0.13671875rem;
  left: -1.3125rem;
  width: 0.875rem;
  height: 0.875rem;
  background: no-repeat 50%/50% 50%;
}

.b-rating {
  text-align: center;
}
.b-rating.d-inline-flex {
  width: auto;
}
.b-rating .b-rating-star,
.b-rating .b-rating-value {
  padding: 0 0.25em;
}
.b-rating .b-rating-value {
  min-width: 2.5em;
}
.b-rating .b-rating-star {
  display: inline-flex;
  justify-content: center;
  outline: 0;
}
.b-rating .b-rating-star .b-rating-icon {
  display: inline-flex;
  transition: all 0.15s ease-in-out;
}
.b-rating.disabled, .b-rating:disabled {
  background-color: #F7F7F7;
  color: #5E6771;
}
.b-rating:not(.disabled):not(.readonly) .b-rating-star {
  cursor: pointer;
}
.b-rating:not(.disabled):not(.readonly):focus:not(:hover) .b-rating-star.focused .b-rating-icon,
.b-rating:not(.disabled):not(.readonly) .b-rating-star:hover .b-rating-icon {
  transform: scale(1.5);
}
.b-rating[dir=rtl] .b-rating-star-half {
  transform: scale(-1, 1);
}

.b-form-spinbutton {
  text-align: center;
  overflow: hidden;
  background-image: none;
  padding: 0;
}
[dir=rtl] .b-form-spinbutton:not(.flex-column), .b-form-spinbutton[dir=rtl]:not(.flex-column) {
  flex-direction: row-reverse;
}

.b-form-spinbutton output {
  font-size: inherit;
  outline: 0;
  border: 0;
  background-color: transparent;
  width: auto;
  margin: 0;
  padding: 0 0.25rem;
}
.b-form-spinbutton output > div,
.b-form-spinbutton output > bdi {
  display: block;
  min-width: 2.25em;
  height: 1.5em;
}
.b-form-spinbutton.flex-column {
  height: auto;
  width: auto;
}
.b-form-spinbutton.flex-column output {
  margin: 0 0.25rem;
  padding: 0.25rem 0;
}
.b-form-spinbutton:not(.d-inline-flex):not(.flex-column) {
  output-width: 100%;
}
.b-form-spinbutton.d-inline-flex:not(.flex-column) {
  width: auto;
}
.b-form-spinbutton .btn {
  line-height: 1;
  box-shadow: none !important;
}
.b-form-spinbutton .btn:disabled {
  pointer-events: none;
}
.b-form-spinbutton .btn:hover:not(:disabled) > div > .b-icon {
  transform: scale(1.25);
}
.b-form-spinbutton.disabled, .b-form-spinbutton.readonly {
  background-color: #F7F7F7;
}
.b-form-spinbutton.disabled {
  pointer-events: none;
}

.b-form-tags.focus {
  color: #3f3f47;
  background-color: #ffffff;
  border-color: #9cd9d3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(68, 177, 166, 0.25);
}
.b-form-tags.focus.is-valid {
  border-color: #A5CB2C;
  box-shadow: 0 0 0 0.2rem rgba(165, 203, 44, 0.25);
}
.b-form-tags.focus.is-invalid {
  border-color: #D33543;
  box-shadow: 0 0 0 0.2rem rgba(211, 53, 67, 0.25);
}
.b-form-tags.disabled {
  background-color: #F7F7F7;
}

.b-form-tags-list {
  margin-top: -0.25rem;
}
.b-form-tags-list .b-form-tags-field,
.b-form-tags-list .b-form-tag {
  margin-top: 0.25rem;
}

.b-form-tags-input {
  color: #3f3f47;
}

.b-form-tag {
  font-size: 75%;
  font-weight: normal;
  line-height: 1.5;
  margin-right: 0.25rem;
}
.b-form-tag.disabled {
  opacity: 0.75;
}
.b-form-tag > button.b-form-tag-remove {
  color: inherit;
  font-size: 125%;
  line-height: 1;
  float: none;
  margin-left: 0.25rem;
}

.form-control-sm .b-form-tag {
  line-height: 1.5;
}

.form-control-lg .b-form-tag {
  line-height: 1.5;
}

.media-aside {
  display: flex;
  margin-right: 1rem;
}

.media-aside-right {
  margin-right: 0;
  margin-left: 1rem;
}

.modal-backdrop {
  opacity: 0.5;
}

.b-pagination-pills .page-item .page-link {
  border-radius: 50rem !important;
  margin-left: 0.25rem;
  line-height: 1;
}
.b-pagination-pills .page-item:first-child .page-link {
  margin-left: 0;
}

.popover.b-popover {
  display: block;
  opacity: 1;
  outline: 0;
}
.popover.b-popover.fade:not(.show) {
  opacity: 0;
}
.popover.b-popover.show {
  opacity: 1;
}

.b-popover-primary.popover {
  background-color: #daefed;
  border-color: #cbe9e6;
}
.b-popover-primary.bs-popover-top > .arrow::before, .b-popover-primary.bs-popover-auto[x-placement^=top] > .arrow::before {
  border-top-color: #cbe9e6;
}
.b-popover-primary.bs-popover-top > .arrow::after, .b-popover-primary.bs-popover-auto[x-placement^=top] > .arrow::after {
  border-top-color: #daefed;
}
.b-popover-primary.bs-popover-right > .arrow::before, .b-popover-primary.bs-popover-auto[x-placement^=right] > .arrow::before {
  border-right-color: #cbe9e6;
}
.b-popover-primary.bs-popover-right > .arrow::after, .b-popover-primary.bs-popover-auto[x-placement^=right] > .arrow::after {
  border-right-color: #daefed;
}
.b-popover-primary.bs-popover-bottom > .arrow::before, .b-popover-primary.bs-popover-auto[x-placement^=bottom] > .arrow::before {
  border-bottom-color: #cbe9e6;
}
.b-popover-primary.bs-popover-bottom > .arrow::after, .b-popover-primary.bs-popover-auto[x-placement^=bottom] > .arrow::after {
  border-bottom-color: #cfeae8;
}
.b-popover-primary.bs-popover-bottom .popover-header::before, .b-popover-primary.bs-popover-auto[x-placement^=bottom] .popover-header::before {
  border-bottom-color: #cfeae8;
}
.b-popover-primary.bs-popover-left > .arrow::before, .b-popover-primary.bs-popover-auto[x-placement^=left] > .arrow::before {
  border-left-color: #cbe9e6;
}
.b-popover-primary.bs-popover-left > .arrow::after, .b-popover-primary.bs-popover-auto[x-placement^=left] > .arrow::after {
  border-left-color: #daefed;
}
.b-popover-primary .popover-header {
  color: #221e1f;
  background-color: #cfeae8;
  border-bottom-color: #bee3df;
}
.b-popover-primary .popover-body {
  color: #235c56;
}

.b-popover-secondary.popover {
  background-color: #d3d2d2;
  border-color: #c1c0c0;
}
.b-popover-secondary.bs-popover-top > .arrow::before, .b-popover-secondary.bs-popover-auto[x-placement^=top] > .arrow::before {
  border-top-color: #c1c0c0;
}
.b-popover-secondary.bs-popover-top > .arrow::after, .b-popover-secondary.bs-popover-auto[x-placement^=top] > .arrow::after {
  border-top-color: #d3d2d2;
}
.b-popover-secondary.bs-popover-right > .arrow::before, .b-popover-secondary.bs-popover-auto[x-placement^=right] > .arrow::before {
  border-right-color: #c1c0c0;
}
.b-popover-secondary.bs-popover-right > .arrow::after, .b-popover-secondary.bs-popover-auto[x-placement^=right] > .arrow::after {
  border-right-color: #d3d2d2;
}
.b-popover-secondary.bs-popover-bottom > .arrow::before, .b-popover-secondary.bs-popover-auto[x-placement^=bottom] > .arrow::before {
  border-bottom-color: #c1c0c0;
}
.b-popover-secondary.bs-popover-bottom > .arrow::after, .b-popover-secondary.bs-popover-auto[x-placement^=bottom] > .arrow::after {
  border-bottom-color: #cbcaca;
}
.b-popover-secondary.bs-popover-bottom .popover-header::before, .b-popover-secondary.bs-popover-auto[x-placement^=bottom] .popover-header::before {
  border-bottom-color: #cbcaca;
}
.b-popover-secondary.bs-popover-left > .arrow::before, .b-popover-secondary.bs-popover-auto[x-placement^=left] > .arrow::before {
  border-left-color: #c1c0c0;
}
.b-popover-secondary.bs-popover-left > .arrow::after, .b-popover-secondary.bs-popover-auto[x-placement^=left] > .arrow::after {
  border-left-color: #d3d2d2;
}
.b-popover-secondary .popover-header {
  color: #221e1f;
  background-color: #cbcaca;
  border-bottom-color: #bfbdbd;
}
.b-popover-secondary .popover-body {
  color: #121010;
}

.b-popover-success.popover {
  background-color: #edf5d5;
  border-color: #e6f0c4;
}
.b-popover-success.bs-popover-top > .arrow::before, .b-popover-success.bs-popover-auto[x-placement^=top] > .arrow::before {
  border-top-color: #e6f0c4;
}
.b-popover-success.bs-popover-top > .arrow::after, .b-popover-success.bs-popover-auto[x-placement^=top] > .arrow::after {
  border-top-color: #edf5d5;
}
.b-popover-success.bs-popover-right > .arrow::before, .b-popover-success.bs-popover-auto[x-placement^=right] > .arrow::before {
  border-right-color: #e6f0c4;
}
.b-popover-success.bs-popover-right > .arrow::after, .b-popover-success.bs-popover-auto[x-placement^=right] > .arrow::after {
  border-right-color: #edf5d5;
}
.b-popover-success.bs-popover-bottom > .arrow::before, .b-popover-success.bs-popover-auto[x-placement^=bottom] > .arrow::before {
  border-bottom-color: #e6f0c4;
}
.b-popover-success.bs-popover-bottom > .arrow::after, .b-popover-success.bs-popover-auto[x-placement^=bottom] > .arrow::after {
  border-bottom-color: #e8f2c9;
}
.b-popover-success.bs-popover-bottom .popover-header::before, .b-popover-success.bs-popover-auto[x-placement^=bottom] .popover-header::before {
  border-bottom-color: #e8f2c9;
}
.b-popover-success.bs-popover-left > .arrow::before, .b-popover-success.bs-popover-auto[x-placement^=left] > .arrow::before {
  border-left-color: #e6f0c4;
}
.b-popover-success.bs-popover-left > .arrow::after, .b-popover-success.bs-popover-auto[x-placement^=left] > .arrow::after {
  border-left-color: #edf5d5;
}
.b-popover-success .popover-header {
  color: #221e1f;
  background-color: #e8f2c9;
  border-bottom-color: #dfedb4;
}
.b-popover-success .popover-body {
  color: #566a17;
}

.b-popover-info.popover {
  background-color: #def3fc;
  border-color: #d1effb;
}
.b-popover-info.bs-popover-top > .arrow::before, .b-popover-info.bs-popover-auto[x-placement^=top] > .arrow::before {
  border-top-color: #d1effb;
}
.b-popover-info.bs-popover-top > .arrow::after, .b-popover-info.bs-popover-auto[x-placement^=top] > .arrow::after {
  border-top-color: #def3fc;
}
.b-popover-info.bs-popover-right > .arrow::before, .b-popover-info.bs-popover-auto[x-placement^=right] > .arrow::before {
  border-right-color: #d1effb;
}
.b-popover-info.bs-popover-right > .arrow::after, .b-popover-info.bs-popover-auto[x-placement^=right] > .arrow::after {
  border-right-color: #def3fc;
}
.b-popover-info.bs-popover-bottom > .arrow::before, .b-popover-info.bs-popover-auto[x-placement^=bottom] > .arrow::before {
  border-bottom-color: #d1effb;
}
.b-popover-info.bs-popover-bottom > .arrow::after, .b-popover-info.bs-popover-auto[x-placement^=bottom] > .arrow::after {
  border-bottom-color: #d0eefb;
}
.b-popover-info.bs-popover-bottom .popover-header::before, .b-popover-info.bs-popover-auto[x-placement^=bottom] .popover-header::before {
  border-bottom-color: #d0eefb;
}
.b-popover-info.bs-popover-left > .arrow::before, .b-popover-info.bs-popover-auto[x-placement^=left] > .arrow::before {
  border-left-color: #d1effb;
}
.b-popover-info.bs-popover-left > .arrow::after, .b-popover-info.bs-popover-auto[x-placement^=left] > .arrow::after {
  border-left-color: #def3fc;
}
.b-popover-info .popover-header {
  color: #221e1f;
  background-color: #d0eefb;
  border-bottom-color: #b9e5f9;
}
.b-popover-info .popover-body {
  color: #2f667e;
}

.b-popover-warning.popover {
  background-color: #faecd4;
  border-color: #f8e5c3;
}
.b-popover-warning.bs-popover-top > .arrow::before, .b-popover-warning.bs-popover-auto[x-placement^=top] > .arrow::before {
  border-top-color: #f8e5c3;
}
.b-popover-warning.bs-popover-top > .arrow::after, .b-popover-warning.bs-popover-auto[x-placement^=top] > .arrow::after {
  border-top-color: #faecd4;
}
.b-popover-warning.bs-popover-right > .arrow::before, .b-popover-warning.bs-popover-auto[x-placement^=right] > .arrow::before {
  border-right-color: #f8e5c3;
}
.b-popover-warning.bs-popover-right > .arrow::after, .b-popover-warning.bs-popover-auto[x-placement^=right] > .arrow::after {
  border-right-color: #faecd4;
}
.b-popover-warning.bs-popover-bottom > .arrow::before, .b-popover-warning.bs-popover-auto[x-placement^=bottom] > .arrow::before {
  border-bottom-color: #f8e5c3;
}
.b-popover-warning.bs-popover-bottom > .arrow::after, .b-popover-warning.bs-popover-auto[x-placement^=bottom] > .arrow::after {
  border-bottom-color: #f8e6c6;
}
.b-popover-warning.bs-popover-bottom .popover-header::before, .b-popover-warning.bs-popover-auto[x-placement^=bottom] .popover-header::before {
  border-bottom-color: #f8e6c6;
}
.b-popover-warning.bs-popover-left > .arrow::before, .b-popover-warning.bs-popover-auto[x-placement^=left] > .arrow::before {
  border-left-color: #f8e5c3;
}
.b-popover-warning.bs-popover-left > .arrow::after, .b-popover-warning.bs-popover-auto[x-placement^=left] > .arrow::after {
  border-left-color: #faecd4;
}
.b-popover-warning .popover-header {
  color: #221e1f;
  background-color: #f8e6c6;
  border-bottom-color: #f6dcaf;
}
.b-popover-warning .popover-body {
  color: #775416;
}

.b-popover-danger.popover {
  background-color: #f6d7d9;
  border-color: #f3c6ca;
}
.b-popover-danger.bs-popover-top > .arrow::before, .b-popover-danger.bs-popover-auto[x-placement^=top] > .arrow::before {
  border-top-color: #f3c6ca;
}
.b-popover-danger.bs-popover-top > .arrow::after, .b-popover-danger.bs-popover-auto[x-placement^=top] > .arrow::after {
  border-top-color: #f6d7d9;
}
.b-popover-danger.bs-popover-right > .arrow::before, .b-popover-danger.bs-popover-auto[x-placement^=right] > .arrow::before {
  border-right-color: #f3c6ca;
}
.b-popover-danger.bs-popover-right > .arrow::after, .b-popover-danger.bs-popover-auto[x-placement^=right] > .arrow::after {
  border-right-color: #f6d7d9;
}
.b-popover-danger.bs-popover-bottom > .arrow::before, .b-popover-danger.bs-popover-auto[x-placement^=bottom] > .arrow::before {
  border-bottom-color: #f3c6ca;
}
.b-popover-danger.bs-popover-bottom > .arrow::after, .b-popover-danger.bs-popover-auto[x-placement^=bottom] > .arrow::after {
  border-bottom-color: #f3cbcd;
}
.b-popover-danger.bs-popover-bottom .popover-header::before, .b-popover-danger.bs-popover-auto[x-placement^=bottom] .popover-header::before {
  border-bottom-color: #f3cbcd;
}
.b-popover-danger.bs-popover-left > .arrow::before, .b-popover-danger.bs-popover-auto[x-placement^=left] > .arrow::before {
  border-left-color: #f3c6ca;
}
.b-popover-danger.bs-popover-left > .arrow::after, .b-popover-danger.bs-popover-auto[x-placement^=left] > .arrow::after {
  border-left-color: #f6d7d9;
}
.b-popover-danger .popover-header {
  color: #221e1f;
  background-color: #f3cbcd;
  border-bottom-color: #efb6b9;
}
.b-popover-danger .popover-body {
  color: #6e1c23;
}

.b-popover-light.popover {
  background-color: #fbfbfb;
  border-color: #faf9f9;
}
.b-popover-light.bs-popover-top > .arrow::before, .b-popover-light.bs-popover-auto[x-placement^=top] > .arrow::before {
  border-top-color: #faf9f9;
}
.b-popover-light.bs-popover-top > .arrow::after, .b-popover-light.bs-popover-auto[x-placement^=top] > .arrow::after {
  border-top-color: #fbfbfb;
}
.b-popover-light.bs-popover-right > .arrow::before, .b-popover-light.bs-popover-auto[x-placement^=right] > .arrow::before {
  border-right-color: #faf9f9;
}
.b-popover-light.bs-popover-right > .arrow::after, .b-popover-light.bs-popover-auto[x-placement^=right] > .arrow::after {
  border-right-color: #fbfbfb;
}
.b-popover-light.bs-popover-bottom > .arrow::before, .b-popover-light.bs-popover-auto[x-placement^=bottom] > .arrow::before {
  border-bottom-color: #faf9f9;
}
.b-popover-light.bs-popover-bottom > .arrow::after, .b-popover-light.bs-popover-auto[x-placement^=bottom] > .arrow::after {
  border-bottom-color: #f3f3f3;
}
.b-popover-light.bs-popover-bottom .popover-header::before, .b-popover-light.bs-popover-auto[x-placement^=bottom] .popover-header::before {
  border-bottom-color: #f3f3f3;
}
.b-popover-light.bs-popover-left > .arrow::before, .b-popover-light.bs-popover-auto[x-placement^=left] > .arrow::before {
  border-left-color: #faf9f9;
}
.b-popover-light.bs-popover-left > .arrow::after, .b-popover-light.bs-popover-auto[x-placement^=left] > .arrow::after {
  border-left-color: #fbfbfb;
}
.b-popover-light .popover-header {
  color: #221e1f;
  background-color: #f3f3f3;
  border-bottom-color: #e7e7e7;
}
.b-popover-light .popover-body {
  color: #7b7a7a;
}

.b-popover-dark.popover {
  background-color: #d3d6d6;
  border-color: #c1c5c6;
}
.b-popover-dark.bs-popover-top > .arrow::before, .b-popover-dark.bs-popover-auto[x-placement^=top] > .arrow::before {
  border-top-color: #c1c5c6;
}
.b-popover-dark.bs-popover-top > .arrow::after, .b-popover-dark.bs-popover-auto[x-placement^=top] > .arrow::after {
  border-top-color: #d3d6d6;
}
.b-popover-dark.bs-popover-right > .arrow::before, .b-popover-dark.bs-popover-auto[x-placement^=right] > .arrow::before {
  border-right-color: #c1c5c6;
}
.b-popover-dark.bs-popover-right > .arrow::after, .b-popover-dark.bs-popover-auto[x-placement^=right] > .arrow::after {
  border-right-color: #d3d6d6;
}
.b-popover-dark.bs-popover-bottom > .arrow::before, .b-popover-dark.bs-popover-auto[x-placement^=bottom] > .arrow::before {
  border-bottom-color: #c1c5c6;
}
.b-popover-dark.bs-popover-bottom > .arrow::after, .b-popover-dark.bs-popover-auto[x-placement^=bottom] > .arrow::after {
  border-bottom-color: #cbcfcf;
}
.b-popover-dark.bs-popover-bottom .popover-header::before, .b-popover-dark.bs-popover-auto[x-placement^=bottom] .popover-header::before {
  border-bottom-color: #cbcfcf;
}
.b-popover-dark.bs-popover-left > .arrow::before, .b-popover-dark.bs-popover-auto[x-placement^=left] > .arrow::before {
  border-left-color: #c1c5c6;
}
.b-popover-dark.bs-popover-left > .arrow::after, .b-popover-dark.bs-popover-auto[x-placement^=left] > .arrow::after {
  border-left-color: #d3d6d6;
}
.b-popover-dark .popover-header {
  color: #221e1f;
  background-color: #cbcfcf;
  border-bottom-color: #bec2c2;
}
.b-popover-dark .popover-body {
  color: #11191b;
}

.b-sidebar-outer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  overflow: visible;
  z-index: calc(1030 + 5);
}

.b-sidebar-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  opacity: 0.6;
}

.b-sidebar {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  width: 320px;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  margin: 0;
  outline: 0;
  transform: translateX(0);
}
.b-sidebar.slide {
  transition: transform 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .b-sidebar.slide {
    transition: none;
  }
}
.b-sidebar:not(.b-sidebar-right) {
  left: 0;
  right: auto;
}
.b-sidebar:not(.b-sidebar-right).slide:not(.show) {
  transform: translateX(-100%);
}
.b-sidebar:not(.b-sidebar-right) > .b-sidebar-header .close {
  margin-left: auto;
}
.b-sidebar.b-sidebar-right {
  left: auto;
  right: 0;
}
.b-sidebar.b-sidebar-right.slide:not(.show) {
  transform: translateX(100%);
}
.b-sidebar.b-sidebar-right > .b-sidebar-header .close {
  margin-right: auto;
}
.b-sidebar > .b-sidebar-header {
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  display: flex;
  flex-direction: row;
  flex-grow: 0;
  align-items: center;
}
[dir=rtl] .b-sidebar > .b-sidebar-header {
  flex-direction: row-reverse;
}

.b-sidebar > .b-sidebar-header .close {
  float: none;
  font-size: 1.5rem;
}
.b-sidebar > .b-sidebar-body {
  flex-grow: 1;
  height: 100%;
  overflow-y: auto;
}
.b-sidebar > .b-sidebar-footer {
  flex-grow: 0;
}

.b-skeleton-wrapper {
  cursor: wait;
}

.b-skeleton {
  position: relative;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.12);
  cursor: wait;
  mask-image: radial-gradient(white, black);
}
.b-skeleton::before {
  content: " ";
}

.b-skeleton-text {
  height: 0.875rem;
  margin-bottom: 0.25rem;
  border-radius: 0.25rem;
}

.b-skeleton-button {
  width: 75px;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 1.5rem;
}

.b-skeleton-avatar {
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
}

.b-skeleton-input {
  height: calc(1.5em + 0.75rem + 4px);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  border: #ECEBEB solid 2px;
  border-radius: 0.25rem;
}

.b-skeleton-icon-wrapper svg {
  color: rgba(0, 0, 0, 0.12);
}

.b-skeleton-img {
  height: 100%;
  width: 100%;
}

.b-skeleton-animate-wave::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background: linear-gradient(90deg, transparent, hsla(0deg, 0%, 100%, 0.4), transparent);
  animation: b-skeleton-animate-wave 1.75s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .b-skeleton-animate-wave::after {
    background: none;
    animation: none;
  }
}

@keyframes b-skeleton-animate-wave {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
.b-skeleton-animate-fade {
  animation: b-skeleton-animate-fade 0.875s ease-in-out alternate infinite;
}
@media (prefers-reduced-motion: reduce) {
  .b-skeleton-animate-fade {
    animation: none;
  }
}

@keyframes b-skeleton-animate-fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}
.b-skeleton-animate-throb {
  animation: b-skeleton-animate-throb 0.875s ease-in alternate infinite;
}
@media (prefers-reduced-motion: reduce) {
  .b-skeleton-animate-throb {
    animation: none;
  }
}

@keyframes b-skeleton-animate-throb {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.975);
  }
}
.table.b-table.b-table-fixed {
  table-layout: fixed;
}
.table.b-table.b-table-no-border-collapse {
  border-collapse: separate;
  border-spacing: 0;
}
.table.b-table[aria-busy=true] {
  opacity: 0.55;
}
.table.b-table > tbody > tr.b-table-details > td {
  border-top: none !important;
}
.table.b-table > caption {
  caption-side: bottom;
}
.table.b-table.b-table-caption-top > caption {
  caption-side: top !important;
}
.table.b-table > tbody > .table-active,
.table.b-table > tbody > .table-active > th,
.table.b-table > tbody > .table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}
.table.b-table.table-hover > tbody > tr.table-active:hover td,
.table.b-table.table-hover > tbody > tr.table-active:hover th {
  color: #292b2c;
  background-image: linear-gradient(rgba(0, 0, 0, 0.075), rgba(0, 0, 0, 0.075));
  background-repeat: no-repeat;
}
.table.b-table > tbody > .bg-active,
.table.b-table > tbody > .bg-active > th,
.table.b-table > tbody > .bg-active > td {
  background-color: rgba(255, 255, 255, 0.075) !important;
}
.table.b-table.table-hover.table-dark > tbody > tr.bg-active:hover td,
.table.b-table.table-hover.table-dark > tbody > tr.bg-active:hover th {
  color: #ffffff;
  background-image: linear-gradient(rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.075));
  background-repeat: no-repeat;
}

.b-table-sticky-header,
.table-responsive,
[class*=table-responsive-] {
  margin-bottom: 1rem;
}
.b-table-sticky-header > .table,
.table-responsive > .table,
[class*=table-responsive-] > .table {
  margin-bottom: 0;
}

.b-table-sticky-header {
  overflow-y: auto;
  max-height: 300px;
}

@media print {
  .b-table-sticky-header {
    overflow-y: visible !important;
    max-height: none !important;
  }
}
@supports (position: sticky) {
  .b-table-sticky-header > .table.b-table > thead > tr > th {
    position: sticky;
    top: 0;
    z-index: 2;
  }
  .b-table-sticky-header > .table.b-table > thead > tr > .b-table-sticky-column,
.b-table-sticky-header > .table.b-table > tbody > tr > .b-table-sticky-column,
.b-table-sticky-header > .table.b-table > tfoot > tr > .b-table-sticky-column,
.table-responsive > .table.b-table > thead > tr > .b-table-sticky-column,
.table-responsive > .table.b-table > tbody > tr > .b-table-sticky-column,
.table-responsive > .table.b-table > tfoot > tr > .b-table-sticky-column,
[class*=table-responsive-] > .table.b-table > thead > tr > .b-table-sticky-column,
[class*=table-responsive-] > .table.b-table > tbody > tr > .b-table-sticky-column,
[class*=table-responsive-] > .table.b-table > tfoot > tr > .b-table-sticky-column {
    position: sticky;
    left: 0;
  }
  .b-table-sticky-header > .table.b-table > thead > tr > .b-table-sticky-column,
.table-responsive > .table.b-table > thead > tr > .b-table-sticky-column,
[class*=table-responsive-] > .table.b-table > thead > tr > .b-table-sticky-column {
    z-index: 5;
  }
  .b-table-sticky-header > .table.b-table > tbody > tr > .b-table-sticky-column,
.b-table-sticky-header > .table.b-table > tfoot > tr > .b-table-sticky-column,
.table-responsive > .table.b-table > tbody > tr > .b-table-sticky-column,
.table-responsive > .table.b-table > tfoot > tr > .b-table-sticky-column,
[class*=table-responsive-] > .table.b-table > tbody > tr > .b-table-sticky-column,
[class*=table-responsive-] > .table.b-table > tfoot > tr > .b-table-sticky-column {
    z-index: 2;
  }
  .table.b-table > thead > tr > .table-b-table-default,
.table.b-table > tbody > tr > .table-b-table-default,
.table.b-table > tfoot > tr > .table-b-table-default {
    color: #292b2c;
    background-color: #ffffff;
  }
  .table.b-table.table-dark > thead > tr > .bg-b-table-default,
.table.b-table.table-dark > tbody > tr > .bg-b-table-default,
.table.b-table.table-dark > tfoot > tr > .bg-b-table-default {
    color: #ffffff;
    background-color: #292b2c;
  }
  .table.b-table.table-striped > tbody > tr:nth-of-type(odd) > .table-b-table-default {
    background-image: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05));
    background-repeat: no-repeat;
  }
  .table.b-table.table-striped.table-dark > tbody > tr:nth-of-type(odd) > .bg-b-table-default {
    background-image: linear-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05));
    background-repeat: no-repeat;
  }
  .table.b-table.table-hover > tbody > tr:hover > .table-b-table-default {
    color: #292b2c;
    background-image: linear-gradient(rgba(0, 0, 0, 0.075), rgba(0, 0, 0, 0.075));
    background-repeat: no-repeat;
  }
  .table.b-table.table-hover.table-dark > tbody > tr:hover > .bg-b-table-default {
    color: #ffffff;
    background-image: linear-gradient(rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.075));
    background-repeat: no-repeat;
  }
}
.table.b-table > thead > tr > [aria-sort],
.table.b-table > tfoot > tr > [aria-sort] {
  cursor: pointer;
  background-image: none;
  background-repeat: no-repeat;
  background-size: 0.65em 1em;
}
.table.b-table > thead > tr > [aria-sort]:not(.b-table-sort-icon-left),
.table.b-table > tfoot > tr > [aria-sort]:not(.b-table-sort-icon-left) {
  background-position: right calc(0.5rem / 2) center;
  padding-right: calc(0.5rem + 0.65em);
}
.table.b-table > thead > tr > [aria-sort].b-table-sort-icon-left,
.table.b-table > tfoot > tr > [aria-sort].b-table-sort-icon-left {
  background-position: left calc(0.5rem / 2) center;
  padding-left: calc(0.5rem + 0.65em);
}
.table.b-table > thead > tr > [aria-sort=none],
.table.b-table > tfoot > tr > [aria-sort=none] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' view-box='0 0 101 101' preserveAspectRatio='none'%3e%3cpath fill='black' opacity='.3' d='M51 1l25 23 24 22H1l25-22zM51 101l25-23 24-22H1l25 22z'/%3e%3c/svg%3e");
}
.table.b-table > thead > tr > [aria-sort=ascending],
.table.b-table > tfoot > tr > [aria-sort=ascending] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' view-box='0 0 101 101' preserveAspectRatio='none'%3e%3cpath fill='black' d='M51 1l25 23 24 22H1l25-22z'/%3e%3cpath fill='black' opacity='.3' d='M51 101l25-23 24-22H1l25 22z'/%3e%3c/svg%3e");
}
.table.b-table > thead > tr > [aria-sort=descending],
.table.b-table > tfoot > tr > [aria-sort=descending] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' view-box='0 0 101 101' preserveAspectRatio='none'%3e%3cpath fill='black' opacity='.3' d='M51 1l25 23 24 22H1l25-22z'/%3e%3cpath fill='black' d='M51 101l25-23 24-22H1l25 22z'/%3e%3c/svg%3e");
}
.table.b-table.table-dark > thead > tr > [aria-sort=none], .table.b-table.table-dark > tfoot > tr > [aria-sort=none],
.table.b-table > .thead-dark > tr > [aria-sort=none] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' view-box='0 0 101 101' preserveAspectRatio='none'%3e%3cpath fill='white' opacity='.3' d='M51 1l25 23 24 22H1l25-22zM51 101l25-23 24-22H1l25 22z'/%3e%3c/svg%3e");
}
.table.b-table.table-dark > thead > tr > [aria-sort=ascending], .table.b-table.table-dark > tfoot > tr > [aria-sort=ascending],
.table.b-table > .thead-dark > tr > [aria-sort=ascending] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' view-box='0 0 101 101' preserveAspectRatio='none'%3e%3cpath fill='white' d='M51 1l25 23 24 22H1l25-22z'/%3e%3cpath fill='white' opacity='.3' d='M51 101l25-23 24-22H1l25 22z'/%3e%3c/svg%3e");
}
.table.b-table.table-dark > thead > tr > [aria-sort=descending], .table.b-table.table-dark > tfoot > tr > [aria-sort=descending],
.table.b-table > .thead-dark > tr > [aria-sort=descending] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' view-box='0 0 101 101' preserveAspectRatio='none'%3e%3cpath fill='white' opacity='.3' d='M51 1l25 23 24 22H1l25-22z'/%3e%3cpath fill='white' d='M51 101l25-23 24-22H1l25 22z'/%3e%3c/svg%3e");
}
.table.b-table > thead > tr > .table-dark[aria-sort=none],
.table.b-table > tfoot > tr > .table-dark[aria-sort=none] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' view-box='0 0 101 101' preserveAspectRatio='none'%3e%3cpath fill='white' opacity='.3' d='M51 1l25 23 24 22H1l25-22zM51 101l25-23 24-22H1l25 22z'/%3e%3c/svg%3e");
}
.table.b-table > thead > tr > .table-dark[aria-sort=ascending],
.table.b-table > tfoot > tr > .table-dark[aria-sort=ascending] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' view-box='0 0 101 101' preserveAspectRatio='none'%3e%3cpath fill='white' d='M51 1l25 23 24 22H1l25-22z'/%3e%3cpath fill='white' opacity='.3' d='M51 101l25-23 24-22H1l25 22z'/%3e%3c/svg%3e");
}
.table.b-table > thead > tr > .table-dark[aria-sort=descending],
.table.b-table > tfoot > tr > .table-dark[aria-sort=descending] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' view-box='0 0 101 101' preserveAspectRatio='none'%3e%3cpath fill='white' opacity='.3' d='M51 1l25 23 24 22H1l25-22z'/%3e%3cpath fill='white' d='M51 101l25-23 24-22H1l25 22z'/%3e%3c/svg%3e");
}
.table.b-table.table-sm > thead > tr > [aria-sort]:not(.b-table-sort-icon-left),
.table.b-table.table-sm > tfoot > tr > [aria-sort]:not(.b-table-sort-icon-left) {
  background-position: right calc(0.3rem / 2) center;
  padding-right: calc(0.3rem + 0.65em);
}
.table.b-table.table-sm > thead > tr > [aria-sort].b-table-sort-icon-left,
.table.b-table.table-sm > tfoot > tr > [aria-sort].b-table-sort-icon-left {
  background-position: left calc(0.3rem / 2) center;
  padding-left: calc(0.3rem + 0.65em);
}

.table.b-table.b-table-selectable:not(.b-table-selectable-no-click) > tbody > tr {
  cursor: pointer;
}
.table.b-table.b-table-selectable:not(.b-table-selectable-no-click).b-table-selecting.b-table-select-range > tbody > tr {
  user-select: none;
}

@media (max-width: 575.98px) {
  .table.b-table.b-table-stacked-sm {
    display: block;
    width: 100%;
  }
  .table.b-table.b-table-stacked-sm > caption,
.table.b-table.b-table-stacked-sm > tbody,
.table.b-table.b-table-stacked-sm > tbody > tr,
.table.b-table.b-table-stacked-sm > tbody > tr > td,
.table.b-table.b-table-stacked-sm > tbody > tr > th {
    display: block;
  }
  .table.b-table.b-table-stacked-sm > thead,
.table.b-table.b-table-stacked-sm > tfoot {
    display: none;
  }
  .table.b-table.b-table-stacked-sm > thead > tr.b-table-top-row,
.table.b-table.b-table-stacked-sm > thead > tr.b-table-bottom-row,
.table.b-table.b-table-stacked-sm > tfoot > tr.b-table-top-row,
.table.b-table.b-table-stacked-sm > tfoot > tr.b-table-bottom-row {
    display: none;
  }
  .table.b-table.b-table-stacked-sm > caption {
    caption-side: top !important;
  }
  .table.b-table.b-table-stacked-sm > tbody > tr > [data-label]::before {
    content: attr(data-label);
    width: 40%;
    float: left;
    text-align: right;
    overflow-wrap: break-word;
    font-weight: bold;
    font-style: normal;
    padding: 0 calc(1rem / 2) 0 0;
    margin: 0;
  }
  .table.b-table.b-table-stacked-sm > tbody > tr > [data-label]::after {
    display: block;
    clear: both;
    content: "";
  }
  .table.b-table.b-table-stacked-sm > tbody > tr > [data-label] > div {
    display: inline-block;
    width: calc(100% - 40%);
    padding: 0 0 0 calc(1rem / 2);
    margin: 0;
  }
  .table.b-table.b-table-stacked-sm > tbody > tr.top-row, .table.b-table.b-table-stacked-sm > tbody > tr.bottom-row {
    display: none;
  }
  .table.b-table.b-table-stacked-sm > tbody > tr > :first-child {
    border-top-width: 15px;
  }
  .table.b-table.b-table-stacked-sm > tbody > tr > [rowspan] + td,
.table.b-table.b-table-stacked-sm > tbody > tr > [rowspan] + th {
    border-top-width: 15px;
  }
}
@media (max-width: 767.98px) {
  .table.b-table.b-table-stacked-md {
    display: block;
    width: 100%;
  }
  .table.b-table.b-table-stacked-md > caption,
.table.b-table.b-table-stacked-md > tbody,
.table.b-table.b-table-stacked-md > tbody > tr,
.table.b-table.b-table-stacked-md > tbody > tr > td,
.table.b-table.b-table-stacked-md > tbody > tr > th {
    display: block;
  }
  .table.b-table.b-table-stacked-md > thead,
.table.b-table.b-table-stacked-md > tfoot {
    display: none;
  }
  .table.b-table.b-table-stacked-md > thead > tr.b-table-top-row,
.table.b-table.b-table-stacked-md > thead > tr.b-table-bottom-row,
.table.b-table.b-table-stacked-md > tfoot > tr.b-table-top-row,
.table.b-table.b-table-stacked-md > tfoot > tr.b-table-bottom-row {
    display: none;
  }
  .table.b-table.b-table-stacked-md > caption {
    caption-side: top !important;
  }
  .table.b-table.b-table-stacked-md > tbody > tr > [data-label]::before {
    content: attr(data-label);
    width: 40%;
    float: left;
    text-align: right;
    overflow-wrap: break-word;
    font-weight: bold;
    font-style: normal;
    padding: 0 calc(1rem / 2) 0 0;
    margin: 0;
  }
  .table.b-table.b-table-stacked-md > tbody > tr > [data-label]::after {
    display: block;
    clear: both;
    content: "";
  }
  .table.b-table.b-table-stacked-md > tbody > tr > [data-label] > div {
    display: inline-block;
    width: calc(100% - 40%);
    padding: 0 0 0 calc(1rem / 2);
    margin: 0;
  }
  .table.b-table.b-table-stacked-md > tbody > tr.top-row, .table.b-table.b-table-stacked-md > tbody > tr.bottom-row {
    display: none;
  }
  .table.b-table.b-table-stacked-md > tbody > tr > :first-child {
    border-top-width: 15px;
  }
  .table.b-table.b-table-stacked-md > tbody > tr > [rowspan] + td,
.table.b-table.b-table-stacked-md > tbody > tr > [rowspan] + th {
    border-top-width: 15px;
  }
}
@media (max-width: 991.98px) {
  .table.b-table.b-table-stacked-lg {
    display: block;
    width: 100%;
  }
  .table.b-table.b-table-stacked-lg > caption,
.table.b-table.b-table-stacked-lg > tbody,
.table.b-table.b-table-stacked-lg > tbody > tr,
.table.b-table.b-table-stacked-lg > tbody > tr > td,
.table.b-table.b-table-stacked-lg > tbody > tr > th {
    display: block;
  }
  .table.b-table.b-table-stacked-lg > thead,
.table.b-table.b-table-stacked-lg > tfoot {
    display: none;
  }
  .table.b-table.b-table-stacked-lg > thead > tr.b-table-top-row,
.table.b-table.b-table-stacked-lg > thead > tr.b-table-bottom-row,
.table.b-table.b-table-stacked-lg > tfoot > tr.b-table-top-row,
.table.b-table.b-table-stacked-lg > tfoot > tr.b-table-bottom-row {
    display: none;
  }
  .table.b-table.b-table-stacked-lg > caption {
    caption-side: top !important;
  }
  .table.b-table.b-table-stacked-lg > tbody > tr > [data-label]::before {
    content: attr(data-label);
    width: 40%;
    float: left;
    text-align: right;
    overflow-wrap: break-word;
    font-weight: bold;
    font-style: normal;
    padding: 0 calc(1rem / 2) 0 0;
    margin: 0;
  }
  .table.b-table.b-table-stacked-lg > tbody > tr > [data-label]::after {
    display: block;
    clear: both;
    content: "";
  }
  .table.b-table.b-table-stacked-lg > tbody > tr > [data-label] > div {
    display: inline-block;
    width: calc(100% - 40%);
    padding: 0 0 0 calc(1rem / 2);
    margin: 0;
  }
  .table.b-table.b-table-stacked-lg > tbody > tr.top-row, .table.b-table.b-table-stacked-lg > tbody > tr.bottom-row {
    display: none;
  }
  .table.b-table.b-table-stacked-lg > tbody > tr > :first-child {
    border-top-width: 15px;
  }
  .table.b-table.b-table-stacked-lg > tbody > tr > [rowspan] + td,
.table.b-table.b-table-stacked-lg > tbody > tr > [rowspan] + th {
    border-top-width: 15px;
  }
}
@media (max-width: 1199.98px) {
  .table.b-table.b-table-stacked-xl {
    display: block;
    width: 100%;
  }
  .table.b-table.b-table-stacked-xl > caption,
.table.b-table.b-table-stacked-xl > tbody,
.table.b-table.b-table-stacked-xl > tbody > tr,
.table.b-table.b-table-stacked-xl > tbody > tr > td,
.table.b-table.b-table-stacked-xl > tbody > tr > th {
    display: block;
  }
  .table.b-table.b-table-stacked-xl > thead,
.table.b-table.b-table-stacked-xl > tfoot {
    display: none;
  }
  .table.b-table.b-table-stacked-xl > thead > tr.b-table-top-row,
.table.b-table.b-table-stacked-xl > thead > tr.b-table-bottom-row,
.table.b-table.b-table-stacked-xl > tfoot > tr.b-table-top-row,
.table.b-table.b-table-stacked-xl > tfoot > tr.b-table-bottom-row {
    display: none;
  }
  .table.b-table.b-table-stacked-xl > caption {
    caption-side: top !important;
  }
  .table.b-table.b-table-stacked-xl > tbody > tr > [data-label]::before {
    content: attr(data-label);
    width: 40%;
    float: left;
    text-align: right;
    overflow-wrap: break-word;
    font-weight: bold;
    font-style: normal;
    padding: 0 calc(1rem / 2) 0 0;
    margin: 0;
  }
  .table.b-table.b-table-stacked-xl > tbody > tr > [data-label]::after {
    display: block;
    clear: both;
    content: "";
  }
  .table.b-table.b-table-stacked-xl > tbody > tr > [data-label] > div {
    display: inline-block;
    width: calc(100% - 40%);
    padding: 0 0 0 calc(1rem / 2);
    margin: 0;
  }
  .table.b-table.b-table-stacked-xl > tbody > tr.top-row, .table.b-table.b-table-stacked-xl > tbody > tr.bottom-row {
    display: none;
  }
  .table.b-table.b-table-stacked-xl > tbody > tr > :first-child {
    border-top-width: 15px;
  }
  .table.b-table.b-table-stacked-xl > tbody > tr > [rowspan] + td,
.table.b-table.b-table-stacked-xl > tbody > tr > [rowspan] + th {
    border-top-width: 15px;
  }
}
.table.b-table.b-table-stacked {
  display: block;
  width: 100%;
}
.table.b-table.b-table-stacked > caption,
.table.b-table.b-table-stacked > tbody,
.table.b-table.b-table-stacked > tbody > tr,
.table.b-table.b-table-stacked > tbody > tr > td,
.table.b-table.b-table-stacked > tbody > tr > th {
  display: block;
}
.table.b-table.b-table-stacked > thead,
.table.b-table.b-table-stacked > tfoot {
  display: none;
}
.table.b-table.b-table-stacked > thead > tr.b-table-top-row,
.table.b-table.b-table-stacked > thead > tr.b-table-bottom-row,
.table.b-table.b-table-stacked > tfoot > tr.b-table-top-row,
.table.b-table.b-table-stacked > tfoot > tr.b-table-bottom-row {
  display: none;
}
.table.b-table.b-table-stacked > caption {
  caption-side: top !important;
}
.table.b-table.b-table-stacked > tbody > tr > [data-label]::before {
  content: attr(data-label);
  width: 40%;
  float: left;
  text-align: right;
  overflow-wrap: break-word;
  font-weight: bold;
  font-style: normal;
  padding: 0 calc(1rem / 2) 0 0;
  margin: 0;
}
.table.b-table.b-table-stacked > tbody > tr > [data-label]::after {
  display: block;
  clear: both;
  content: "";
}
.table.b-table.b-table-stacked > tbody > tr > [data-label] > div {
  display: inline-block;
  width: calc(100% - 40%);
  padding: 0 0 0 calc(1rem / 2);
  margin: 0;
}
.table.b-table.b-table-stacked > tbody > tr.top-row, .table.b-table.b-table-stacked > tbody > tr.bottom-row {
  display: none;
}
.table.b-table.b-table-stacked > tbody > tr > :first-child {
  border-top-width: 15px;
}
.table.b-table.b-table-stacked > tbody > tr > [rowspan] + td,
.table.b-table.b-table-stacked > tbody > tr > [rowspan] + th {
  border-top-width: 15px;
}

.b-time {
  min-width: 150px;
}
.b-time[aria-disabled=true] output, .b-time[aria-readonly=true] output,
.b-time output.disabled {
  background-color: #F7F7F7;
  opacity: 1;
}
.b-time[aria-disabled=true] output {
  pointer-events: none;
}
[dir=rtl] .b-time > .d-flex:not(.flex-column) {
  flex-direction: row-reverse;
}

.b-time .b-time-header {
  margin-bottom: 0.5rem;
}
.b-time .b-time-header output {
  padding: 0.25rem;
  font-size: 80%;
}
.b-time .b-time-footer {
  margin-top: 0.5rem;
}
.b-time .b-time-ampm {
  margin-left: 0.5rem;
}

.b-toast {
  display: block;
  position: relative;
  max-width: 350px;
  backface-visibility: hidden;
  background-clip: padding-box;
  z-index: 1;
  border-radius: 0.25rem;
}
.b-toast .toast {
  background-color: rgba(255, 255, 255, 0.85);
}
.b-toast:not(:last-child) {
  margin-bottom: 0.75rem;
}
.b-toast.b-toast-solid .toast {
  background-color: white;
}
.b-toast .toast {
  opacity: 1;
}
.b-toast .toast.fade:not(.show) {
  opacity: 0;
}
.b-toast .toast .toast-body {
  display: block;
}

.b-toast-primary .toast {
  background-color: rgba(236, 247, 246, 0.85);
  border-color: rgba(203, 233, 230, 0.85);
  color: #235c56;
}
.b-toast-primary .toast .toast-header {
  color: #235c56;
  background-color: rgba(218, 239, 237, 0.85);
  border-bottom-color: rgba(203, 233, 230, 0.85);
}
.b-toast-primary.b-toast-solid .toast {
  background-color: #ecf7f6;
}

.b-toast-secondary .toast {
  background-color: rgba(224, 223, 223, 0.85);
  border-color: rgba(193, 192, 192, 0.85);
  color: #121010;
}
.b-toast-secondary .toast .toast-header {
  color: #121010;
  background-color: rgba(211, 210, 210, 0.85);
  border-bottom-color: rgba(193, 192, 192, 0.85);
}
.b-toast-secondary.b-toast-solid .toast {
  background-color: #e0dfdf;
}

.b-toast-success .toast {
  background-color: rgba(246, 250, 234, 0.85);
  border-color: rgba(230, 240, 196, 0.85);
  color: #566a17;
}
.b-toast-success .toast .toast-header {
  color: #566a17;
  background-color: rgba(237, 245, 213, 0.85);
  border-bottom-color: rgba(230, 240, 196, 0.85);
}
.b-toast-success.b-toast-solid .toast {
  background-color: #f6faea;
}

.b-toast-info .toast {
  background-color: rgba(245, 252, 254, 0.85);
  border-color: rgba(209, 239, 251, 0.85);
  color: #2f667e;
}
.b-toast-info .toast .toast-header {
  color: #2f667e;
  background-color: rgba(222, 243, 252, 0.85);
  border-bottom-color: rgba(209, 239, 251, 0.85);
}
.b-toast-info.b-toast-solid .toast {
  background-color: #f5fcfe;
}

.b-toast-warning .toast {
  background-color: rgba(253, 246, 235, 0.85);
  border-color: rgba(248, 229, 195, 0.85);
  color: #775416;
}
.b-toast-warning .toast .toast-header {
  color: #775416;
  background-color: rgba(250, 236, 212, 0.85);
  border-bottom-color: rgba(248, 229, 195, 0.85);
}
.b-toast-warning.b-toast-solid .toast {
  background-color: #fdf6eb;
}

.b-toast-danger .toast {
  background-color: rgba(251, 236, 237, 0.85);
  border-color: rgba(243, 198, 202, 0.85);
  color: #6e1c23;
}
.b-toast-danger .toast .toast-header {
  color: #6e1c23;
  background-color: rgba(246, 215, 217, 0.85);
  border-bottom-color: rgba(243, 198, 202, 0.85);
}
.b-toast-danger.b-toast-solid .toast {
  background-color: #fbeced;
}

.b-toast-light .toast {
  background-color: rgba(255, 255, 255, 0.85);
  border-color: rgba(250, 249, 249, 0.85);
  color: #7b7a7a;
}
.b-toast-light .toast .toast-header {
  color: #7b7a7a;
  background-color: rgba(251, 251, 251, 0.85);
  border-bottom-color: rgba(250, 249, 249, 0.85);
}
.b-toast-light.b-toast-solid .toast {
  background-color: white;
}

.b-toast-dark .toast {
  background-color: rgba(224, 226, 226, 0.85);
  border-color: rgba(193, 197, 198, 0.85);
  color: #11191b;
}
.b-toast-dark .toast .toast-header {
  color: #11191b;
  background-color: rgba(211, 214, 214, 0.85);
  border-bottom-color: rgba(193, 197, 198, 0.85);
}
.b-toast-dark.b-toast-solid .toast {
  background-color: #e0e2e2;
}

.b-toaster {
  z-index: 1100;
}
.b-toaster .b-toaster-slot {
  position: relative;
  display: block;
}
.b-toaster .b-toaster-slot:empty {
  display: none !important;
}

.b-toaster.b-toaster-top-right, .b-toaster.b-toaster-top-left, .b-toaster.b-toaster-top-center, .b-toaster.b-toaster-top-full, .b-toaster.b-toaster-bottom-right, .b-toaster.b-toaster-bottom-left, .b-toaster.b-toaster-bottom-center, .b-toaster.b-toaster-bottom-full {
  position: fixed;
  left: 0.5rem;
  right: 0.5rem;
  margin: 0;
  padding: 0;
  height: 0;
  overflow: visible;
}
.b-toaster.b-toaster-top-right .b-toaster-slot, .b-toaster.b-toaster-top-left .b-toaster-slot, .b-toaster.b-toaster-top-center .b-toaster-slot, .b-toaster.b-toaster-top-full .b-toaster-slot, .b-toaster.b-toaster-bottom-right .b-toaster-slot, .b-toaster.b-toaster-bottom-left .b-toaster-slot, .b-toaster.b-toaster-bottom-center .b-toaster-slot, .b-toaster.b-toaster-bottom-full .b-toaster-slot {
  position: absolute;
  max-width: 350px;
  width: 100%; /* IE 11 fix */
  left: 0;
  right: 0;
  padding: 0;
  margin: 0;
}
.b-toaster.b-toaster-top-full .b-toaster-slot, .b-toaster.b-toaster-bottom-full .b-toaster-slot {
  width: 100%;
  max-width: 100%;
}
.b-toaster.b-toaster-top-full .b-toaster-slot .b-toast,
.b-toaster.b-toaster-top-full .b-toaster-slot .toast, .b-toaster.b-toaster-bottom-full .b-toaster-slot .b-toast,
.b-toaster.b-toaster-bottom-full .b-toaster-slot .toast {
  width: 100%;
  max-width: 100%;
}
.b-toaster.b-toaster-top-right, .b-toaster.b-toaster-top-left, .b-toaster.b-toaster-top-center, .b-toaster.b-toaster-top-full {
  top: 0;
}
.b-toaster.b-toaster-top-right .b-toaster-slot, .b-toaster.b-toaster-top-left .b-toaster-slot, .b-toaster.b-toaster-top-center .b-toaster-slot, .b-toaster.b-toaster-top-full .b-toaster-slot {
  top: 0.5rem;
}
.b-toaster.b-toaster-bottom-right, .b-toaster.b-toaster-bottom-left, .b-toaster.b-toaster-bottom-center, .b-toaster.b-toaster-bottom-full {
  bottom: 0;
}
.b-toaster.b-toaster-bottom-right .b-toaster-slot, .b-toaster.b-toaster-bottom-left .b-toaster-slot, .b-toaster.b-toaster-bottom-center .b-toaster-slot, .b-toaster.b-toaster-bottom-full .b-toaster-slot {
  bottom: 0.5rem;
}
.b-toaster.b-toaster-top-right .b-toaster-slot, .b-toaster.b-toaster-bottom-right .b-toaster-slot, .b-toaster.b-toaster-top-center .b-toaster-slot, .b-toaster.b-toaster-bottom-center .b-toaster-slot {
  margin-left: auto;
}
.b-toaster.b-toaster-top-left .b-toaster-slot, .b-toaster.b-toaster-bottom-left .b-toaster-slot, .b-toaster.b-toaster-top-center .b-toaster-slot, .b-toaster.b-toaster-bottom-center .b-toaster-slot {
  margin-right: auto;
}

.b-toaster.b-toaster-top-right .b-toast.b-toaster-enter-active, .b-toaster.b-toaster-top-right .b-toast.b-toaster-leave-active, .b-toaster.b-toaster-top-right .b-toast.b-toaster-move, .b-toaster.b-toaster-top-left .b-toast.b-toaster-enter-active, .b-toaster.b-toaster-top-left .b-toast.b-toaster-leave-active, .b-toaster.b-toaster-top-left .b-toast.b-toaster-move, .b-toaster.b-toaster-bottom-right .b-toast.b-toaster-enter-active, .b-toaster.b-toaster-bottom-right .b-toast.b-toaster-leave-active, .b-toaster.b-toaster-bottom-right .b-toast.b-toaster-move, .b-toaster.b-toaster-bottom-left .b-toast.b-toaster-enter-active, .b-toaster.b-toaster-bottom-left .b-toast.b-toaster-leave-active, .b-toaster.b-toaster-bottom-left .b-toast.b-toaster-move {
  transition: transform 0.175s;
}
.b-toaster.b-toaster-top-right .b-toast.b-toaster-enter-to .toast.fade, .b-toaster.b-toaster-top-right .b-toast.b-toaster-enter-active .toast.fade, .b-toaster.b-toaster-top-left .b-toast.b-toaster-enter-to .toast.fade, .b-toaster.b-toaster-top-left .b-toast.b-toaster-enter-active .toast.fade, .b-toaster.b-toaster-bottom-right .b-toast.b-toaster-enter-to .toast.fade, .b-toaster.b-toaster-bottom-right .b-toast.b-toaster-enter-active .toast.fade, .b-toaster.b-toaster-bottom-left .b-toast.b-toaster-enter-to .toast.fade, .b-toaster.b-toaster-bottom-left .b-toast.b-toaster-enter-active .toast.fade {
  transition-delay: 0.175s;
}
.b-toaster.b-toaster-top-right .b-toast.b-toaster-leave-active, .b-toaster.b-toaster-top-left .b-toast.b-toaster-leave-active, .b-toaster.b-toaster-bottom-right .b-toast.b-toaster-leave-active, .b-toaster.b-toaster-bottom-left .b-toast.b-toaster-leave-active {
  position: absolute;
  transition-delay: 0.175s;
}
.b-toaster.b-toaster-top-right .b-toast.b-toaster-leave-active .toast.fade, .b-toaster.b-toaster-top-left .b-toast.b-toaster-leave-active .toast.fade, .b-toaster.b-toaster-bottom-right .b-toast.b-toaster-leave-active .toast.fade, .b-toaster.b-toaster-bottom-left .b-toast.b-toaster-leave-active .toast.fade {
  transition-delay: 0s;
}
.tooltip.b-tooltip {
  display: block;
  opacity: 0.9;
  outline: 0;
}
.tooltip.b-tooltip.fade:not(.show) {
  opacity: 0;
}
.tooltip.b-tooltip.show {
  opacity: 0.9;
}
.tooltip.b-tooltip.noninteractive {
  pointer-events: none;
}
.tooltip.b-tooltip .arrow {
  margin: 0 0.25rem;
}
.tooltip.b-tooltip.bs-tooltip-right .arrow, .tooltip.b-tooltip.bs-tooltip-auto[x-placement^=right] .arrow, .tooltip.b-tooltip.bs-tooltip-left .arrow, .tooltip.b-tooltip.bs-tooltip-auto[x-placement^=left] .arrow {
  margin: 0.25rem 0;
}

.tooltip.b-tooltip-primary.bs-tooltip-top .arrow::before, .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: #44b1a6;
}
.tooltip.b-tooltip-primary.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: #44b1a6;
}
.tooltip.b-tooltip-primary.bs-tooltip-bottom .arrow::before, .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: #44b1a6;
}
.tooltip.b-tooltip-primary.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: #44b1a6;
}
.tooltip.b-tooltip-primary .tooltip-inner {
  color: #ffffff;
  background-color: #44b1a6;
}

.tooltip.b-tooltip-secondary.bs-tooltip-top .arrow::before, .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: #221e1f;
}
.tooltip.b-tooltip-secondary.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: #221e1f;
}
.tooltip.b-tooltip-secondary.bs-tooltip-bottom .arrow::before, .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: #221e1f;
}
.tooltip.b-tooltip-secondary.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: #221e1f;
}
.tooltip.b-tooltip-secondary .tooltip-inner {
  color: #ffffff;
  background-color: #221e1f;
}

.tooltip.b-tooltip-success.bs-tooltip-top .arrow::before, .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: #a5cb2c;
}
.tooltip.b-tooltip-success.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: #a5cb2c;
}
.tooltip.b-tooltip-success.bs-tooltip-bottom .arrow::before, .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: #a5cb2c;
}
.tooltip.b-tooltip-success.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: #a5cb2c;
}
.tooltip.b-tooltip-success .tooltip-inner {
  color: #221e1f;
  background-color: #a5cb2c;
}

.tooltip.b-tooltip-info.bs-tooltip-top .arrow::before, .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: #5bc5f2;
}
.tooltip.b-tooltip-info.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: #5bc5f2;
}
.tooltip.b-tooltip-info.bs-tooltip-bottom .arrow::before, .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: #5bc5f2;
}
.tooltip.b-tooltip-info.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: #5bc5f2;
}
.tooltip.b-tooltip-info .tooltip-inner {
  color: #221e1f;
  background-color: #5bc5f2;
}

.tooltip.b-tooltip-warning.bs-tooltip-top .arrow::before, .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: #e5a22a;
}
.tooltip.b-tooltip-warning.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: #e5a22a;
}
.tooltip.b-tooltip-warning.bs-tooltip-bottom .arrow::before, .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: #e5a22a;
}
.tooltip.b-tooltip-warning.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: #e5a22a;
}
.tooltip.b-tooltip-warning .tooltip-inner {
  color: #221e1f;
  background-color: #e5a22a;
}

.tooltip.b-tooltip-danger.bs-tooltip-top .arrow::before, .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: #d33543;
}
.tooltip.b-tooltip-danger.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: #d33543;
}
.tooltip.b-tooltip-danger.bs-tooltip-bottom .arrow::before, .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: #d33543;
}
.tooltip.b-tooltip-danger.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: #d33543;
}
.tooltip.b-tooltip-danger .tooltip-inner {
  color: #ffffff;
  background-color: #d33543;
}

.tooltip.b-tooltip-light.bs-tooltip-top .arrow::before, .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: #ecebeb;
}
.tooltip.b-tooltip-light.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: #ecebeb;
}
.tooltip.b-tooltip-light.bs-tooltip-bottom .arrow::before, .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: #ecebeb;
}
.tooltip.b-tooltip-light.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: #ecebeb;
}
.tooltip.b-tooltip-light .tooltip-inner {
  color: #221e1f;
  background-color: #ecebeb;
}

.tooltip.b-tooltip-dark.bs-tooltip-top .arrow::before, .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: #213033;
}
.tooltip.b-tooltip-dark.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: #213033;
}
.tooltip.b-tooltip-dark.bs-tooltip-bottom .arrow::before, .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: #213033;
}
.tooltip.b-tooltip-dark.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: #213033;
}
.tooltip.b-tooltip-dark .tooltip-inner {
  color: #ffffff;
  background-color: #213033;
}

.b-icon.bi {
  display: inline-block;
  overflow: visible;
  vertical-align: -0.15em;
}
.b-icon.b-icon-animation-cylon, .b-icon.b-iconstack .b-icon-animation-cylon > g {
  transform-origin: center;
  animation: 0.75s infinite ease-in-out alternate b-icon-animation-cylon;
}
@media (prefers-reduced-motion: reduce) {
  .b-icon.b-icon-animation-cylon, .b-icon.b-iconstack .b-icon-animation-cylon > g {
    animation: none;
  }
}
.b-icon.b-icon-animation-cylon-vertical, .b-icon.b-iconstack .b-icon-animation-cylon-vertical > g {
  transform-origin: center;
  animation: 0.75s infinite ease-in-out alternate b-icon-animation-cylon-vertical;
}
@media (prefers-reduced-motion: reduce) {
  .b-icon.b-icon-animation-cylon-vertical, .b-icon.b-iconstack .b-icon-animation-cylon-vertical > g {
    animation: none;
  }
}
.b-icon.b-icon-animation-fade, .b-icon.b-iconstack .b-icon-animation-fade > g {
  transform-origin: center;
  animation: 0.75s infinite ease-in-out alternate b-icon-animation-fade;
}
@media (prefers-reduced-motion: reduce) {
  .b-icon.b-icon-animation-fade, .b-icon.b-iconstack .b-icon-animation-fade > g {
    animation: none;
  }
}
.b-icon.b-icon-animation-spin, .b-icon.b-iconstack .b-icon-animation-spin > g {
  transform-origin: center;
  animation: 2s infinite linear normal b-icon-animation-spin;
}
@media (prefers-reduced-motion: reduce) {
  .b-icon.b-icon-animation-spin, .b-icon.b-iconstack .b-icon-animation-spin > g {
    animation: none;
  }
}
.b-icon.b-icon-animation-spin-reverse, .b-icon.b-iconstack .b-icon-animation-spin-reverse > g {
  transform-origin: center;
  animation: 2s infinite linear reverse b-icon-animation-spin;
}
@media (prefers-reduced-motion: reduce) {
  .b-icon.b-icon-animation-spin-reverse, .b-icon.b-iconstack .b-icon-animation-spin-reverse > g {
    animation: none;
  }
}
.b-icon.b-icon-animation-spin-pulse, .b-icon.b-iconstack .b-icon-animation-spin-pulse > g {
  transform-origin: center;
  animation: 1s infinite steps(8) normal b-icon-animation-spin;
}
@media (prefers-reduced-motion: reduce) {
  .b-icon.b-icon-animation-spin-pulse, .b-icon.b-iconstack .b-icon-animation-spin-pulse > g {
    animation: none;
  }
}
.b-icon.b-icon-animation-spin-reverse-pulse, .b-icon.b-iconstack .b-icon-animation-spin-reverse-pulse > g {
  transform-origin: center;
  animation: 1s infinite steps(8) reverse b-icon-animation-spin;
}
@media (prefers-reduced-motion: reduce) {
  .b-icon.b-icon-animation-spin-reverse-pulse, .b-icon.b-iconstack .b-icon-animation-spin-reverse-pulse > g {
    animation: none;
  }
}
.b-icon.b-icon-animation-throb, .b-icon.b-iconstack .b-icon-animation-throb > g {
  transform-origin: center;
  animation: 0.75s infinite ease-in-out alternate b-icon-animation-throb;
}
@media (prefers-reduced-motion: reduce) {
  .b-icon.b-icon-animation-throb, .b-icon.b-iconstack .b-icon-animation-throb > g {
    animation: none;
  }
}

@keyframes b-icon-animation-cylon {
  0% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(25%);
  }
}
@keyframes b-icon-animation-cylon-vertical {
  0% {
    transform: translateY(25%);
  }
  100% {
    transform: translateY(-25%);
  }
}
@keyframes b-icon-animation-fade {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes b-icon-animation-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
@keyframes b-icon-animation-throb {
  0% {
    opacity: 0.5;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.btn .b-icon.bi,
.nav-link .b-icon.bi,
.dropdown-toggle .b-icon.bi,
.dropdown-item .b-icon.bi,
.input-group-text .b-icon.bi {
  font-size: 125%;
  vertical-align: text-bottom;
}

/**
    Support for SASS is deprecated as of v3.18.

    The files remain here if your build is dependent on them
    but they will not receive updates in future releases. All
    SASS variables have been translated into CSS variables, so
    migration should be quite simple if you'd like to move over.

    In v4, these files will be removed.
 */
.v-select {
  position: relative;
  font-family: inherit;
}

.v-select,
.v-select * {
  box-sizing: border-box;
}

/* KeyFrames */
@-webkit-keyframes vSelectSpinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes vSelectSpinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Dropdown Default Transition */
.vs__fade-enter-active,
.vs__fade-leave-active {
  pointer-events: none;
  transition: opacity 0.15s cubic-bezier(1, 0.5, 0.8, 1);
}

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

/** Component States */
/*
 * Disabled
 *
 * When the component is disabled, all interaction
 * should be prevented. Here we modify the bg color,
 * and change the cursor displayed on the interactive
 * components.
 */
.vs--disabled .vs__dropdown-toggle,
.vs--disabled .vs__clear,
.vs--disabled .vs__search,
.vs--disabled .vs__selected,
.vs--disabled .vs__open-indicator {
  cursor: not-allowed;
  background-color: rgb(248, 248, 248);
}

/*
 *  RTL - Right to Left Support
 *
 *  Because we're using a flexbox layout, the `dir="rtl"`
 *  HTML attribute does most of the work for us by
 *  rearranging the child elements visually.
 */
.v-select[dir=rtl] .vs__actions {
  padding: 0 3px 0 6px;
}
.v-select[dir=rtl] .vs__clear {
  margin-left: 6px;
  margin-right: 0;
}
.v-select[dir=rtl] .vs__deselect {
  margin-left: 0;
  margin-right: 2px;
}
.v-select[dir=rtl] .vs__dropdown-menu {
  text-align: right;
}

/**
    Dropdown Toggle

    The dropdown toggle is the primary wrapper of the component. It
    has two direct descendants: .vs__selected-options, and .vs__actions.

    .vs__selected-options holds the .vs__selected's as well as the
    main search input.

    .vs__actions holds the clear button and dropdown toggle.
 */
.vs__dropdown-toggle {
  appearance: none;
  display: flex;
  padding: 0 0 4px 0;
  background: none;
  border: 1px solid rgba(60, 60, 60, 0.26);
  border-radius: 4px;
  white-space: normal;
}

.vs__selected-options {
  display: flex;
  flex-basis: 100%;
  flex-grow: 1;
  flex-wrap: wrap;
  padding: 0 2px;
  position: relative;
}

.vs__actions {
  display: flex;
  align-items: center;
  padding: 4px 6px 0 3px;
}

/* Dropdown Toggle States */
.vs--searchable .vs__dropdown-toggle {
  cursor: text;
}

.vs--unsearchable .vs__dropdown-toggle {
  cursor: pointer;
}

.vs--open .vs__dropdown-toggle {
  border-bottom-color: transparent;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.vs__open-indicator {
  fill: rgba(60, 60, 60, 0.5);
  transform: scale(1);
  transition: transform 150ms cubic-bezier(1, -0.115, 0.975, 0.855);
  transition-timing-function: cubic-bezier(1, -0.115, 0.975, 0.855);
}

.vs--open .vs__open-indicator {
  transform: rotate(180deg) scale(1);
}

.vs--loading .vs__open-indicator {
  opacity: 0;
}

/* Clear Button */
.vs__clear {
  fill: rgba(60, 60, 60, 0.5);
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  margin-right: 8px;
}

/* Dropdown Menu */
.vs__dropdown-menu {
  display: block;
  box-sizing: border-box;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  z-index: 1000;
  padding: 5px 0;
  margin: 0;
  width: 100%;
  max-height: 350px;
  min-width: 160px;
  overflow-y: auto;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(60, 60, 60, 0.26);
  border-top-style: none;
  border-radius: 0 0 4px 4px;
  text-align: left;
  list-style: none;
  background: #fff;
}

.vs__no-options {
  text-align: center;
}

/* List Items */
.vs__dropdown-option {
  line-height: 1.42857143; /* Normalize line height */
  display: block;
  padding: 3px 20px;
  clear: both;
  color: #333; /* Overrides most CSS frameworks */
  white-space: nowrap;
  cursor: pointer;
}

.vs__dropdown-option--highlight {
  background: #44b1a6;
  color: #fff;
}

.vs__dropdown-option--deselect {
  background: #fb5858;
  color: #fff;
}

.vs__dropdown-option--disabled {
  background: inherit;
  color: rgba(60, 60, 60, 0.5);
  cursor: inherit;
}

/* Selected Tags */
.vs__selected {
  display: flex;
  align-items: center;
  background-color: #f0f0f0;
  border: 1px solid rgba(60, 60, 60, 0.26);
  border-radius: 4px;
  color: #333;
  line-height: 1.4;
  margin: 4px 2px 0px 2px;
  padding: 0 0.25em;
  z-index: 0;
}

.vs__deselect {
  display: inline-flex;
  appearance: none;
  margin-left: 4px;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: none;
  fill: rgba(60, 60, 60, 0.5);
  text-shadow: 0 1px 0 #fff;
}

/* States */
.vs--single .vs__selected {
  background-color: transparent;
  border-color: transparent;
}
.vs--single.vs--open .vs__selected, .vs--single.vs--loading .vs__selected {
  position: absolute;
  opacity: 0.4;
}
.vs--single.vs--searching .vs__selected {
  display: none;
}

/* Search Input */
/**
 * Super weird bug... If this declaration is grouped
 * below, the cancel button will still appear in chrome.
 * If it's up here on it's own, it'll hide it.
 */
.vs__search::-webkit-search-cancel-button {
  display: none;
}

.vs__search::-webkit-search-decoration,
.vs__search::-webkit-search-results-button,
.vs__search::-webkit-search-results-decoration,
.vs__search::-ms-clear {
  display: none;
}

.vs__search,
.vs__search:focus {
  appearance: none;
  line-height: 1.4;
  font-size: 1em;
  border: 1px solid transparent;
  border-left: none;
  outline: none;
  margin: 4px 0 0 0;
  padding: 0 7px;
  background: none;
  box-shadow: none;
  width: 0;
  max-width: 100%;
  flex-grow: 1;
  z-index: 1;
}

.vs__search::placeholder {
  color: inherit;
}

/**
    States
 */
.vs--unsearchable .vs__search {
  opacity: 1;
}
.vs--unsearchable:not(.vs--disabled) .vs__search {
  cursor: pointer;
}

.vs--single.vs--searching:not(.vs--open):not(.vs--loading) .vs__search {
  opacity: 0.2;
}

/* Loading Spinner */
.vs__spinner {
  align-self: center;
  opacity: 0;
  font-size: 5px;
  text-indent: -9999em;
  overflow: hidden;
  border-top: 0.9em solid rgba(100, 100, 100, 0.1);
  border-right: 0.9em solid rgba(100, 100, 100, 0.1);
  border-bottom: 0.9em solid rgba(100, 100, 100, 0.1);
  border-left: 0.9em solid rgba(60, 60, 60, 0.45);
  transform: translateZ(0);
  animation: vSelectSpinner 1.1s infinite linear;
  transition: opacity 0.1s;
}

.vs__spinner,
.vs__spinner:after {
  border-radius: 50%;
  width: 5em;
  height: 5em;
}

/* Loading Spinner States */
.vs--loading .vs__spinner {
  opacity: 1;
}

/**
 * @license Highcharts
 *
 * (c) 2009-2016 Torstein Honsi
 *
 * License: www.highcharts.com/license
 */
.highcharts-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  text-align: left;
  line-height: normal;
  z-index: 0; /* #1072 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
  font-size: 12px;
  user-select: none;
  touch-action: manipulation;
  outline: none;
}

.highcharts-root {
  display: block;
}

.highcharts-root text {
  stroke-width: 0;
}

.highcharts-strong {
  font-weight: bold;
}

.highcharts-emphasized {
  font-style: italic;
}

.highcharts-anchor {
  cursor: pointer;
}

.highcharts-background {
  fill: #ffffff;
}

.highcharts-plot-border, .highcharts-plot-background {
  fill: none;
}

.highcharts-label-box {
  fill: none;
}

.highcharts-button-box {
  fill: inherit;
}

.highcharts-tracker-line {
  stroke-linejoin: round;
  stroke: rgba(192, 192, 192, 0.0001);
  stroke-width: 22;
  fill: none;
}

.highcharts-tracker-area {
  fill: rgba(192, 192, 192, 0.0001);
  stroke-width: 0;
}

/* Titles */
.highcharts-title {
  fill: #333333;
  font-size: 1.5em;
}

.highcharts-subtitle {
  fill: #666666;
  font-size: 1em;
}

/* Axes */
.highcharts-axis-line {
  fill: none;
  stroke: #ccd6eb;
}

.highcharts-yaxis .highcharts-axis-line {
  stroke-width: 0;
}

.highcharts-axis-title {
  fill: #666666;
}

.highcharts-axis-labels {
  fill: #666666;
  cursor: default;
  font-size: 0.9em;
}

.highcharts-grid-line {
  fill: none;
  stroke: #e6e6e6;
}

.highcharts-xaxis-grid .highcharts-grid-line {
  stroke-width: 0px;
}

.highcharts-tick {
  stroke: #ccd6eb;
}

.highcharts-yaxis .highcharts-tick {
  stroke-width: 0;
}

.highcharts-minor-grid-line {
  stroke: #f2f2f2;
}

.highcharts-crosshair-thin {
  stroke-width: 1px;
  stroke: #cccccc;
}

.highcharts-crosshair-category {
  stroke: #ccd6eb;
  stroke-opacity: 0.25;
}

/* Credits */
.highcharts-credits {
  cursor: pointer;
  fill: #999999;
  font-size: 0.7em;
  transition: fill 250ms, font-size 250ms;
}

.highcharts-credits:hover {
  fill: black;
  font-size: 1em;
}

/* Tooltip */
.highcharts-tooltip {
  cursor: default;
  pointer-events: none;
  white-space: nowrap;
  transition: stroke 150ms;
}

.highcharts-tooltip text {
  fill: #333333;
}

.highcharts-tooltip .highcharts-header {
  font-size: 0.85em;
}

.highcharts-tooltip-box {
  stroke-width: 1px;
  fill: #f7f7f7;
  fill-opacity: 0.85;
}

.highcharts-tooltip-box .highcharts-label-box {
  fill: #f7f7f7;
  fill-opacity: 0.85;
}

div.highcharts-tooltip {
  filter: none;
}

.highcharts-selection-marker {
  fill: #335cad;
  fill-opacity: 0.25;
}

.highcharts-graph {
  fill: none;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.highcharts-empty-series {
  stroke-width: 1px;
  fill: none;
  stroke: #cccccc;
}

.highcharts-state-hover .highcharts-graph {
  stroke-width: 3;
}

.highcharts-point-inactive {
  opacity: 0.2;
  transition: opacity 50ms; /* quick in */
}

.highcharts-series-inactive {
  opacity: 0.2;
  transition: opacity 50ms; /* quick in */
}

.highcharts-state-hover path {
  transition: stroke-width 50ms; /* quick in */
}

.highcharts-state-normal path {
  transition: stroke-width 250ms; /* slow out */
}

/* Legend hover affects points and series */
g.highcharts-series,
.highcharts-point,
.highcharts-markers,
.highcharts-data-labels {
  transition: opacity 250ms;
}

.highcharts-legend-series-active g.highcharts-series:not(.highcharts-series-hover),
.highcharts-legend-point-active .highcharts-point:not(.highcharts-point-hover),
.highcharts-legend-series-active .highcharts-markers:not(.highcharts-series-hover),
.highcharts-legend-series-active .highcharts-data-labels:not(.highcharts-series-hover) {
  opacity: 0.2;
}

/* Series options */
/* Default colors */
.highcharts-color-0 {
  fill: "blue" #3C52D7;
  stroke: "blue" #3C52D7;
}

.highcharts-color-1 {
  fill: "indigo" #9013FE;
  stroke: "indigo" #9013FE;
}

.highcharts-color-2 {
  fill: "purple" #4C357B;
  stroke: "purple" #4C357B;
}

.highcharts-color-3 {
  fill: "pink" #EC68AB;
  stroke: "pink" #EC68AB;
}

.highcharts-color-4 {
  fill: "red" #D33543;
  stroke: "red" #D33543;
}

.highcharts-color-5 {
  fill: "orange" #EC6839;
  stroke: "orange" #EC6839;
}

.highcharts-color-6 {
  fill: "yellow" #E5A22A;
  stroke: "yellow" #E5A22A;
}

.highcharts-color-7 {
  fill: "green" #00a577;
  stroke: "green" #00a577;
}

.highcharts-color-8 {
  fill: "teal" #cddc39;
  stroke: "teal" #cddc39;
}

.highcharts-color-9 {
  fill: "cyan" #5BC5F2;
  stroke: "cyan" #5BC5F2;
}

.highcharts-color-10 {
  fill: "white" #ffffff;
  stroke: "white" #ffffff;
}

.highcharts-color-11 {
  fill: "gray" #5E6771;
  stroke: "gray" #5E6771;
}

.highcharts-color-12 {
  fill: "gray-dark" #292b2c;
  stroke: "gray-dark" #292b2c;
}

.highcharts-area {
  fill-opacity: 0.75;
  stroke-width: 0;
}

.highcharts-markers {
  stroke-width: 1px;
  stroke: #ffffff;
}

.highcharts-a11y-markers-hidden .highcharts-point:not(.highcharts-point-hover):not(.highcharts-a11y-marker-visible),
.highcharts-a11y-marker-hidden {
  opacity: 0;
}

.highcharts-point {
  stroke-width: 1px;
}

.highcharts-dense-data .highcharts-point {
  stroke-width: 0;
}

.highcharts-data-label {
  font-size: 0.9em;
  font-weight: bold;
}

.highcharts-data-label-box {
  fill: none;
  stroke-width: 0;
}

.highcharts-data-label text, text.highcharts-data-label {
  fill: #333333;
}

.highcharts-data-label-connector {
  fill: none;
}

.highcharts-data-label-hidden {
  pointer-events: none;
}

.highcharts-halo {
  fill-opacity: 0.25;
  stroke-width: 0;
}

.highcharts-series:not(.highcharts-pie-series) .highcharts-point-select,
.highcharts-markers .highcharts-point-select {
  fill: #cccccc;
  stroke: #000000;
}

.highcharts-column-series rect.highcharts-point {
  stroke: #ffffff;
}

.highcharts-column-series .highcharts-point {
  transition: fill-opacity 250ms;
}

.highcharts-column-series .highcharts-point-hover {
  fill-opacity: 0.75;
  transition: fill-opacity 50ms;
}

.highcharts-pie-series .highcharts-point {
  stroke-linejoin: round;
  stroke: #ffffff;
}

.highcharts-pie-series .highcharts-point-hover {
  fill-opacity: 0.75;
  transition: fill-opacity 50ms;
}

.highcharts-funnel-series .highcharts-point {
  stroke-linejoin: round;
  stroke: #ffffff;
}

.highcharts-funnel-series .highcharts-point-hover {
  fill-opacity: 0.75;
  transition: fill-opacity 50ms;
}

.highcharts-funnel-series .highcharts-point-select {
  fill: inherit;
  stroke: inherit;
}

.highcharts-pyramid-series .highcharts-point {
  stroke-linejoin: round;
  stroke: #ffffff;
}

.highcharts-pyramid-series .highcharts-point-hover {
  fill-opacity: 0.75;
  transition: fill-opacity 50ms;
}

.highcharts-pyramid-series .highcharts-point-select {
  fill: inherit;
  stroke: inherit;
}

.highcharts-solidgauge-series .highcharts-point {
  stroke-width: 0;
}

.highcharts-treemap-series .highcharts-point {
  stroke-width: 1px;
  stroke: #e6e6e6;
  transition: stroke 250ms, fill 250ms, fill-opacity 250ms;
}

.highcharts-treemap-series .highcharts-point-hover {
  stroke: #999999;
  transition: stroke 25ms, fill 25ms, fill-opacity 25ms;
}

.highcharts-treemap-series .highcharts-above-level {
  display: none;
}

.highcharts-treemap-series .highcharts-internal-node {
  fill: none;
}

.highcharts-treemap-series .highcharts-internal-node-interactive {
  fill-opacity: 0.15;
  cursor: pointer;
}

.highcharts-treemap-series .highcharts-internal-node-interactive:hover {
  fill-opacity: 0.75;
}

.highcharts-vector-series .highcharts-point {
  fill: none;
  stroke-width: 2px;
}

.highcharts-windbarb-series .highcharts-point {
  fill: none;
  stroke-width: 2px;
}

.highcharts-lollipop-stem {
  stroke: #000000;
}

.highcharts-focus-border {
  fill: none;
  stroke-width: 2px;
}

.highcharts-legend-item-hidden .highcharts-focus-border {
  fill: none !important;
}

/* Legend */
.highcharts-legend-box {
  fill: none;
  stroke-width: 0;
}

.highcharts-legend-item > text {
  fill: #333333;
  font-weight: bold;
  font-size: 1em;
  cursor: pointer;
  stroke-width: 0;
}

.highcharts-legend-item:hover text {
  fill: #000000;
}

.highcharts-legend-item-hidden * {
  fill: #cccccc !important;
  stroke: #cccccc !important;
  transition: fill 250ms;
}

.highcharts-legend-nav-active {
  fill: #003399;
  cursor: pointer;
}

.highcharts-legend-nav-inactive {
  fill: #cccccc;
}

circle.highcharts-legend-nav-active, circle.highcharts-legend-nav-inactive { /* tracker */
  fill: rgba(192, 192, 192, 0.0001);
}

.highcharts-legend-title-box {
  fill: none;
  stroke-width: 0;
}

/* Bubble legend */
.highcharts-bubble-legend-symbol {
  stroke-width: 2;
  fill-opacity: 0.5;
}

.highcharts-bubble-legend-connectors {
  stroke-width: 1;
}

.highcharts-bubble-legend-labels {
  fill: #333333;
}

/* Loading */
.highcharts-loading {
  position: absolute;
  background-color: #ffffff;
  opacity: 0.5;
  text-align: center;
  z-index: 10;
  transition: opacity 250ms;
}

.highcharts-loading-hidden {
  height: 0 !important;
  opacity: 0;
  overflow: hidden;
  transition: opacity 250ms, height 250ms step-end;
}

.highcharts-loading-inner {
  font-weight: bold;
  position: relative;
  top: 45%;
}

/* Plot bands and polar pane backgrounds */
.highcharts-plot-band, .highcharts-pane {
  fill: #000000;
  fill-opacity: 0.05;
}

.highcharts-plot-line {
  fill: none;
  stroke: #999999;
  stroke-width: 1px;
}

/* Highcharts More and modules */
.highcharts-boxplot-box {
  fill: #ffffff;
}

.highcharts-boxplot-median {
  stroke-width: 2px;
}

.highcharts-bubble-series .highcharts-point {
  fill-opacity: 0.5;
}

.highcharts-errorbar-series .highcharts-point {
  stroke: #000000;
}

.highcharts-gauge-series .highcharts-data-label-box {
  stroke: #cccccc;
  stroke-width: 1px;
}

.highcharts-gauge-series .highcharts-dial {
  fill: #000000;
  stroke-width: 0;
}

.highcharts-polygon-series .highcharts-graph {
  fill: inherit;
  stroke-width: 0;
}

.highcharts-waterfall-series .highcharts-graph {
  stroke: #333333;
  stroke-dasharray: 1, 3;
}

.highcharts-sankey-series .highcharts-point {
  stroke-width: 0;
}

.highcharts-sankey-series .highcharts-link {
  transition: fill 250ms, fill-opacity 250ms;
  fill-opacity: 0.5;
}

.highcharts-sankey-series .highcharts-point-hover.highcharts-link {
  transition: fill 50ms, fill-opacity 50ms;
  fill-opacity: 1;
}

.highcharts-venn-series .highcharts-point {
  fill-opacity: 0.75;
  stroke: #cccccc;
  transition: stroke 250ms, fill-opacity 250ms;
}

.highcharts-venn-series .highcharts-point-hover {
  fill-opacity: 1;
  stroke: #cccccc;
}

/* Highstock */
.highcharts-navigator-mask-outside {
  fill-opacity: 0;
}

.highcharts-navigator-mask-inside {
  fill: #6685c2; /* navigator.maskFill option */
  fill-opacity: 0.25;
  cursor: ew-resize;
}

.highcharts-navigator-outline {
  stroke: #cccccc;
  fill: none;
}

.highcharts-navigator-handle {
  stroke: #cccccc;
  fill: #f2f2f2;
  cursor: ew-resize;
}

.highcharts-navigator-series {
  fill: #335cad;
  stroke: #335cad;
}

.highcharts-navigator-series .highcharts-graph {
  stroke-width: 1px;
}

.highcharts-navigator-series .highcharts-area {
  fill-opacity: 0.05;
}

.highcharts-navigator-xaxis .highcharts-axis-line {
  stroke-width: 0;
}

.highcharts-navigator-xaxis .highcharts-grid-line {
  stroke-width: 1px;
  stroke: #e6e6e6;
}

.highcharts-navigator-xaxis.highcharts-axis-labels {
  fill: #999999;
}

.highcharts-navigator-yaxis .highcharts-grid-line {
  stroke-width: 0;
}

.highcharts-scrollbar-thumb {
  fill: #cccccc;
  stroke: #cccccc;
  stroke-width: 1px;
}

.highcharts-scrollbar-button {
  fill: #e6e6e6;
  stroke: #cccccc;
  stroke-width: 1px;
}

.highcharts-scrollbar-arrow {
  fill: #666666;
}

.highcharts-scrollbar-rifles {
  stroke: #666666;
  stroke-width: 1px;
}

.highcharts-scrollbar-track {
  fill: #f2f2f2;
  stroke: #f2f2f2;
  stroke-width: 1px;
}

.highcharts-button {
  fill: #f7f7f7;
  stroke: #cccccc;
  cursor: default;
  stroke-width: 1px;
  transition: fill 250ms;
}

.highcharts-button text {
  fill: #333333;
}

.highcharts-button-hover {
  transition: fill 0ms;
  fill: #e6e6e6;
  stroke: #cccccc;
}

.highcharts-button-hover text {
  fill: #333333;
}

.highcharts-button-pressed {
  font-weight: bold;
  fill: #e6ebf5;
  stroke: #cccccc;
}

.highcharts-button-pressed text {
  fill: #333333;
  font-weight: bold;
}

.highcharts-button-disabled text {
  fill: #333333;
}

.highcharts-range-selector-buttons .highcharts-button {
  stroke-width: 0px;
}

.highcharts-range-label rect {
  fill: none;
}

.highcharts-range-label text {
  fill: #666666;
}

.highcharts-range-input rect {
  fill: none;
}

.highcharts-range-input text {
  fill: #333333;
}

.highcharts-range-input {
  stroke-width: 1px;
  stroke: #cccccc;
}

input.highcharts-range-selector {
  position: absolute;
  border: 0;
  width: 1px; /* Chrome needs a pixel to see it */
  height: 1px;
  padding: 0;
  text-align: center;
  left: -9em; /* #4798 */
}

.highcharts-crosshair-label text {
  fill: #ffffff;
  font-size: 1.1em;
}

.highcharts-crosshair-label .highcharts-label-box {
  fill: inherit;
}

.highcharts-candlestick-series .highcharts-point {
  stroke: #000000;
  stroke-width: 1px;
}

.highcharts-candlestick-series .highcharts-point-up {
  fill: #ffffff;
}

.highcharts-hollowcandlestick-series .highcharts-point-down {
  fill: #f21313;
  stroke: #f21313;
}

.highcharts-hollowcandlestick-series .highcharts-point-down-bearish-up {
  fill: #06b535;
  stroke: #06b535;
}

.highcharts-hollowcandlestick-series .highcharts-point-up {
  fill: transparent;
  stroke: #06b535;
}

.highcharts-ohlc-series .highcharts-point-hover {
  stroke-width: 3px;
}

.highcharts-flags-series .highcharts-point .highcharts-label-box {
  stroke: #999999;
  fill: #ffffff;
  transition: fill 250ms;
}

.highcharts-flags-series .highcharts-point-hover .highcharts-label-box {
  stroke: #000000;
  fill: #ccd6eb;
}

.highcharts-flags-series .highcharts-point text {
  fill: #000000;
  font-size: 0.9em;
  font-weight: bold;
}

/* Highcharts Maps */
.highcharts-map-series .highcharts-point {
  transition: fill 500ms, fill-opacity 500ms, stroke-width 250ms;
  stroke: #cccccc;
  stroke-width: inherit;
}

.highcharts-map-series .highcharts-point-hover {
  transition: fill 0ms, fill-opacity 0ms;
  fill-opacity: 0.5;
}

.highcharts-mapline-series .highcharts-point {
  fill: none;
}

.highcharts-heatmap-series .highcharts-point {
  stroke-width: 0;
}

.highcharts-map-navigation {
  font-size: 1.3em;
  font-weight: bold;
  text-align: center;
}

.highcharts-mapview-inset-border {
  stroke: #cccccc;
  stroke-width: 1px;
  fill: none;
}

.highcharts-coloraxis {
  stroke-width: 0;
}

.highcharts-coloraxis-marker {
  fill: #999999;
}

.highcharts-null-point {
  fill: #f7f7f7;
}

/* 3d charts */
.highcharts-3d-frame {
  fill: transparent;
}

/* Exporting module */
.highcharts-contextbutton {
  fill: #ffffff; /* needed to capture hover */
  stroke: none;
  stroke-linecap: round;
}

.highcharts-contextbutton:hover {
  fill: #e6e6e6;
  stroke: #e6e6e6;
}

.highcharts-button-symbol {
  stroke: #666666;
  stroke-width: 3px;
}

.highcharts-menu {
  border: 1px solid #999999;
  background: #ffffff;
  padding: 5px 0;
  box-shadow: 3px 3px 10px #888;
}

.highcharts-menu-item {
  padding: 0.5em 1em;
  background: none;
  color: #333333;
  cursor: pointer;
  transition: background 250ms, color 250ms;
}

.highcharts-menu-item:hover {
  background: #335cad;
  color: #ffffff;
}

/* Breadcrumbs */
.highcharts-breadcrumbs-button {
  fill: none;
  stroke-width: 0;
  cursor: pointer;
}

.highcharts-breadcrumbs-separator {
  fill: #666666;
}

/* Drilldown module */
.highcharts-drilldown-point {
  cursor: pointer;
}

.highcharts-drilldown-data-label text,
text.highcharts-drilldown-data-label,
.highcharts-drilldown-axis-label {
  cursor: pointer;
  fill: #003399;
  font-weight: bold;
  text-decoration: underline;
}

/* No-data module */
.highcharts-no-data text {
  font-weight: bold;
  font-size: 12px;
  fill: #666666;
}

/* Drag-panes module */
.highcharts-axis-resizer {
  cursor: ns-resize;
  stroke: black;
  stroke-width: 2px;
}

/* Bullet type series */
.highcharts-bullet-target {
  stroke-width: 0;
}

/* Lineargauge type series */
.highcharts-lineargauge-target {
  stroke-width: 1px;
  stroke: #333333;
}

.highcharts-lineargauge-target-line {
  stroke-width: 1px;
  stroke: #333333;
}

/* Annotations module */
.highcharts-annotation-label-box {
  stroke-width: 1px;
  stroke: #000000;
  fill: #000000;
  fill-opacity: 0.75;
}

.highcharts-annotation-label text {
  fill: #e6e6e6;
}

/* A11y module */
.highcharts-a11y-proxy-button {
  border-width: 0;
  background-color: transparent;
  cursor: pointer;
  outline: none;
  opacity: 0.001;
  z-index: 999;
  overflow: hidden;
  padding: 0;
  margin: 0;
  display: block;
  position: absolute;
}

.highcharts-a11y-proxy-group li {
  list-style: none;
}

.highcharts-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(1px, 1px, 1px, 1px);
  margin-top: -3px;
  opacity: 0.01;
}

.highcharts-a11y-invisible {
  visibility: hidden;
}

.highcharts-a11y-proxy-container,
.highcharts-a11y-proxy-container-before,
.highcharts-a11y-proxy-container-after {
  position: absolute;
  white-space: nowrap;
}

g.highcharts-series, .highcharts-markers, .highcharts-point {
  outline: none;
}

/* Gantt */
.highcharts-treegrid-node-collapsed, .highcharts-treegrid-node-expanded {
  cursor: pointer;
}

.highcharts-point-connecting-path {
  fill: none;
}

.highcharts-grid-axis .highcharts-tick {
  stroke-width: 1px;
}

.highcharts-grid-axis .highcharts-axis-line {
  stroke-width: 1px;
}

.tabulator {
  position: relative;
  border: 1px solid #999;
  background-color: #888;
  font-size: 14px;
  text-align: left;
  overflow: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}
.tabulator[tabulator-layout=fitDataFill] .tabulator-tableholder .tabulator-table {
  min-width: 100%;
}
.tabulator[tabulator-layout=fitDataTable] {
  display: inline-block;
}
.tabulator.tabulator-block-select {
  user-select: none;
}
.tabulator .tabulator-header {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  border-bottom: 1px solid #999;
  background-color: #e6e6e6;
  color: #555;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
}
.tabulator .tabulator-header.tabulator-header-hidden {
  display: none;
}
.tabulator .tabulator-header .tabulator-col {
  display: inline-flex;
  position: relative;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: flex-start;
  border-right: 1px solid #aaa;
  background: #e6e6e6;
  text-align: left;
  vertical-align: bottom;
  overflow: hidden;
}
.tabulator .tabulator-header .tabulator-col.tabulator-moving {
  position: absolute;
  border: 1px solid #999;
  background: #cdcdcd;
  pointer-events: none;
}
.tabulator .tabulator-header .tabulator-col .tabulator-col-content {
  box-sizing: border-box;
  position: relative;
  padding: 4px;
}
.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-header-popup-button {
  padding: 0 8px;
}
.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-header-popup-button:hover {
  cursor: pointer;
  opacity: 0.6;
}
.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title-holder {
  position: relative;
}
.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title {
  box-sizing: border-box;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
}
.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title .tabulator-title-editor {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #999;
  padding: 1px;
  background: #fff;
}
.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title .tabulator-header-popup-button + .tabulator-title-editor {
  width: calc(100% - 22px);
}
.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-sorter {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 4px;
}
.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-sorter .tabulator-arrow {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #bbb;
}
.tabulator .tabulator-header .tabulator-col.tabulator-col-group .tabulator-col-group-cols {
  position: relative;
  display: flex;
  border-top: 1px solid #aaa;
  overflow: hidden;
  margin-right: -1px;
}
.tabulator .tabulator-header .tabulator-col .tabulator-header-filter {
  position: relative;
  box-sizing: border-box;
  margin-top: 2px;
  width: 100%;
  text-align: center;
}
.tabulator .tabulator-header .tabulator-col .tabulator-header-filter textarea {
  height: auto !important;
}
.tabulator .tabulator-header .tabulator-col .tabulator-header-filter svg {
  margin-top: 3px;
}
.tabulator .tabulator-header .tabulator-col .tabulator-header-filter input::-ms-clear {
  width: 0;
  height: 0;
}
.tabulator .tabulator-header .tabulator-col.tabulator-sortable .tabulator-col-title {
  padding-right: 25px;
}
.tabulator .tabulator-header .tabulator-col.tabulator-sortable:hover {
  cursor: pointer;
  background-color: #cdcdcd;
}
.tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort=none] .tabulator-col-content .tabulator-col-sorter {
  color: #bbb;
}
.tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort=none] .tabulator-col-content .tabulator-col-sorter .tabulator-arrow {
  border-top: none;
  border-bottom: 6px solid #bbb;
}
.tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort=ascending] .tabulator-col-content .tabulator-col-sorter {
  color: #666;
}
.tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort=ascending] .tabulator-col-content .tabulator-col-sorter .tabulator-arrow {
  border-top: none;
  border-bottom: 6px solid #666;
}
.tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort=descending] .tabulator-col-content .tabulator-col-sorter {
  color: #666;
}
.tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort=descending] .tabulator-col-content .tabulator-col-sorter .tabulator-arrow {
  border-bottom: none;
  border-top: 6px solid #666;
  color: #666;
}
.tabulator .tabulator-header .tabulator-col.tabulator-col-vertical .tabulator-col-content .tabulator-col-title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tabulator .tabulator-header .tabulator-col.tabulator-col-vertical.tabulator-col-vertical-flip .tabulator-col-title {
  transform: rotate(180deg);
}
.tabulator .tabulator-header .tabulator-col.tabulator-col-vertical.tabulator-sortable .tabulator-col-title {
  padding-right: 0;
  padding-top: 20px;
}
.tabulator .tabulator-header .tabulator-col.tabulator-col-vertical.tabulator-sortable.tabulator-col-vertical-flip .tabulator-col-title {
  padding-right: 0;
  padding-bottom: 20px;
}
.tabulator .tabulator-header .tabulator-col.tabulator-col-vertical.tabulator-sortable .tabulator-col-sorter {
  justify-content: center;
  left: 0;
  right: 0;
  top: 4px;
  bottom: auto;
}
.tabulator .tabulator-header .tabulator-frozen {
  position: absolute;
  z-index: 10;
}
.tabulator .tabulator-header .tabulator-frozen.tabulator-frozen-left {
  border-right: 2px solid #aaa;
}
.tabulator .tabulator-header .tabulator-frozen.tabulator-frozen-right {
  border-left: 2px solid #aaa;
}
.tabulator .tabulator-header .tabulator-calcs-holder {
  box-sizing: border-box;
  min-width: 600%;
  background: #f3f3f3 !important;
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  overflow: hidden;
}
.tabulator .tabulator-header .tabulator-calcs-holder .tabulator-row {
  background: #f3f3f3 !important;
}
.tabulator .tabulator-header .tabulator-calcs-holder .tabulator-row .tabulator-col-resize-handle {
  display: none;
}
.tabulator .tabulator-header .tabulator-frozen-rows-holder {
  min-width: 600%;
}
.tabulator .tabulator-header .tabulator-frozen-rows-holder:empty {
  display: none;
}
.tabulator .tabulator-tableholder {
  position: relative;
  width: 100%;
  white-space: nowrap;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.tabulator .tabulator-tableholder:focus {
  outline: none;
}
.tabulator .tabulator-tableholder .tabulator-placeholder {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  width: 100%;
}
.tabulator .tabulator-tableholder .tabulator-placeholder[tabulator-render-mode=virtual] {
  min-height: 100%;
  min-width: 100%;
}
.tabulator .tabulator-tableholder .tabulator-placeholder .tabulator-placeholder-contents {
  display: inline-block;
  text-align: center;
  padding: 10px;
  color: #ccc;
  font-weight: bold;
  font-size: 20px;
  white-space: normal;
}
.tabulator .tabulator-tableholder .tabulator-table {
  position: relative;
  display: inline-block;
  background-color: #fff;
  white-space: nowrap;
  overflow: visible;
  color: #333;
}
.tabulator .tabulator-tableholder .tabulator-table .tabulator-row.tabulator-calcs {
  font-weight: bold;
  background: #e2e2e2 !important;
}
.tabulator .tabulator-tableholder .tabulator-table .tabulator-row.tabulator-calcs.tabulator-calcs-top {
  border-bottom: 2px solid #aaa;
}
.tabulator .tabulator-tableholder .tabulator-table .tabulator-row.tabulator-calcs.tabulator-calcs-bottom {
  border-top: 2px solid #aaa;
}
.tabulator .tabulator-footer {
  border-top: 1px solid #999;
  background-color: #e6e6e6;
  color: #555;
  font-weight: bold;
  white-space: nowrap;
  user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
}
.tabulator .tabulator-footer .tabulator-footer-contents {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
}
.tabulator .tabulator-footer .tabulator-footer-contents:empty {
  display: none;
}
.tabulator .tabulator-footer .tabulator-calcs-holder {
  box-sizing: border-box;
  width: calc(100% + 20px);
  text-align: left;
  background: #f3f3f3 !important;
  border-bottom: 1px solid #aaa;
  border-top: 1px solid #aaa;
  overflow: hidden;
}
.tabulator .tabulator-footer .tabulator-calcs-holder .tabulator-row {
  background: #f3f3f3 !important;
}
.tabulator .tabulator-footer .tabulator-calcs-holder .tabulator-row .tabulator-col-resize-handle {
  display: none;
}
.tabulator .tabulator-footer .tabulator-calcs-holder:only-child {
  margin-bottom: -5px;
  border-bottom: none;
}
.tabulator .tabulator-footer > * + .tabulator-page-counter {
  margin-left: 10px;
}
.tabulator .tabulator-footer .tabulator-page-counter {
  font-weight: normal;
}
.tabulator .tabulator-footer .tabulator-paginator {
  flex: 1;
  text-align: right;
  color: #555;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
}
.tabulator .tabulator-footer .tabulator-page-size {
  display: inline-block;
  margin: 0 5px;
  padding: 2px 5px;
  border: 1px solid #aaa;
  border-radius: 3px;
}
.tabulator .tabulator-footer .tabulator-pages {
  margin: 0 7px;
}
.tabulator .tabulator-footer .tabulator-page {
  display: inline-block;
  margin: 0 2px;
  padding: 2px 5px;
  border: 1px solid #aaa;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.2);
}
.tabulator .tabulator-footer .tabulator-page.active {
  color: #d00;
}
.tabulator .tabulator-footer .tabulator-page:disabled {
  opacity: 0.5;
}
.tabulator .tabulator-footer .tabulator-page:not(.disabled):hover {
  cursor: pointer;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
}
.tabulator .tabulator-col-resize-handle {
  position: relative;
  display: inline-block;
  width: 6px;
  margin-left: -3px;
  margin-right: -3px;
  z-index: 10;
  vertical-align: middle;
}
.tabulator .tabulator-col-resize-handle:hover {
  cursor: ew-resize;
}
.tabulator .tabulator-col-resize-handle:last-of-type {
  width: 3px;
  margin-right: 0;
}
.tabulator .tabulator-alert {
  position: absolute;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 100;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  text-align: center;
}
.tabulator .tabulator-alert .tabulator-alert-msg {
  display: inline-block;
  margin: 0 auto;
  padding: 10px 20px;
  border-radius: 10px;
  background: #fff;
  font-weight: bold;
  font-size: 16px;
}
.tabulator .tabulator-alert .tabulator-alert-msg.tabulator-alert-state-msg {
  border: 4px solid #333;
  color: #000;
}
.tabulator .tabulator-alert .tabulator-alert-msg.tabulator-alert-state-error {
  border: 4px solid #D00;
  color: #590000;
}

.tabulator-row {
  position: relative;
  box-sizing: border-box;
  min-height: 22px;
  background-color: #fff;
}
.tabulator-row.tabulator-row-even {
  background-color: #EFEFEF;
}
.tabulator-row.tabulator-selectable:hover {
  background-color: #bbb;
  cursor: pointer;
}
.tabulator-row.tabulator-selected {
  background-color: #9ABCEA;
}
.tabulator-row.tabulator-selected:hover {
  background-color: #769BCC;
  cursor: pointer;
}
.tabulator-row.tabulator-row-moving {
  border: 1px solid #000;
  background: #fff;
}
.tabulator-row.tabulator-moving {
  position: absolute;
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  pointer-events: none;
  z-index: 15;
}
.tabulator-row .tabulator-row-resize-handle {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
}
.tabulator-row .tabulator-row-resize-handle.prev {
  top: 0;
  bottom: auto;
}
.tabulator-row .tabulator-row-resize-handle:hover {
  cursor: ns-resize;
}
.tabulator-row .tabulator-frozen {
  display: inline-block;
  position: absolute;
  background-color: inherit;
  z-index: 10;
}
.tabulator-row .tabulator-frozen.tabulator-frozen-left {
  border-right: 2px solid #aaa;
}
.tabulator-row .tabulator-frozen.tabulator-frozen-right {
  border-left: 2px solid #aaa;
}
.tabulator-row .tabulator-responsive-collapse {
  box-sizing: border-box;
  padding: 5px;
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
}
.tabulator-row .tabulator-responsive-collapse:empty {
  display: none;
}
.tabulator-row .tabulator-responsive-collapse table {
  font-size: 14px;
}
.tabulator-row .tabulator-responsive-collapse table tr td {
  position: relative;
}
.tabulator-row .tabulator-responsive-collapse table tr td:first-of-type {
  padding-right: 10px;
}
.tabulator-row .tabulator-cell {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  padding: 4px;
  border-right: 1px solid #aaa;
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tabulator-row .tabulator-cell.tabulator-editing {
  border: 1px solid #1D68CD;
  outline: none;
  padding: 0;
}
.tabulator-row .tabulator-cell.tabulator-editing input, .tabulator-row .tabulator-cell.tabulator-editing select {
  border: 1px;
  background: transparent;
  outline: none;
}
.tabulator-row .tabulator-cell.tabulator-validation-fail {
  border: 1px solid #dd0000;
}
.tabulator-row .tabulator-cell.tabulator-validation-fail input, .tabulator-row .tabulator-cell.tabulator-validation-fail select {
  border: 1px;
  background: transparent;
  color: #dd0000;
}
.tabulator-row .tabulator-cell.tabulator-row-handle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
}
.tabulator-row .tabulator-cell.tabulator-row-handle .tabulator-row-handle-box {
  width: 80%;
}
.tabulator-row .tabulator-cell.tabulator-row-handle .tabulator-row-handle-box .tabulator-row-handle-bar {
  width: 100%;
  height: 3px;
  margin-top: 2px;
  background: #666;
}
.tabulator-row .tabulator-cell .tabulator-data-tree-branch {
  display: inline-block;
  vertical-align: middle;
  height: 9px;
  width: 7px;
  margin-top: -9px;
  margin-right: 5px;
  border-bottom-left-radius: 1px;
  border-left: 2px solid #aaa;
  border-bottom: 2px solid #aaa;
}
.tabulator-row .tabulator-cell .tabulator-data-tree-control {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  height: 11px;
  width: 11px;
  margin-right: 5px;
  border: 1px solid #333;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.tabulator-row .tabulator-cell .tabulator-data-tree-control:hover {
  cursor: pointer;
  background: rgba(0, 0, 0, 0.2);
}
.tabulator-row .tabulator-cell .tabulator-data-tree-control .tabulator-data-tree-control-collapse {
  display: inline-block;
  position: relative;
  height: 7px;
  width: 1px;
  background: transparent;
}
.tabulator-row .tabulator-cell .tabulator-data-tree-control .tabulator-data-tree-control-collapse:after {
  position: absolute;
  content: "";
  left: -3px;
  top: 3px;
  height: 1px;
  width: 7px;
  background: #333;
}
.tabulator-row .tabulator-cell .tabulator-data-tree-control .tabulator-data-tree-control-expand {
  display: inline-block;
  position: relative;
  height: 7px;
  width: 1px;
  background: #333;
}
.tabulator-row .tabulator-cell .tabulator-data-tree-control .tabulator-data-tree-control-expand:after {
  position: absolute;
  content: "";
  left: -3px;
  top: 3px;
  height: 1px;
  width: 7px;
  background: #333;
}
.tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  height: 15px;
  width: 15px;
  border-radius: 20px;
  background: #666;
  color: #fff;
  font-weight: bold;
  font-size: 1.1em;
}
.tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle:hover {
  opacity: 0.7;
}
.tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle.open .tabulator-responsive-collapse-toggle-close {
  display: initial;
}
.tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle.open .tabulator-responsive-collapse-toggle-open {
  display: none;
}
.tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle .tabulator-responsive-collapse-toggle-close {
  display: none;
}
.tabulator-row .tabulator-cell .tabulator-traffic-light {
  display: inline-block;
  height: 14px;
  width: 14px;
  border-radius: 14px;
}
.tabulator-row.tabulator-group {
  box-sizing: border-box;
  border-bottom: 1px solid #999;
  border-right: 1px solid #aaa;
  border-top: 1px solid #999;
  padding: 5px;
  padding-left: 10px;
  background: #ccc;
  font-weight: bold;
  min-width: 100%;
}
.tabulator-row.tabulator-group:hover {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.1);
}
.tabulator-row.tabulator-group.tabulator-group-visible .tabulator-arrow {
  margin-right: 10px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666;
  border-bottom: 0;
}
.tabulator-row.tabulator-group.tabulator-group-level-1 {
  padding-left: 30px;
}
.tabulator-row.tabulator-group.tabulator-group-level-2 {
  padding-left: 50px;
}
.tabulator-row.tabulator-group.tabulator-group-level-3 {
  padding-left: 70px;
}
.tabulator-row.tabulator-group.tabulator-group-level-4 {
  padding-left: 90px;
}
.tabulator-row.tabulator-group.tabulator-group-level-5 {
  padding-left: 110px;
}
.tabulator-row.tabulator-group .tabulator-group-toggle {
  display: inline-block;
}
.tabulator-row.tabulator-group .tabulator-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 16px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 0;
  border-left: 6px solid #666;
  vertical-align: middle;
}
.tabulator-row.tabulator-group span {
  margin-left: 10px;
  color: #d00;
}

.tabulator-popup-container {
  position: absolute;
  display: inline-block;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #aaa;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  font-size: 14px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 10000;
}

.tabulator-popup {
  padding: 5px;
  border-radius: 3px;
}

.tabulator-tooltip {
  max-width: min(500px, 100%);
  padding: 3px 5px;
  border-radius: 2px;
  box-shadow: none;
  font-size: 12px;
  pointer-events: none;
}

.tabulator-menu .tabulator-menu-item {
  position: relative;
  box-sizing: border-box;
  padding: 5px 10px;
  user-select: none;
}
.tabulator-menu .tabulator-menu-item.tabulator-menu-item-disabled {
  opacity: 0.5;
}
.tabulator-menu .tabulator-menu-item:not(.tabulator-menu-item-disabled):hover {
  cursor: pointer;
  background: #EFEFEF;
}
.tabulator-menu .tabulator-menu-item.tabulator-menu-item-submenu {
  padding-right: 25px;
}
.tabulator-menu .tabulator-menu-item.tabulator-menu-item-submenu::after {
  display: inline-block;
  position: absolute;
  top: calc(5px + 0.4em);
  right: 10px;
  height: 7px;
  width: 7px;
  content: "";
  border-width: 1px 1px 0 0;
  border-style: solid;
  border-color: #aaa;
  vertical-align: top;
  transform: rotate(45deg);
}
.tabulator-menu .tabulator-menu-separator {
  border-top: 1px solid #aaa;
}

.tabulator-edit-list {
  max-height: 200px;
  font-size: 14px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.tabulator-edit-list .tabulator-edit-list-item {
  padding: 4px;
  color: #333;
  outline: none;
}
.tabulator-edit-list .tabulator-edit-list-item.active {
  color: #fff;
  background: #1D68CD;
}
.tabulator-edit-list .tabulator-edit-list-item.active.focused {
  outline: 1px solid rgba(255, 255, 255, 0.5);
}
.tabulator-edit-list .tabulator-edit-list-item.focused {
  outline: 1px solid #1D68CD;
}
.tabulator-edit-list .tabulator-edit-list-item:hover {
  cursor: pointer;
  color: #fff;
  background: #1D68CD;
}
.tabulator-edit-list .tabulator-edit-list-placeholder {
  padding: 4px;
  color: #333;
  text-align: center;
}
.tabulator-edit-list .tabulator-edit-list-group {
  border-bottom: 1px solid #aaa;
  padding: 4px;
  padding-top: 6px;
  color: #333;
  font-weight: bold;
}
.tabulator-edit-list .tabulator-edit-list-item.tabulator-edit-list-group-level-2, .tabulator-edit-list .tabulator-edit-list-group.tabulator-edit-list-group-level-2 {
  padding-left: 12px;
}
.tabulator-edit-list .tabulator-edit-list-item.tabulator-edit-list-group-level-3, .tabulator-edit-list .tabulator-edit-list-group.tabulator-edit-list-group-level-3 {
  padding-left: 20px;
}
.tabulator-edit-list .tabulator-edit-list-item.tabulator-edit-list-group-level-4, .tabulator-edit-list .tabulator-edit-list-group.tabulator-edit-list-group-level-4 {
  padding-left: 28px;
}
.tabulator-edit-list .tabulator-edit-list-item.tabulator-edit-list-group-level-5, .tabulator-edit-list .tabulator-edit-list-group.tabulator-edit-list-group-level-5 {
  padding-left: 36px;
}

.tabulator.tabulator-ltr {
  direction: ltr;
}

.tabulator.tabulator-rtl {
  text-align: initial;
  direction: rtl;
}
.tabulator.tabulator-rtl .tabulator-header .tabulator-col {
  text-align: initial;
  border-left: 1px solid #aaa;
  border-right: initial;
}
.tabulator.tabulator-rtl .tabulator-header .tabulator-col.tabulator-col-group .tabulator-col-group-cols {
  margin-right: initial;
  margin-left: -1px;
}
.tabulator.tabulator-rtl .tabulator-header .tabulator-col.tabulator-sortable .tabulator-col-title {
  padding-right: 0;
  padding-left: 25px;
}
.tabulator.tabulator-rtl .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-sorter {
  left: 8px;
  right: initial;
}
.tabulator.tabulator-rtl .tabulator-row .tabulator-cell {
  border-right: initial;
  border-left: 1px solid #aaa;
}
.tabulator.tabulator-rtl .tabulator-row .tabulator-cell .tabulator-data-tree-branch {
  margin-right: initial;
  margin-left: 5px;
  border-bottom-left-radius: initial;
  border-bottom-right-radius: 1px;
  border-left: initial;
  border-right: 2px solid #aaa;
}
.tabulator.tabulator-rtl .tabulator-row .tabulator-cell .tabulator-data-tree-control {
  margin-right: initial;
  margin-left: 5px;
}
.tabulator.tabulator-rtl .tabulator-footer .tabulator-calcs-holder {
  text-align: initial;
}

.tabulator-print-fullscreen {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
}

body.tabulator-print-fullscreen-hide > *:not(.tabulator-print-fullscreen) {
  display: none !important;
}

.tabulator-print-table {
  border-collapse: collapse;
}
.tabulator-print-table .tabulator-data-tree-branch {
  display: inline-block;
  vertical-align: middle;
  height: 9px;
  width: 7px;
  margin-top: -9px;
  margin-right: 5px;
  border-bottom-left-radius: 1px;
  border-left: 2px solid #aaa;
  border-bottom: 2px solid #aaa;
}
.tabulator-print-table .tabulator-print-table-group {
  box-sizing: border-box;
  border-bottom: 1px solid #999;
  border-right: 1px solid #aaa;
  border-top: 1px solid #999;
  padding: 5px;
  padding-left: 10px;
  background: #ccc;
  font-weight: bold;
  min-width: 100%;
}
.tabulator-print-table .tabulator-print-table-group:hover {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.1);
}
.tabulator-print-table .tabulator-print-table-group.tabulator-group-visible .tabulator-arrow {
  margin-right: 10px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666;
  border-bottom: 0;
}
.tabulator-print-table .tabulator-print-table-group.tabulator-group-level-1 td {
  padding-left: 30px !important;
}
.tabulator-print-table .tabulator-print-table-group.tabulator-group-level-2 td {
  padding-left: 50px !important;
}
.tabulator-print-table .tabulator-print-table-group.tabulator-group-level-3 td {
  padding-left: 70px !important;
}
.tabulator-print-table .tabulator-print-table-group.tabulator-group-level-4 td {
  padding-left: 90px !important;
}
.tabulator-print-table .tabulator-print-table-group.tabulator-group-level-5 td {
  padding-left: 110px !important;
}
.tabulator-print-table .tabulator-print-table-group .tabulator-group-toggle {
  display: inline-block;
}
.tabulator-print-table .tabulator-print-table-group .tabulator-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 16px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 0;
  border-left: 6px solid #666;
  vertical-align: middle;
}
.tabulator-print-table .tabulator-print-table-group span {
  margin-left: 10px;
  color: #d00;
}
.tabulator-print-table .tabulator-data-tree-control {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  height: 11px;
  width: 11px;
  margin-right: 5px;
  border: 1px solid #333;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.tabulator-print-table .tabulator-data-tree-control:hover {
  cursor: pointer;
  background: rgba(0, 0, 0, 0.2);
}
.tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-collapse {
  display: inline-block;
  position: relative;
  height: 7px;
  width: 1px;
  background: transparent;
}
.tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-collapse:after {
  position: absolute;
  content: "";
  left: -3px;
  top: 3px;
  height: 1px;
  width: 7px;
  background: #333;
}
.tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-expand {
  display: inline-block;
  position: relative;
  height: 7px;
  width: 1px;
  background: #333;
}
.tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-expand:after {
  position: absolute;
  content: "";
  left: -3px;
  top: 3px;
  height: 1px;
  width: 7px;
  background: #333;
}

body.tempusdominus-bootstrap-datetimepicker-widget-day-click,
body.tempusdominus-bootstrap-datetimepicker-widget-day-click * {
  cursor: pointer !important;
}

body.tempusdominus-bootstrap-datetimepicker-widget-day-click {
  position: relative !important;
}

.tempusdominus-bootstrap-datetimepicker-widget-day-click-glass-panel {
  position: absolute;
  z-index: 999999999999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer !important;
}

.bootstrap-datetimepicker-widget .datepicker-days tbody td {
  cursor: pointer;
}

.bootstrap-datetimepicker-widget {
  list-style: none;
}
.bootstrap-datetimepicker-widget.dropdown-menu {
  display: block;
  margin: 2px 0;
  padding: 4px;
  width: 14rem;
}
.bootstrap-datetimepicker-widget.dropdown-menu.tempusdominus-bootstrap-datetimepicker-widget-with-feather-icons {
  width: 16rem;
}
.bootstrap-datetimepicker-widget.dropdown-menu.tempusdominus-bootstrap-datetimepicker-widget-with-calendar-weeks {
  width: 16rem;
}
.bootstrap-datetimepicker-widget.dropdown-menu.tempusdominus-bootstrap-datetimepicker-widget-with-calendar-weeks.tempusdominus-bootstrap-datetimepicker-widget-with-feather-icons {
  width: 17rem;
}
@media (min-width: 576px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
@media (min-width: 768px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
@media (min-width: 992px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
.bootstrap-datetimepicker-widget.dropdown-menu:before, .bootstrap-datetimepicker-widget.dropdown-menu:after {
  content: "";
  display: inline-block;
  position: absolute;
}
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  top: -7px;
  left: 7px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  top: -6px;
  left: 8px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.top:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #ccc;
  border-top-color: rgba(0, 0, 0, 0.2);
  bottom: -7px;
  left: 6px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.top:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid white;
  bottom: -6px;
  left: 7px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.float-right:before {
  left: auto;
  right: 6px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.float-right:after {
  left: auto;
  right: 7px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.wider {
  width: 16rem;
}
.bootstrap-datetimepicker-widget .list-unstyled {
  margin: 0;
}
.bootstrap-datetimepicker-widget a[data-action] {
  padding: 6px 0;
}
.bootstrap-datetimepicker-widget a[data-action]:active {
  box-shadow: none;
}
.bootstrap-datetimepicker-widget .timepicker-hour, .bootstrap-datetimepicker-widget .timepicker-minute, .bootstrap-datetimepicker-widget .timepicker-second {
  width: 54px;
  font-weight: bold;
  font-size: 1.2em;
  margin: 0;
}
.bootstrap-datetimepicker-widget button[data-action] {
  padding: 6px;
}
.bootstrap-datetimepicker-widget .btn[data-action=togglePeriod] {
  text-align: center;
  font-family: Arial, sans-serif, -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  width: 38px;
  height: 38px;
}
.bootstrap-datetimepicker-widget .btn[data-action=incrementHours]::after {
  content: "Increment Hours";
}
.bootstrap-datetimepicker-widget .btn[data-action=incrementMinutes]::after {
  content: "Increment Minutes";
}
.bootstrap-datetimepicker-widget .btn[data-action=decrementHours]::after {
  content: "Decrement Hours";
}
.bootstrap-datetimepicker-widget .btn[data-action=decrementMinutes]::after {
  content: "Decrement Minutes";
}
.bootstrap-datetimepicker-widget .btn[data-action=showHours]::after {
  content: "Show Hours";
}
.bootstrap-datetimepicker-widget .btn[data-action=showMinutes]::after {
  content: "Show Minutes";
}
.bootstrap-datetimepicker-widget .btn[data-action=togglePeriod]::after {
  content: "Toggle AM/PM";
}
.bootstrap-datetimepicker-widget .btn[data-action=clear]::after {
  content: "Clear the picker";
}
.bootstrap-datetimepicker-widget .btn[data-action=today]::after {
  content: "Set the date to today";
}
.bootstrap-datetimepicker-widget .picker-switch {
  text-align: center;
}
.bootstrap-datetimepicker-widget .picker-switch::after {
  content: "Toggle Date and Time Screens";
}
.bootstrap-datetimepicker-widget .picker-switch td {
  padding: 0;
  margin: 0;
  height: auto;
  width: auto;
  line-height: inherit;
}
.bootstrap-datetimepicker-widget .picker-switch td span {
  line-height: 2.5;
  height: 2.5em;
  width: 100%;
}
.bootstrap-datetimepicker-widget .picker-switch.picker-switch-with-feathers-icons td span {
  line-height: 2.8;
  height: 2.8em;
}
.bootstrap-datetimepicker-widget table {
  width: 100%;
  margin: 0;
}
.bootstrap-datetimepicker-widget table td, .bootstrap-datetimepicker-widget table th {
  text-align: center;
  border-radius: 4px;
}
.bootstrap-datetimepicker-widget table th {
  height: 20px;
  line-height: 20px;
  width: 20px;
}
.bootstrap-datetimepicker-widget table th.picker-switch {
  width: 145px;
}
.bootstrap-datetimepicker-widget table th.disabled, .bootstrap-datetimepicker-widget table th.disabled:hover {
  background: none;
  color: #5E6771;
  cursor: not-allowed;
}
.bootstrap-datetimepicker-widget table th.prev::after {
  content: "Previous Month";
}
.bootstrap-datetimepicker-widget table th.next::after {
  content: "Next Month";
}
.bootstrap-datetimepicker-widget table thead tr:first-child th {
  cursor: pointer;
}
.bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
  background: #F7F7F7;
}
.bootstrap-datetimepicker-widget table td {
  height: 54px;
  line-height: 54px;
  width: 54px;
}
.bootstrap-datetimepicker-widget table td.cw {
  font-size: 0.8em;
  height: 20px;
  line-height: 20px;
  color: #5E6771;
  cursor: default;
}
.bootstrap-datetimepicker-widget table td.day {
  height: 20px;
  line-height: 20px;
  width: 20px;
}
.bootstrap-datetimepicker-widget table td.day:hover, .bootstrap-datetimepicker-widget table td.hour:hover, .bootstrap-datetimepicker-widget table td.minute:hover, .bootstrap-datetimepicker-widget table td.second:hover {
  background: #F7F7F7;
  cursor: pointer;
}
.bootstrap-datetimepicker-widget table td.old, .bootstrap-datetimepicker-widget table td.new {
  color: #5E6771;
}
.bootstrap-datetimepicker-widget table td.today {
  position: relative;
}
.bootstrap-datetimepicker-widget table td.today:before {
  content: "";
  display: inline-block;
  border: solid transparent;
  border-width: 0 0 7px 7px;
  border-bottom-color: #3C52D7;
  border-top-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 4px;
  right: 4px;
}
.bootstrap-datetimepicker-widget table td.active, .bootstrap-datetimepicker-widget table td.active:hover {
  background-color: #3C52D7;
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.bootstrap-datetimepicker-widget table td.active.today:before {
  border-bottom-color: #fff;
}
.bootstrap-datetimepicker-widget table td.disabled, .bootstrap-datetimepicker-widget table td.disabled:hover {
  background: none;
  color: #5E6771;
  cursor: not-allowed;
}
.bootstrap-datetimepicker-widget table td span {
  display: inline-block;
  width: 54px;
  height: 54px;
  line-height: 54px;
  margin-top: 2px;
  margin-bottom: 2px;
  cursor: pointer;
  border-radius: 4px;
}
.bootstrap-datetimepicker-widget table td span:hover {
  background: #F7F7F7;
}
.bootstrap-datetimepicker-widget table td span.active {
  background-color: #3C52D7;
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.bootstrap-datetimepicker-widget table td span.old {
  color: #5E6771;
}
.bootstrap-datetimepicker-widget table td span.disabled, .bootstrap-datetimepicker-widget table td span.disabled:hover {
  background: none;
  color: #5E6771;
  cursor: not-allowed;
}
.bootstrap-datetimepicker-widget.usetwentyfour td.hour {
  height: 27px;
  line-height: 27px;
}
.bootstrap-datetimepicker-widget .timepicker .timepicker-picker a.btn {
  color: #007bff;
  color: var(--blue, #007bff);
}
.bootstrap-datetimepicker-widget .timepicker .timepicker-picker a.btn:hover {
  color: #0056b3;
}
.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td.day, .bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td.hour, .bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td.minute, .bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td.second,
.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=incrementHours], .bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=incrementMinutes], .bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=incrementSeconds],
.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=decrementHours], .bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=decrementMinutes], .bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=decrementSeconds],
.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=showHours], .bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=showMinutes], .bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=showSeconds],
.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=togglePeriod] {
  pointer-events: none;
  cursor: default;
}
.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td.day:hover, .bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td.hour:hover, .bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td.minute:hover, .bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td.second:hover,
.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=incrementHours]:hover, .bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=incrementMinutes]:hover, .bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=incrementSeconds]:hover,
.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=decrementHours]:hover, .bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=decrementMinutes]:hover, .bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=decrementSeconds]:hover,
.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=showHours]:hover, .bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=showMinutes]:hover, .bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=showSeconds]:hover,
.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=togglePeriod]:hover {
  background: none;
}

.input-group [data-toggle=datetimepicker] {
  cursor: pointer;
}

body {
  padding-top: 52px;
}

.dnone {
  display: none;
}

#avatarimg img {
  max-width: 33px;
}

#top-nav {
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.0509803922);
  padding-bottom: 8px;
}

.nav-tabs {
  border: 0;
}
.nav-tabs .nav-link {
  padding: 1rem 2rem;
  cursor: pointer;
  color: #354052;
}
.nav-tabs .nav-item {
  z-index: 1;
}
.nav-tabs .nav-item a {
  color: #354052;
}

.tab-content {
  border: 2px solid #ECEBEB;
  margin: 0px;
  padding: 16px;
  background: #ffffff;
}

nav.navbar.navbar-expand-lg .nav-tabs .active .nav-link {
  color: #354052;
  background-color: #ffffff;
  border-color: #ecebeb #ecebeb #ffffff;
}

/* NEW  */
.responsive-nav-menu-container {
  display: flex;
  position: relative;
  height: 53px;
  margin-right: 4px;
}
.responsive-nav-menu-container ul {
  position: absolute;
  overflow-y: hidden;
  width: 100%;
  overflow-x: scroll;
  flex-wrap: nowrap;
  scroll-behavior: smooth;
}
.responsive-nav-menu-container ul li {
  white-space: nowrap;
}
.responsive-nav-menu-container ul::-webkit-scrollbar {
  display: none;
}
.responsive-nav-menu-container .responsive-tab-menu-btn {
  position: absolute;
  z-index: 2;
  top: 14px;
}
.responsive-nav-menu-container .responsive-tab-menu-btn:hover {
  cursor: pointer;
}
.responsive-nav-menu-container .responsive-tab-menu-btn:first-of-type {
  left: 0;
}
.responsive-nav-menu-container .responsive-tab-menu-btn:last-of-type {
  right: -4px;
}
.responsive-nav-menu-container .responsive-tab-menu-btn-disabled {
  display: none;
}

.nav-pills .nav-item {
  padding-right: 8px;
  margin-bottom: 8px;
  width: 33.33%;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .nav-pills .nav-item {
    width: 100%;
    padding-right: 0;
  }
}
.nav-pills .nav-item:nth-child(3n) {
  padding-right: 0;
}
.nav-pills .nav-link {
  border: 1px solid #ECEBEB;
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: left;
  color: #3f3f47;
}
.nav-pills .nav-link:hover {
  border-color: #44b1a6;
  color: #44b1a6;
  background-color: #f8fcfc;
}
.nav-pills .nav-link.active {
  border-color: #44b1a6;
  color: #44b1a6;
  background-color: #f8fcfc;
}
.nav-pills .nav-link.disabled {
  color: #bdbdbd;
  cursor: not-allowed;
}

.table {
  background-color: transparent;
  border-collapse: separate;
  border-spacing: 0 5px;
  border-color: transparent;
}
.table tbody tr td:first-child {
  border-left-color: inherit;
}
.table tr {
  background-color: var(--white);
}
.table tr td:first-child {
  border-left-color: inherit;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  border-left: 5px solid;
  border-width: 0 1px 0 5px;
}
.table tr td:last-child {
  border-left-color: inherit;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-right: 0;
}
.table th,
.table td {
  vertical-align: middle;
  white-space: nowrap;
  border-top: 0 !important;
  border-bottom: 0 !important;
}
.table thead th {
  vertical-align: middle;
  border-bottom: none;
  border-right: 1px solid #FAFAFA;
}
.table thead a {
  color: #292b2c;
}
.table thead td:first-child, .table thead thead td:last-child {
  border-left: 5px solid var(--white);
}
.table img {
  max-width: 30px;
}
.table .LinkUpdateDelete {
  min-width: 120px;
  text-align: center;
}

.grid-view thead th a {
  display: block;
}
.grid-view tr td.button-column a {
  padding: 6px 12px;
  font-size: 0.875rem;
}
.grid-view tr td.button-column a.update:hover {
  color: #2f7a72;
}
.grid-view tr td.button-column a.delete {
  color: #D33543;
}
.grid-view tr td.button-column a.delete:hover {
  color: #9a222c;
}

.table-bordered {
  border: 5px solid transparent;
}
.table-bordered tr:not(.filters):hover {
  background-color: #ECEBEB;
}
.table-bordered td, .table-bordered th {
  border-left-width: 0;
  border-right-width: 1px;
}
.table-bordered-sm tbody tr {
  height: 40px;
}
.table-bordered-md tbody tr {
  height: 60px;
}
.table-bordered-lg tbody tr {
  height: 80px;
}

.filters td {
  border: none;
  border-right: 1px solid #F7F7F7;
}

.table-bg-light table {
  background-color: #ECEBEB;
}
.table-bg-light table tr td:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-width: 0 1px 0 0;
}
.table-bg-light table tr td:last-child {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.thead-light .form-check-input[type=checkbox]:not(:checked) + label:after, .thead-light label.btn input[type=checkbox]:not(:checked) + label:after {
  border: 2px solid #ffffff;
}

::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 5px;
  height: 5px;
  cursor: grab;
}

::-webkit-scrollbar-thumb {
  border-radius: 1px;
  background-color: rgba(58, 58, 58, 0.63);
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}
::-webkit-scrollbar-thumb:hover {
  cursor: grab;
}

.box-scroll {
  position: relative;
}

.box-topscroll, .table-responsive {
  overflow: scroll;
}

.box-topscroll {
  width: -webkit-fill-available;
}

.topscroll {
  width: 1000px;
  overflow: scroll;
  cursor: grab;
}

.table-responsive .table {
  position: relative;
}

.action-col .dropleft .dropdown-toggle::before {
  content: none !important;
}

.action-col .dropleft .dropdown-toggle {
  outline: none !important;
  box-shadow: none !important;
}

.action-col .dropdown-menu {
  min-width: 105px;
}

.action-col ul li {
  list-style: none;
  margin-bottom: 5px;
}

.action-col .dropdown-menu a {
  color: #292b2c;
}

.md-form.input-group .input-group-text [type=checkbox] + label,
.input-group .input-group-text [type=checkbox] + label {
  padding-left: 18px;
}

.md-form.input-group .input-group-text .filled-in[type=checkbox] + label,
.input-group .input-group-text .filled-in[type=checkbox] + label {
  height: 20px;
}

.md-form.input-group .input-group-text [type=radio] + label,
.input-group .input-group-text [type=radio] + label {
  height: 24px;
  padding-left: 24px;
}

.input-group-append .btn-floating,
.input-group-append .btn-floating.btn-sm {
  margin: 0 0 0 0.25rem;
}

.input-file-group {
  display: flex;
}
.input-file-group input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.input-file-group input:invalid {
  border: 2px dashed red;
}
.input-file-group label {
  cursor: pointer;
}
.input-file-group span {
  flex: 1;
  display: inline-block;
  border: 1px solid #ECEBEB;
  border-radius: 0.25rem;
  padding: 0.375rem;
  margin-left: 0.5rem;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #5E6771;
}

/* Remove default checkbox */
[type=checkbox]:not(:checked),
[type=checkbox]:checked {
  position: absolute;
  pointer-events: none;
  opacity: 0;
}

.form-check-input[type=checkbox] + label,
label.btn input[type=checkbox] + label {
  position: relative;
  display: inline-block;
  height: 1.42rem;
  padding-left: 35px;
  line-height: 1.42rem;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 0;
  min-width: 100%;
  margin-top: 0.5rem;
}
.form-check-input[type=checkbox] + label.form-check-label-left,
label.btn input[type=checkbox] + label.form-check-label-left {
  padding: 0 35px 0 0 !important;
}
.form-check-input[type=checkbox] + label.form-check-label-left:before,
label.btn input[type=checkbox] + label.form-check-label-left:before {
  right: 0;
  left: 100% !important;
  transform: translateX(-100%);
}
.form-check-input[type=checkbox]:not(:checked):disabled + label:before,
label.btn input[type=checkbox]:not(:checked):disabled + label:before {
  background-color: #bdbdbd;
  border: none;
}
.form-check-input[type=checkbox]:checked + label:before,
label.btn input[type=checkbox]:checked + label:before {
  top: -4px;
  left: -5px;
  width: 12px;
  height: 1.375rem;
  border-top: 2px solid transparent;
  border-right: 2px solid #A5CB2C;
  border-bottom: 2px solid #A5CB2C;
  border-left: 2px solid transparent;
  transform: rotate(40deg);
  transform-origin: 100% 100%;
  backface-visibility: hidden;
}
.form-check-input[type=checkbox]:checked + label.form-check-label-left:before,
label.btn input[type=checkbox]:checked + label.form-check-label-left:before {
  transform: translateX(0) rotateZ(40deg);
  transform-origin: 0 0;
}
.form-check-input[type=checkbox]:checked:disabled + label:before,
label.btn input[type=checkbox]:checked:disabled + label:before {
  border-right: 2px solid #bdbdbd;
  border-bottom: 2px solid #bdbdbd;
}
.form-check-input[type=checkbox]:indeterminate + label:before,
label.btn input[type=checkbox]:indeterminate + label:before {
  top: -11px;
  left: -12px;
  width: 10px;
  height: 1.375rem;
  border-top: none;
  border-right: 2px solid #A5CB2C;
  border-bottom: none;
  border-left: none;
  transform: rotate(90deg);
  transform-origin: 100% 100%;
  backface-visibility: hidden;
}
.form-check-input[type=checkbox]:indeterminate + label.form-check-label-left:before,
label.btn input[type=checkbox]:indeterminate + label.form-check-label-left:before {
  top: 0;
  transform-origin: 0 0;
}
.form-check-input[type=checkbox]:indeterminate:disabled + label:before,
label.btn input[type=checkbox]:indeterminate:disabled + label:before {
  background-color: transparent;
  border-right: 2px solid rgba(0, 0, 0, 0.46);
}
.form-check-input[type=checkbox] + label:after,
label.btn input[type=checkbox] + label:after {
  border-radius: 0.125rem;
}
.form-check-input[type=checkbox] + label:before,
.form-check-input[type=checkbox] + label:after,
label.btn input[type=checkbox] + label:before,
label.btn input[type=checkbox] + label:after {
  position: absolute;
  left: 0;
  z-index: 1;
  content: "";
  /* .1s delay is for check animation */
  transition: border 0.25s, background-color 0.25s, width 0.2s 0.1s, height 0.2s 0.1s, top 0.2s 0.1s, left 0.2s 0.1s;
}
.form-check-input[type=checkbox]:not(:checked) + label:before,
label.btn input[type=checkbox]:not(:checked) + label:before {
  top: 10px;
  left: 6px;
  width: 0;
  height: 0;
  border: 3px solid transparent;
  transform: rotateZ(37deg);
  transform-origin: 100% 100%;
}
.form-check-input[type=checkbox]:not(:checked) + label:after,
label.btn input[type=checkbox]:not(:checked) + label:after {
  top: 0px;
  z-index: 0;
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 2px solid #ECEBEB;
}
.form-check-input[type=checkbox]:checked + label:before,
label.btn input[type=checkbox]:checked + label:before {
  top: 3px;
  left: 1px;
  width: 8px;
  height: 13px;
  border-top: 2px solid transparent;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid transparent;
  transform: rotateZ(37deg);
  transform-origin: 100% 100%;
}
.form-check-input[type=checkbox]:checked + label:after,
label.btn input[type=checkbox]:checked + label:after {
  top: 0;
  z-index: 0;
  width: 20px;
  height: 20px;
  background-color: #A5CB2C;
  border: 2px solid #A5CB2C;
}
.form-check-input[type=checkbox]:disabled:not(:checked) + label:before,
label.btn input[type=checkbox]:disabled:not(:checked) + label:before {
  background-color: #bdbdbd;
  border-color: #bdbdbd;
}
.form-check-input[type=checkbox]:disabled:not(:checked) + label:after,
label.btn input[type=checkbox]:disabled:not(:checked) + label:after {
  background-color: #bdbdbd;
  border-color: #bdbdbd;
}
.form-check-input[type=checkbox]:disabled:checked + label:before,
label.btn input[type=checkbox]:disabled:checked + label:before {
  background-color: transparent;
}
.form-check-input[type=checkbox]:disabled:checked + label:after,
label.btn input[type=checkbox]:disabled:checked + label:after {
  background-color: #bdbdbd;
  border-color: #bdbdbd;
}

.form-check {
  border-bottom: 2px solid #ECEBEB;
  padding-left: 0rem;
}

.pill-checkbox {
  display: inline-block;
}
.pill-checkbox .pill-checkbox-label {
  color: #ffffff;
  padding: 0.1rem 0.5rem 0.1rem 0.25rem;
  border-radius: 5rem;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.pill-checkbox .pill-checkbox-label i {
  margin-right: 0.25rem;
}
.pill-checkbox input[type=checkbox]:checked + .pill-checkbox-label {
  background-color: #44b1a6;
}

.md-form {
  position: relative;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
}
.md-form input:not([type]),
.md-form input[type=text]:not(.browser-default),
.md-form input[type=password]:not(.browser-default),
.md-form input[type=email]:not(.browser-default),
.md-form input[type=url]:not(.browser-default),
.md-form input[type=time]:not(.browser-default),
.md-form input[type=date]:not(.browser-default),
.md-form input[type=datetime]:not(.browser-default),
.md-form input[type=datetime-local]:not(.browser-default),
.md-form input[type=tel]:not(.browser-default),
.md-form input[type=number]:not(.browser-default),
.md-form input[type=search]:not(.browser-default, .select2-search__field),
.md-form input[type=phone]:not(.browser-default),
.md-form input[type=search-md],
.md-form textarea.md-textarea {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #ECEBEB;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  transition: all 0.3s;
  font-weight: bold;
  margin-bottom: 0.3rem;
  margin-top: 0.3rem;
  padding-left: 0px;
  font-weight: 700;
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  width: 100%;
}
.md-form input:not([type]):focus:not([readonly]),
.md-form input[type=text]:not(.browser-default):focus:not([readonly]),
.md-form input[type=password]:not(.browser-default):focus:not([readonly]),
.md-form input[type=email]:not(.browser-default):focus:not([readonly]),
.md-form input[type=url]:not(.browser-default):focus:not([readonly]),
.md-form input[type=time]:not(.browser-default):focus:not([readonly]),
.md-form input[type=date]:not(.browser-default):focus:not([readonly]),
.md-form input[type=datetime]:not(.browser-default):focus:not([readonly]),
.md-form input[type=datetime-local]:not(.browser-default):focus:not([readonly]),
.md-form input[type=tel]:not(.browser-default):focus:not([readonly]),
.md-form input[type=number]:not(.browser-default):focus:not([readonly]),
.md-form input[type=search]:not(.browser-default, .select2-search__field):focus:not([readonly]),
.md-form input[type=phone]:not(.browser-default):focus:not([readonly]),
.md-form input[type=search-md]:focus:not([readonly]),
.md-form textarea.md-textarea:focus:not([readonly]) {
  border-bottom: 2px solid #44b1a6;
}
.md-form input:not([type]):focus:not([readonly]) + label,
.md-form input[type=text]:not(.browser-default):focus:not([readonly]) + label,
.md-form input[type=password]:not(.browser-default):focus:not([readonly]) + label,
.md-form input[type=email]:not(.browser-default):focus:not([readonly]) + label,
.md-form input[type=url]:not(.browser-default):focus:not([readonly]) + label,
.md-form input[type=time]:not(.browser-default):focus:not([readonly]) + label,
.md-form input[type=date]:not(.browser-default):focus:not([readonly]) + label,
.md-form input[type=datetime]:not(.browser-default):focus:not([readonly]) + label,
.md-form input[type=datetime-local]:not(.browser-default):focus:not([readonly]) + label,
.md-form input[type=tel]:not(.browser-default):focus:not([readonly]) + label,
.md-form input[type=number]:not(.browser-default):focus:not([readonly]) + label,
.md-form input[type=search]:not(.browser-default, .select2-search__field):focus:not([readonly]) + label,
.md-form input[type=phone]:not(.browser-default):focus:not([readonly]) + label,
.md-form input[type=search-md]:focus:not([readonly]) + label,
.md-form textarea.md-textarea:focus:not([readonly]) + label {
  color: #44b1a6;
}
.md-form input:not([type]) + label::after,
.md-form input[type=text]:not(.browser-default) + label::after,
.md-form input[type=password]:not(.browser-default) + label::after,
.md-form input[type=email]:not(.browser-default) + label::after,
.md-form input[type=url]:not(.browser-default) + label::after,
.md-form input[type=time]:not(.browser-default) + label::after,
.md-form input[type=date]:not(.browser-default) + label::after,
.md-form input[type=datetime]:not(.browser-default) + label::after,
.md-form input[type=datetime-local]:not(.browser-default) + label::after,
.md-form input[type=tel]:not(.browser-default) + label::after,
.md-form input[type=number]:not(.browser-default) + label::after,
.md-form input[type=search]:not(.browser-default, .select2-search__field) + label::after,
.md-form input[type=phone]:not(.browser-default) + label::after,
.md-form input[type=search-md] + label::after,
.md-form textarea.md-textarea + label::after {
  position: absolute;
  top: 65px;
  display: block;
  content: "";
  opacity: 0;
  transition: 0.2s opacity ease-out, 0.2s color ease-out;
}
.md-form input:not([type]).valid, .md-form input:not([type]):focus.valid,
.md-form input[type=text]:not(.browser-default).valid,
.md-form input[type=text]:not(.browser-default):focus.valid,
.md-form input[type=password]:not(.browser-default).valid,
.md-form input[type=password]:not(.browser-default):focus.valid,
.md-form input[type=email]:not(.browser-default).valid,
.md-form input[type=email]:not(.browser-default):focus.valid,
.md-form input[type=url]:not(.browser-default).valid,
.md-form input[type=url]:not(.browser-default):focus.valid,
.md-form input[type=time]:not(.browser-default).valid,
.md-form input[type=time]:not(.browser-default):focus.valid,
.md-form input[type=date]:not(.browser-default).valid,
.md-form input[type=date]:not(.browser-default):focus.valid,
.md-form input[type=datetime]:not(.browser-default).valid,
.md-form input[type=datetime]:not(.browser-default):focus.valid,
.md-form input[type=datetime-local]:not(.browser-default).valid,
.md-form input[type=datetime-local]:not(.browser-default):focus.valid,
.md-form input[type=tel]:not(.browser-default).valid,
.md-form input[type=tel]:not(.browser-default):focus.valid,
.md-form input[type=number]:not(.browser-default).valid,
.md-form input[type=number]:not(.browser-default):focus.valid,
.md-form input[type=search]:not(.browser-default, .select2-search__field).valid,
.md-form input[type=search]:not(.browser-default, .select2-search__field):focus.valid,
.md-form input[type=phone]:not(.browser-default).valid,
.md-form input[type=phone]:not(.browser-default):focus.valid,
.md-form input[type=search-md].valid,
.md-form input[type=search-md]:focus.valid,
.md-form textarea.md-textarea.valid,
.md-form textarea.md-textarea:focus.valid {
  border-bottom: 2px solid #A5CB2C;
}
.md-form input:not([type]).valid + label:after, .md-form input:not([type]):focus.valid + label:after,
.md-form input[type=text]:not(.browser-default).valid + label:after,
.md-form input[type=text]:not(.browser-default):focus.valid + label:after,
.md-form input[type=password]:not(.browser-default).valid + label:after,
.md-form input[type=password]:not(.browser-default):focus.valid + label:after,
.md-form input[type=email]:not(.browser-default).valid + label:after,
.md-form input[type=email]:not(.browser-default):focus.valid + label:after,
.md-form input[type=url]:not(.browser-default).valid + label:after,
.md-form input[type=url]:not(.browser-default):focus.valid + label:after,
.md-form input[type=time]:not(.browser-default).valid + label:after,
.md-form input[type=time]:not(.browser-default):focus.valid + label:after,
.md-form input[type=date]:not(.browser-default).valid + label:after,
.md-form input[type=date]:not(.browser-default):focus.valid + label:after,
.md-form input[type=datetime]:not(.browser-default).valid + label:after,
.md-form input[type=datetime]:not(.browser-default):focus.valid + label:after,
.md-form input[type=datetime-local]:not(.browser-default).valid + label:after,
.md-form input[type=datetime-local]:not(.browser-default):focus.valid + label:after,
.md-form input[type=tel]:not(.browser-default).valid + label:after,
.md-form input[type=tel]:not(.browser-default):focus.valid + label:after,
.md-form input[type=number]:not(.browser-default).valid + label:after,
.md-form input[type=number]:not(.browser-default):focus.valid + label:after,
.md-form input[type=search]:not(.browser-default, .select2-search__field).valid + label:after,
.md-form input[type=search]:not(.browser-default, .select2-search__field):focus.valid + label:after,
.md-form input[type=phone]:not(.browser-default).valid + label:after,
.md-form input[type=phone]:not(.browser-default):focus.valid + label:after,
.md-form input[type=search-md].valid + label:after,
.md-form input[type=search-md]:focus.valid + label:after,
.md-form textarea.md-textarea.valid + label:after,
.md-form textarea.md-textarea:focus.valid + label:after {
  color: #A5CB2C;
  content: attr(data-success);
  opacity: 1;
}
.md-form input:not([type]).is-invalid, .md-form input:not([type]):focus.is-invalid,
.md-form input[type=text]:not(.browser-default).is-invalid,
.md-form input[type=text]:not(.browser-default):focus.is-invalid,
.md-form input[type=password]:not(.browser-default).is-invalid,
.md-form input[type=password]:not(.browser-default):focus.is-invalid,
.md-form input[type=email]:not(.browser-default).is-invalid,
.md-form input[type=email]:not(.browser-default):focus.is-invalid,
.md-form input[type=url]:not(.browser-default).is-invalid,
.md-form input[type=url]:not(.browser-default):focus.is-invalid,
.md-form input[type=time]:not(.browser-default).is-invalid,
.md-form input[type=time]:not(.browser-default):focus.is-invalid,
.md-form input[type=date]:not(.browser-default).is-invalid,
.md-form input[type=date]:not(.browser-default):focus.is-invalid,
.md-form input[type=datetime]:not(.browser-default).is-invalid,
.md-form input[type=datetime]:not(.browser-default):focus.is-invalid,
.md-form input[type=datetime-local]:not(.browser-default).is-invalid,
.md-form input[type=datetime-local]:not(.browser-default):focus.is-invalid,
.md-form input[type=tel]:not(.browser-default).is-invalid,
.md-form input[type=tel]:not(.browser-default):focus.is-invalid,
.md-form input[type=number]:not(.browser-default).is-invalid,
.md-form input[type=number]:not(.browser-default):focus.is-invalid,
.md-form input[type=search]:not(.browser-default, .select2-search__field).is-invalid,
.md-form input[type=search]:not(.browser-default, .select2-search__field):focus.is-invalid,
.md-form input[type=phone]:not(.browser-default).is-invalid,
.md-form input[type=phone]:not(.browser-default):focus.is-invalid,
.md-form input[type=search-md].is-invalid,
.md-form input[type=search-md]:focus.is-invalid,
.md-form textarea.md-textarea.is-invalid,
.md-form textarea.md-textarea:focus.is-invalid {
  border-bottom: 2px solid #D33543;
}
.md-form input:not([type]).is-invalid + label:after, .md-form input:not([type]):focus.is-invalid + label:after,
.md-form input[type=text]:not(.browser-default).is-invalid + label:after,
.md-form input[type=text]:not(.browser-default):focus.is-invalid + label:after,
.md-form input[type=password]:not(.browser-default).is-invalid + label:after,
.md-form input[type=password]:not(.browser-default):focus.is-invalid + label:after,
.md-form input[type=email]:not(.browser-default).is-invalid + label:after,
.md-form input[type=email]:not(.browser-default):focus.is-invalid + label:after,
.md-form input[type=url]:not(.browser-default).is-invalid + label:after,
.md-form input[type=url]:not(.browser-default):focus.is-invalid + label:after,
.md-form input[type=time]:not(.browser-default).is-invalid + label:after,
.md-form input[type=time]:not(.browser-default):focus.is-invalid + label:after,
.md-form input[type=date]:not(.browser-default).is-invalid + label:after,
.md-form input[type=date]:not(.browser-default):focus.is-invalid + label:after,
.md-form input[type=datetime]:not(.browser-default).is-invalid + label:after,
.md-form input[type=datetime]:not(.browser-default):focus.is-invalid + label:after,
.md-form input[type=datetime-local]:not(.browser-default).is-invalid + label:after,
.md-form input[type=datetime-local]:not(.browser-default):focus.is-invalid + label:after,
.md-form input[type=tel]:not(.browser-default).is-invalid + label:after,
.md-form input[type=tel]:not(.browser-default):focus.is-invalid + label:after,
.md-form input[type=number]:not(.browser-default).is-invalid + label:after,
.md-form input[type=number]:not(.browser-default):focus.is-invalid + label:after,
.md-form input[type=search]:not(.browser-default, .select2-search__field).is-invalid + label:after,
.md-form input[type=search]:not(.browser-default, .select2-search__field):focus.is-invalid + label:after,
.md-form input[type=phone]:not(.browser-default).is-invalid + label:after,
.md-form input[type=phone]:not(.browser-default):focus.is-invalid + label:after,
.md-form input[type=search-md].is-invalid + label:after,
.md-form input[type=search-md]:focus.is-invalid + label:after,
.md-form textarea.md-textarea.is-invalid + label:after,
.md-form textarea.md-textarea:focus.is-invalid + label:after {
  color: #D33543;
  content: attr(data-error);
  opacity: 1;
}
.md-form input:not([type]).form-control.valid + label:after, .md-form input:not([type]).form-control:focus.valid + label:after,
.md-form input[type=text]:not(.browser-default).form-control.valid + label:after,
.md-form input[type=text]:not(.browser-default).form-control:focus.valid + label:after,
.md-form input[type=password]:not(.browser-default).form-control.valid + label:after,
.md-form input[type=password]:not(.browser-default).form-control:focus.valid + label:after,
.md-form input[type=email]:not(.browser-default).form-control.valid + label:after,
.md-form input[type=email]:not(.browser-default).form-control:focus.valid + label:after,
.md-form input[type=url]:not(.browser-default).form-control.valid + label:after,
.md-form input[type=url]:not(.browser-default).form-control:focus.valid + label:after,
.md-form input[type=time]:not(.browser-default).form-control.valid + label:after,
.md-form input[type=time]:not(.browser-default).form-control:focus.valid + label:after,
.md-form input[type=date]:not(.browser-default).form-control.valid + label:after,
.md-form input[type=date]:not(.browser-default).form-control:focus.valid + label:after,
.md-form input[type=datetime]:not(.browser-default).form-control.valid + label:after,
.md-form input[type=datetime]:not(.browser-default).form-control:focus.valid + label:after,
.md-form input[type=datetime-local]:not(.browser-default).form-control.valid + label:after,
.md-form input[type=datetime-local]:not(.browser-default).form-control:focus.valid + label:after,
.md-form input[type=tel]:not(.browser-default).form-control.valid + label:after,
.md-form input[type=tel]:not(.browser-default).form-control:focus.valid + label:after,
.md-form input[type=number]:not(.browser-default).form-control.valid + label:after,
.md-form input[type=number]:not(.browser-default).form-control:focus.valid + label:after,
.md-form input[type=search]:not(.browser-default, .select2-search__field).form-control.valid + label:after,
.md-form input[type=search]:not(.browser-default, .select2-search__field).form-control:focus.valid + label:after,
.md-form input[type=phone]:not(.browser-default).form-control.valid + label:after,
.md-form input[type=phone]:not(.browser-default).form-control:focus.valid + label:after,
.md-form input[type=search-md].form-control.valid + label:after,
.md-form input[type=search-md].form-control:focus.valid + label:after,
.md-form textarea.md-textarea.form-control.valid + label:after,
.md-form textarea.md-textarea.form-control:focus.valid + label:after {
  top: 4.1rem;
}
.md-form input:not([type]).form-control.is-invalid + label:after, .md-form input:not([type]).form-control:focus.is-invalid + label:after,
.md-form input[type=text]:not(.browser-default).form-control.is-invalid + label:after,
.md-form input[type=text]:not(.browser-default).form-control:focus.is-invalid + label:after,
.md-form input[type=password]:not(.browser-default).form-control.is-invalid + label:after,
.md-form input[type=password]:not(.browser-default).form-control:focus.is-invalid + label:after,
.md-form input[type=email]:not(.browser-default).form-control.is-invalid + label:after,
.md-form input[type=email]:not(.browser-default).form-control:focus.is-invalid + label:after,
.md-form input[type=url]:not(.browser-default).form-control.is-invalid + label:after,
.md-form input[type=url]:not(.browser-default).form-control:focus.is-invalid + label:after,
.md-form input[type=time]:not(.browser-default).form-control.is-invalid + label:after,
.md-form input[type=time]:not(.browser-default).form-control:focus.is-invalid + label:after,
.md-form input[type=date]:not(.browser-default).form-control.is-invalid + label:after,
.md-form input[type=date]:not(.browser-default).form-control:focus.is-invalid + label:after,
.md-form input[type=datetime]:not(.browser-default).form-control.is-invalid + label:after,
.md-form input[type=datetime]:not(.browser-default).form-control:focus.is-invalid + label:after,
.md-form input[type=datetime-local]:not(.browser-default).form-control.is-invalid + label:after,
.md-form input[type=datetime-local]:not(.browser-default).form-control:focus.is-invalid + label:after,
.md-form input[type=tel]:not(.browser-default).form-control.is-invalid + label:after,
.md-form input[type=tel]:not(.browser-default).form-control:focus.is-invalid + label:after,
.md-form input[type=number]:not(.browser-default).form-control.is-invalid + label:after,
.md-form input[type=number]:not(.browser-default).form-control:focus.is-invalid + label:after,
.md-form input[type=search]:not(.browser-default, .select2-search__field).form-control.is-invalid + label:after,
.md-form input[type=search]:not(.browser-default, .select2-search__field).form-control:focus.is-invalid + label:after,
.md-form input[type=phone]:not(.browser-default).form-control.is-invalid + label:after,
.md-form input[type=phone]:not(.browser-default).form-control:focus.is-invalid + label:after,
.md-form input[type=search-md].form-control.is-invalid + label:after,
.md-form input[type=search-md].form-control:focus.is-invalid + label:after,
.md-form textarea.md-textarea.form-control.is-invalid + label:after,
.md-form textarea.md-textarea.form-control:focus.is-invalid + label:after {
  top: 4rem;
}
.md-form input:not([type]).form-control-lg.valid + label:after, .md-form input:not([type]).form-control-lg:focus.valid + label:after,
.md-form input[type=text]:not(.browser-default).form-control-lg.valid + label:after,
.md-form input[type=text]:not(.browser-default).form-control-lg:focus.valid + label:after,
.md-form input[type=password]:not(.browser-default).form-control-lg.valid + label:after,
.md-form input[type=password]:not(.browser-default).form-control-lg:focus.valid + label:after,
.md-form input[type=email]:not(.browser-default).form-control-lg.valid + label:after,
.md-form input[type=email]:not(.browser-default).form-control-lg:focus.valid + label:after,
.md-form input[type=url]:not(.browser-default).form-control-lg.valid + label:after,
.md-form input[type=url]:not(.browser-default).form-control-lg:focus.valid + label:after,
.md-form input[type=time]:not(.browser-default).form-control-lg.valid + label:after,
.md-form input[type=time]:not(.browser-default).form-control-lg:focus.valid + label:after,
.md-form input[type=date]:not(.browser-default).form-control-lg.valid + label:after,
.md-form input[type=date]:not(.browser-default).form-control-lg:focus.valid + label:after,
.md-form input[type=datetime]:not(.browser-default).form-control-lg.valid + label:after,
.md-form input[type=datetime]:not(.browser-default).form-control-lg:focus.valid + label:after,
.md-form input[type=datetime-local]:not(.browser-default).form-control-lg.valid + label:after,
.md-form input[type=datetime-local]:not(.browser-default).form-control-lg:focus.valid + label:after,
.md-form input[type=tel]:not(.browser-default).form-control-lg.valid + label:after,
.md-form input[type=tel]:not(.browser-default).form-control-lg:focus.valid + label:after,
.md-form input[type=number]:not(.browser-default).form-control-lg.valid + label:after,
.md-form input[type=number]:not(.browser-default).form-control-lg:focus.valid + label:after,
.md-form input[type=search]:not(.browser-default, .select2-search__field).form-control-lg.valid + label:after,
.md-form input[type=search]:not(.browser-default, .select2-search__field).form-control-lg:focus.valid + label:after,
.md-form input[type=phone]:not(.browser-default).form-control-lg.valid + label:after,
.md-form input[type=phone]:not(.browser-default).form-control-lg:focus.valid + label:after,
.md-form input[type=search-md].form-control-lg.valid + label:after,
.md-form input[type=search-md].form-control-lg:focus.valid + label:after,
.md-form textarea.md-textarea.form-control-lg.valid + label:after,
.md-form textarea.md-textarea.form-control-lg:focus.valid + label:after {
  top: 4.6rem;
}
.md-form input:not([type]).form-control-lg.is-invalid + label:after, .md-form input:not([type]).form-control-lg:focus.is-invalid + label:after,
.md-form input[type=text]:not(.browser-default).form-control-lg.is-invalid + label:after,
.md-form input[type=text]:not(.browser-default).form-control-lg:focus.is-invalid + label:after,
.md-form input[type=password]:not(.browser-default).form-control-lg.is-invalid + label:after,
.md-form input[type=password]:not(.browser-default).form-control-lg:focus.is-invalid + label:after,
.md-form input[type=email]:not(.browser-default).form-control-lg.is-invalid + label:after,
.md-form input[type=email]:not(.browser-default).form-control-lg:focus.is-invalid + label:after,
.md-form input[type=url]:not(.browser-default).form-control-lg.is-invalid + label:after,
.md-form input[type=url]:not(.browser-default).form-control-lg:focus.is-invalid + label:after,
.md-form input[type=time]:not(.browser-default).form-control-lg.is-invalid + label:after,
.md-form input[type=time]:not(.browser-default).form-control-lg:focus.is-invalid + label:after,
.md-form input[type=date]:not(.browser-default).form-control-lg.is-invalid + label:after,
.md-form input[type=date]:not(.browser-default).form-control-lg:focus.is-invalid + label:after,
.md-form input[type=datetime]:not(.browser-default).form-control-lg.is-invalid + label:after,
.md-form input[type=datetime]:not(.browser-default).form-control-lg:focus.is-invalid + label:after,
.md-form input[type=datetime-local]:not(.browser-default).form-control-lg.is-invalid + label:after,
.md-form input[type=datetime-local]:not(.browser-default).form-control-lg:focus.is-invalid + label:after,
.md-form input[type=tel]:not(.browser-default).form-control-lg.is-invalid + label:after,
.md-form input[type=tel]:not(.browser-default).form-control-lg:focus.is-invalid + label:after,
.md-form input[type=number]:not(.browser-default).form-control-lg.is-invalid + label:after,
.md-form input[type=number]:not(.browser-default).form-control-lg:focus.is-invalid + label:after,
.md-form input[type=search]:not(.browser-default, .select2-search__field).form-control-lg.is-invalid + label:after,
.md-form input[type=search]:not(.browser-default, .select2-search__field).form-control-lg:focus.is-invalid + label:after,
.md-form input[type=phone]:not(.browser-default).form-control-lg.is-invalid + label:after,
.md-form input[type=phone]:not(.browser-default).form-control-lg:focus.is-invalid + label:after,
.md-form input[type=search-md].form-control-lg.is-invalid + label:after,
.md-form input[type=search-md].form-control-lg:focus.is-invalid + label:after,
.md-form textarea.md-textarea.form-control-lg.is-invalid + label:after,
.md-form textarea.md-textarea.form-control-lg:focus.is-invalid + label:after {
  top: 4.6rem;
}
.md-form input:not([type]).form-control-sm.valid + label:after, .md-form input:not([type]).form-control-sm:focus.valid + label:after,
.md-form input[type=text]:not(.browser-default).form-control-sm.valid + label:after,
.md-form input[type=text]:not(.browser-default).form-control-sm:focus.valid + label:after,
.md-form input[type=password]:not(.browser-default).form-control-sm.valid + label:after,
.md-form input[type=password]:not(.browser-default).form-control-sm:focus.valid + label:after,
.md-form input[type=email]:not(.browser-default).form-control-sm.valid + label:after,
.md-form input[type=email]:not(.browser-default).form-control-sm:focus.valid + label:after,
.md-form input[type=url]:not(.browser-default).form-control-sm.valid + label:after,
.md-form input[type=url]:not(.browser-default).form-control-sm:focus.valid + label:after,
.md-form input[type=time]:not(.browser-default).form-control-sm.valid + label:after,
.md-form input[type=time]:not(.browser-default).form-control-sm:focus.valid + label:after,
.md-form input[type=date]:not(.browser-default).form-control-sm.valid + label:after,
.md-form input[type=date]:not(.browser-default).form-control-sm:focus.valid + label:after,
.md-form input[type=datetime]:not(.browser-default).form-control-sm.valid + label:after,
.md-form input[type=datetime]:not(.browser-default).form-control-sm:focus.valid + label:after,
.md-form input[type=datetime-local]:not(.browser-default).form-control-sm.valid + label:after,
.md-form input[type=datetime-local]:not(.browser-default).form-control-sm:focus.valid + label:after,
.md-form input[type=tel]:not(.browser-default).form-control-sm.valid + label:after,
.md-form input[type=tel]:not(.browser-default).form-control-sm:focus.valid + label:after,
.md-form input[type=number]:not(.browser-default).form-control-sm.valid + label:after,
.md-form input[type=number]:not(.browser-default).form-control-sm:focus.valid + label:after,
.md-form input[type=search]:not(.browser-default, .select2-search__field).form-control-sm.valid + label:after,
.md-form input[type=search]:not(.browser-default, .select2-search__field).form-control-sm:focus.valid + label:after,
.md-form input[type=phone]:not(.browser-default).form-control-sm.valid + label:after,
.md-form input[type=phone]:not(.browser-default).form-control-sm:focus.valid + label:after,
.md-form input[type=search-md].form-control-sm.valid + label:after,
.md-form input[type=search-md].form-control-sm:focus.valid + label:after,
.md-form textarea.md-textarea.form-control-sm.valid + label:after,
.md-form textarea.md-textarea.form-control-sm:focus.valid + label:after {
  top: 3.7rem;
}
.md-form input:not([type]).form-control-sm.is-invalid + label:after, .md-form input:not([type]).form-control-sm:focus.is-invalid + label:after,
.md-form input[type=text]:not(.browser-default).form-control-sm.is-invalid + label:after,
.md-form input[type=text]:not(.browser-default).form-control-sm:focus.is-invalid + label:after,
.md-form input[type=password]:not(.browser-default).form-control-sm.is-invalid + label:after,
.md-form input[type=password]:not(.browser-default).form-control-sm:focus.is-invalid + label:after,
.md-form input[type=email]:not(.browser-default).form-control-sm.is-invalid + label:after,
.md-form input[type=email]:not(.browser-default).form-control-sm:focus.is-invalid + label:after,
.md-form input[type=url]:not(.browser-default).form-control-sm.is-invalid + label:after,
.md-form input[type=url]:not(.browser-default).form-control-sm:focus.is-invalid + label:after,
.md-form input[type=time]:not(.browser-default).form-control-sm.is-invalid + label:after,
.md-form input[type=time]:not(.browser-default).form-control-sm:focus.is-invalid + label:after,
.md-form input[type=date]:not(.browser-default).form-control-sm.is-invalid + label:after,
.md-form input[type=date]:not(.browser-default).form-control-sm:focus.is-invalid + label:after,
.md-form input[type=datetime]:not(.browser-default).form-control-sm.is-invalid + label:after,
.md-form input[type=datetime]:not(.browser-default).form-control-sm:focus.is-invalid + label:after,
.md-form input[type=datetime-local]:not(.browser-default).form-control-sm.is-invalid + label:after,
.md-form input[type=datetime-local]:not(.browser-default).form-control-sm:focus.is-invalid + label:after,
.md-form input[type=tel]:not(.browser-default).form-control-sm.is-invalid + label:after,
.md-form input[type=tel]:not(.browser-default).form-control-sm:focus.is-invalid + label:after,
.md-form input[type=number]:not(.browser-default).form-control-sm.is-invalid + label:after,
.md-form input[type=number]:not(.browser-default).form-control-sm:focus.is-invalid + label:after,
.md-form input[type=search]:not(.browser-default, .select2-search__field).form-control-sm.is-invalid + label:after,
.md-form input[type=search]:not(.browser-default, .select2-search__field).form-control-sm:focus.is-invalid + label:after,
.md-form input[type=phone]:not(.browser-default).form-control-sm.is-invalid + label:after,
.md-form input[type=phone]:not(.browser-default).form-control-sm:focus.is-invalid + label:after,
.md-form input[type=search-md].form-control-sm.is-invalid + label:after,
.md-form input[type=search-md].form-control-sm:focus.is-invalid + label:after,
.md-form textarea.md-textarea.form-control-sm.is-invalid + label:after,
.md-form textarea.md-textarea.form-control-sm:focus.is-invalid + label:after {
  top: 3.6rem;
}
.md-form > input[type=date]:not(.browser-default) + label {
  transform: translateY(-27px) scale(0.8);
  transform-origin: 0 0;
}
.md-form > input[type]:-webkit-autofill:not(.browser-default):not([type=search]) + label,
.md-form > input[type=time]:not(.browser-default) + label {
  font-size: 0.875rem;
}
.md-form .was-validated input[type=text]:valid + label {
  color: #A5CB2C !important;
}
.md-form .was-validated input[type=text]:invalid + label {
  color: #D33543 !important;
}
.md-form .was-validated .form-control:valid {
  border-color: #A5CB2C !important;
}
.md-form .was-validated .form-control:invalid {
  border-color: #D33543 !important;
}
.md-form .form-control {
  height: auto;
  background-color: transparent;
  border-radius: 0;
}
.md-form .form-control:focus {
  box-shadow: none;
}
.md-form .form-control:disabled, .md-form .form-control[readonly] {
  background-color: #F7F7F7 !important;
  border-bottom: 2px solid #bdbdbd;
}
.md-form .form-control.is-valid {
  border-color: #A5CB2C;
}
.md-form .form-control.is-valid:focus {
  border-color: #A5CB2C !important;
}
.md-form .form-control.is-invalid {
  border-color: #D33543;
}
.md-form .form-control.is-invalid:focus {
  border-color: #D33543 !important;
}
.md-form .form-control.is-valid, .md-form .form-control.is-invalid {
  background-position: center right !important;
}
.md-form .validate {
  margin-bottom: 2.5rem;
}
.md-form label {
  font-size: 0.875rem;
}
.md-form label.active {
  font-size: 0.875rem;
}
.md-form .prefix {
  top: 0.25rem;
  font-size: 1.75rem;
}
.md-form .prefix ~ input,
.md-form .prefix ~ textarea {
  width: calc(100% - 2.5rem);
  margin-left: 2.5rem;
}
.md-form .prefix ~ label {
  margin-left: 2.5rem;
}
.md-form .prefix ~ .form-text {
  margin-left: 2.6rem;
}
.md-form label {
  font-size: 0.875rem;
  color: #3f3f47;
  cursor: text;
  margin-bottom: 0.3rem;
  margin-top: 0.3rem;
  display: block;
  width: 0;
  min-width: 100%;
}
.md-form .prefix {
  position: absolute;
  transition: color 0.2s;
}
.md-form .prefix.active {
  color: #44b1a6;
}
.md-form.form-lg .validate {
  margin-bottom: 2.8rem;
}
.md-form.form-lg label {
  font-size: 1.25rem;
}
.md-form.form-lg label.active {
  font-size: 1.15rem;
}
.md-form.form-lg .prefix {
  top: 0.4rem;
  font-size: 2rem;
}
.md-form.form-lg .prefix ~ input,
.md-form.form-lg .prefix ~ textarea {
  width: calc(100% - 3rem);
  margin-left: 3rem;
}
.md-form.form-lg .prefix ~ label {
  margin-left: 3rem;
}
.md-form.form-lg .prefix ~ .form-text {
  margin-left: 3.1rem;
}
.md-form.form-sm .validate {
  margin-bottom: 2.3rem;
}
.md-form.form-sm label {
  font-size: 0.875rem;
}
.md-form.form-sm label.active {
  font-size: 0.95rem;
}
.md-form.form-sm .prefix {
  top: 0.35rem;
  font-size: 1.5rem;
}
.md-form.form-sm .prefix ~ input,
.md-form.form-sm .prefix ~ textarea {
  width: calc(100% - 2rem);
  margin-left: 2rem;
}
.md-form.form-sm .prefix ~ label {
  margin-left: 2rem;
}
.md-form.form-sm .prefix ~ .form-text {
  margin-left: 2rem;
}
.md-form textarea.md-textarea {
  padding: 7.5px;
  overflow-y: hidden;
  border: 2px solid #ECEBEB;
  border-radius: 2px;
}
.md-form textarea.md-textarea:focus:not([readonly]) {
  border: 2px solid #44b1a6;
  box-shadow: none;
  outline: none;
}
.md-form .mdb-select,
.md-form .custom-select {
  border: none;
  border-radius: 0px;
  padding-left: 0;
  line-height: 1.5;
  margin-bottom: 0.3rem;
  margin-top: 0.3rem;
  font-weight: 700;
  background-size: 0.8rem;
  border-bottom: 2px solid #ECEBEB;
}
.md-form .mdb-select:focus:not([readonly]),
.md-form .custom-select:focus:not([readonly]) {
  border-bottom: 2px solid #44b1a6;
  box-shadow: none;
  outline: none;
}
.md-form html .custom-select, .md-form html .mdb-select {
  height: calc(1.5em + 0.75rem + 4px);
}
.md-form.md-bg input[type=text],
.md-form.md-bg input[type=password],
.md-form.md-bg input[type=email],
.md-form.md-bg input[type=url],
.md-form.md-bg input[type=time],
.md-form.md-bg input[type=date],
.md-form.md-bg input[type=datetime-local],
.md-form.md-bg input[type=tel],
.md-form.md-bg input[type=number],
.md-form.md-bg input[type=search-md],
.md-form.md-bg input[type=search],
.md-form.md-bg textarea.md-textarea {
  box-sizing: border-box;
  padding: 10px 5px;
  background: #f5f5f5 no-repeat;
  background-image: linear-gradient(to bottom, #44b1a6, #44b1a6), linear-gradient(to bottom, #ECEBEB, #ECEBEB);
  background-position: 50% 100%, 50% 100%;
  background-size: 0 2px, 100% 1px;
  border: 0;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
  transition: background-size 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
}
.md-form.md-bg input[type=text]:focus:not([readonly]),
.md-form.md-bg input[type=password]:focus:not([readonly]),
.md-form.md-bg input[type=email]:focus:not([readonly]),
.md-form.md-bg input[type=url]:focus:not([readonly]),
.md-form.md-bg input[type=time]:focus:not([readonly]),
.md-form.md-bg input[type=date]:focus:not([readonly]),
.md-form.md-bg input[type=datetime-local]:focus:not([readonly]),
.md-form.md-bg input[type=tel]:focus:not([readonly]),
.md-form.md-bg input[type=number]:focus:not([readonly]),
.md-form.md-bg input[type=search-md]:focus:not([readonly]),
.md-form.md-bg input[type=search]:focus:not([readonly]),
.md-form.md-bg textarea.md-textarea:focus:not([readonly]) {
  border-bottom: none;
  box-shadow: none;
}
.md-form.md-bg input[type=text]:focus,
.md-form.md-bg input[type=password]:focus,
.md-form.md-bg input[type=email]:focus,
.md-form.md-bg input[type=url]:focus,
.md-form.md-bg input[type=time]:focus,
.md-form.md-bg input[type=date]:focus,
.md-form.md-bg input[type=datetime-local]:focus,
.md-form.md-bg input[type=tel]:focus,
.md-form.md-bg input[type=number]:focus,
.md-form.md-bg input[type=search-md]:focus,
.md-form.md-bg input[type=search]:focus,
.md-form.md-bg textarea.md-textarea:focus {
  background-color: #dcdcdc;
  background-size: 100% 2px, 100% 1px;
  outline: none;
}
.md-form.md-bg > input[type=date]:not(.browser-default) + label {
  transform: translateY(-12px) scale(0.8);
  transform-origin: 0 0;
}
.md-form.md-bg > input[type]:-webkit-autofill:not(.browser-default):not([type=search]) + label,
.md-form.md-bg > input[type=time]:not(.browser-default) + label {
  font-size: 0.8rem;
  transform: translateY(-12px);
  transform-origin: 0 0;
}
.md-form.md-bg .form-control {
  padding: 1.1rem 0.7rem 0.4rem !important;
}
.md-form.md-bg label {
  top: 0;
  padding-left: 0.7rem;
}
.md-form.md-bg label.active {
  padding-left: 0.75rem;
  font-weight: 500;
}

.md-form .form-control.is-invalid,
.was-validated .md-form .form-control:invalid {
  padding-right: 0;
}

.md-form .form-control.is-valid,
.was-validated .md-form .form-control:valid {
  padding-right: 0;
}

.needs-validation .md-form label {
  left: 0.3rem;
}

.md-formset-item .md-formset-item-actions {
  margin-top: auto !important;
  margin-bottom: auto !important;
  margin-right: 7.5px;
  min-width: 30px;
  text-align: center;
  cursor: pointer;
}
@media (max-width: 575.98px) {
  .md-formset-item .md-formset-item-actions {
    margin-top: 0.95rem !important;
  }
}

.md-form-item-actions {
  min-width: 30px;
  text-align: center;
  margin-top: 13px;
  margin-right: 7.5px;
}
.md-form-item-actions .badge, .md-form-item-actions .no-badge {
  min-width: 36px;
  display: inline-block;
}

@media (max-width: 575.98px) {
  .md-form-item-actions {
    margin-top: 0.95rem !important;
  }
}
.mdb-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 4px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #3f3f47;
  vertical-align: middle;
  background: #ffffff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3e%3cpath d='M441.9 167.3l-19.8-19.8c-4.7-4.7-12.3-4.7-17 0L224 328.2 42.9 147.5c-4.7-4.7-12.3-4.7-17 0L6.1 167.3c-4.7 4.7-4.7 12.3 0 17l209.4 209.4c4.7 4.7 12.3 4.7 17 0l209.4-209.4c4.7-4.7 4.7-12.3 0-17z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat;
  border: 2px solid #ECEBEB;
  border-radius: 0.25rem;
  appearance: none;
}
.mdb-select:focus {
  border-color: #9cd9d3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(68, 177, 166, 0.25);
}
.mdb-select:focus::-ms-value {
  color: #3f3f47;
  background-color: #ffffff;
}
.mdb-select[multiple], .mdb-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}
.mdb-select:disabled {
  color: #5E6771;
  background-color: #F7F7F7;
}
.mdb-select::-ms-expand {
  display: none;
}
.mdb-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #3f3f47;
}

.first-item {
  border-bottom: 2px solid #9B9B9B;
}

.variante-first .md-form label:not(.form-check-label),
.variante-first .md-form .custom-select,
.variante-first .md-form .mdb-select,
.variante-first .md-form input:not([type]),
.variante-first .md-form input[type=text]:not(.browser-default),
.variante-first .md-form input[type=password]:not(.browser-default),
.variante-first .md-form input[type=email]:not(.browser-default),
.variante-first .md-form input[type=url]:not(.browser-default),
.variante-first .md-form input[type=time]:not(.browser-default),
.variante-first .md-form input[type=date]:not(.browser-default),
.variante-first .md-form input[type=datetime]:not(.browser-default),
.variante-first .md-form input[type=datetime-local]:not(.browser-default),
.variante-first .md-form input[type=tel]:not(.browser-default),
.variante-first .md-form input[type=number]:not(.browser-default),
.variante-first .md-form input[type=search]:not(.browser-default),
.variante-first .md-form input[type=phone]:not(.browser-default),
.variante-first .md-form input[type=search-md],
.variante-first .md-form textarea.md-textarea, .first-form-item .md-form label:not(.form-check-label),
.first-form-item .md-form .custom-select,
.first-form-item .md-form .mdb-select,
.first-form-item .md-form input:not([type]),
.first-form-item .md-form input[type=text]:not(.browser-default),
.first-form-item .md-form input[type=password]:not(.browser-default),
.first-form-item .md-form input[type=email]:not(.browser-default),
.first-form-item .md-form input[type=url]:not(.browser-default),
.first-form-item .md-form input[type=time]:not(.browser-default),
.first-form-item .md-form input[type=date]:not(.browser-default),
.first-form-item .md-form input[type=datetime]:not(.browser-default),
.first-form-item .md-form input[type=datetime-local]:not(.browser-default),
.first-form-item .md-form input[type=tel]:not(.browser-default),
.first-form-item .md-form input[type=number]:not(.browser-default),
.first-form-item .md-form input[type=search]:not(.browser-default),
.first-form-item .md-form input[type=phone]:not(.browser-default),
.first-form-item .md-form input[type=search-md],
.first-form-item .md-form textarea.md-textarea {
  border-bottom: 2px solid #9B9B9B;
}
.variante-first .md-form .select2-container .select2-selection, .first-form-item .md-form .select2-container .select2-selection {
  border-bottom: 2px solid #9B9B9B;
}

.md-form-switch {
  position: relative;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
}
.md-form-switch .col-form-label {
  font-size: 0.875rem;
  color: #3f3f47;
  cursor: text;
  margin-bottom: 0.3rem;
  margin-top: 0.3rem;
  display: block;
  width: 0;
  min-width: 100%;
}
.md-form-switch .custom-switch {
  margin-bottom: 0.3rem;
  margin-top: 0.3rem;
  height: calc(1.5em + 0.75rem + 4px);
}
.md-form-switch .custom-switch .custom-control-label {
  vertical-align: middle;
  margin-bottom: inherit;
}

.select2-search.select2-search--inline {
  display: flex;
  width: 100%;
  margin-top: 8px;
}

.select2-selection__choice {
  background-color: #44b1a6 !important;
  color: #ffffff !important;
  border-radius: 20px !important;
  padding: 6px !important;
  padding-right: 12px !important;
  border: 0px !important;
}

.select2-selection__choice__remove {
  color: #ffffff !important;
}

.custom-switch-inline.custom-switch.custom-control {
  display: inline-block;
}

.no-padding-label label {
  padding: 0 !important;
}

.no-padding-left-label label {
  padding-left: 0 !important;
}

.no-padding-right-label label {
  padding-right: 0 !important;
}

.no-padding-top-label label {
  padding-top: 0 !important;
}

.no-padding-bottom-label label {
  padding-bottom: 0 !important;
}

.flex-basis-elements-variabili input[type=file],
.md-form-immagine_default_nessuna_posizione input[type=file] {
  border: 0 !important;
  padding-left: 0;
}

.img-container-input-file {
  width: 400px;
  height: 400px;
  margin: auto;
}

.grid-view .box-topscroll {
  height: 8px; /* height of horizontal scrollbar ← You're missing this */
  background-color: #d8ddde;
}
.grid-view .box-scroll ::-webkit-scrollbar {
  height: 8px; /* height of horizontal scrollbar ← You're missing this */
}
.grid-view .box-scroll ::-webkit-scrollbar-thumb:horizontal {
  background: #213033;
  border-radius: 8px;
}

.sidebar-submenu .list-group-item {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  padding-left: 4.5rem;
}

.sidebar-submenu .list-group-item.level_1 {
  padding-left: 3rem;
}

.vg7-list-group {
  list-style: none;
  padding-left: 0;
}
.vg7-list-group .vg7-list-group-item {
  border-bottom: 1px solid #ECEBEB;
  padding: 8px 0;
  display: flex;
}
.vg7-list-group .vg7-list-group-item > span:first-child {
  font-weight: bold;
  width: 40%;
  min-width: 135px;
}
.vg7-list-group .vg7-list-group-item > span:last-child {
  padding-left: 8px;
  color: #5E6771;
}

/* SCSS TITLE VG7/_BUTTONS   */
.btn-primary {
  background-color: #32545C;
  border: none;
  color: white;
}

.btn-primary-outline {
  border: 1px solid #32545C;
}

.btn .fas {
  width: 25px;
}

.cta-navbar .btn-primary-outline {
  border: 1px solid #CECECE;
  color: #CECECE !important;
}

html .btn-outline-secondary:hover:not(:disabled),
html .btn-outline-primary:hover:not(:disabled),
html .btn-light-a:hover:not(:disabled),
html .btn-light-b:hover:not(:disabled),
html .btn-light-c:hover:not(:disabled),
html .btn-light-d:hover:not(:disabled),
html .btn-light-e:hover:not(:disabled),
html .btn-light-g:hover:not(:disabled),
html .btn-light-h:hover:not(:disabled),
html .btn-light-i:hover:not(:disabled),
html .btn-light-j:hover:not(:disabled),
html .btn-light-k:hover:not(:disabled) {
  color: #fff;
}
html .btn-outline-secondary:hover:disabled,
html .btn-outline-primary:hover:disabled,
html .btn-light-a:hover:disabled,
html .btn-light-b:hover:disabled,
html .btn-light-c:hover:disabled,
html .btn-light-d:hover:disabled,
html .btn-light-e:hover:disabled,
html .btn-light-g:hover:disabled,
html .btn-light-h:hover:disabled,
html .btn-light-i:hover:disabled,
html .btn-light-j:hover:disabled,
html .btn-light-k:hover:disabled {
  cursor: not-allowed;
}

.btn.round {
  padding: 8px !important;
  min-width: 39px !important;
}

.dropdown-title {
  color: white;
  text-align: center;
  padding: 10px;
  margin-bottom: 10px;
  background-color: #32545C;
  text-transform: uppercase;
}

.btn-wrapper .btn,
.btn-wrapper .btn-foating {
  margin: 7.5px;
}
.btn-wrapper .btn:last-of-type,
.btn-wrapper .btn-foating:last-of-type {
  margin-right: 0;
}
.btn-wrapper .btn:first-of-type,
.btn-wrapper .btn-foating:first-of-type {
  margin-left: 0;
}

.btn-floating {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0;
  margin: 10px;
  overflow: hidden;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
  width: 33px;
  height: 33px;
}
.btn-floating i {
  font-size: 0.9rem;
  line-height: 1.5;
}
.btn-floating i {
  display: inline-block;
  width: inherit;
  text-align: center;
  line-height: 33px;
}
.btn-floating:before {
  border-radius: 0;
}
.btn-floating:last-of-type {
  margin-right: 0;
}
.btn-floating.btn-sm, .btn-group-sm > .btn-floating.btn {
  width: 25.3846153846px;
  height: 25.3846153846px;
}
.btn-floating.btn-sm i, .btn-group-sm > .btn-floating.btn i {
  font-size: 0.6923076923rem;
  line-height: 25.3846153846px;
}
.btn-floating.btn-lg, .btn-group-lg > .btn-floating.btn {
  width: 42.9px;
  height: 42.9px;
}
.btn-floating.btn-lg i, .btn-group-lg > .btn-floating.btn i {
  font-size: 1.17rem;
  line-height: 42.9px;
}
.btn-floating.btn-outline-dark {
  border: 1px solid #213033;
  color: #213033;
}
.btn-floating.btn-outline-dark i {
  color: #213033;
}
.btn-floating.btn-outline-dark:focus, .btn-floating.btn-outline-dark:hover, .btn-floating.btn-outline-dark:active, .btn-floating.btn-outline-dark.activeFloatingButton {
  background-color: #44b1a6 !important;
  border: 1px solid #44b1a6 !important;
}
.btn-floating.btn-outline-dark:focus i, .btn-floating.btn-outline-dark:hover i, .btn-floating.btn-outline-dark:active i, .btn-floating.btn-outline-dark.activeFloatingButton i {
  color: #ffffff !important;
}

a.btn-primary-a:not(:hover):not(:active):not(:focus),
a.btn-primary-b:not(:hover):not(:active):not(:focus),
a.btn-primary-c:not(:hover):not(:active):not(:focus),
a.btn-primary-d:not(:hover):not(:active):not(:focus),
a.btn-primary-e:not(:hover):not(:active):not(:focus),
a.btn-primary-f:not(:hover):not(:active):not(:focus),
a.btn-primary-g:not(:hover):not(:active):not(:focus),
a.btn-primary-h:not(:hover):not(:active):not(:focus),
a.btn-primary-i:not(:hover):not(:active):not(:focus),
a.btn-primary-j:not(:hover):not(:active):not(:focus),
a.btn-primary-k:not(:hover):not(:active):not(:focus) {
  color: #ffffff;
}

.btn-primary-a {
  color: #ffffff;
  background-color: #32545C;
  border-color: #32545C;
}
.btn-primary-a:hover {
  color: #221e1f;
  background-color: #d1effb;
  border-color: #d1effb;
}
.btn-primary-a:focus, .btn-primary-a.focus {
  color: #221e1f;
  background-color: #d1effb;
  border-color: #d1effb;
  box-shadow: 0 0 0 0.2rem rgba(81, 110, 116, 0.5);
}
.btn-primary-a.disabled, .btn-primary-a:disabled {
  color: #ffffff;
  background-color: #32545C;
  border-color: #32545C;
}
.btn-primary-a:not(:disabled):not(.disabled):active, .btn-primary-a:not(:disabled):not(.disabled).active, .show > .btn-primary-a.dropdown-toggle {
  color: #221e1f;
  background-color: #d1effb;
  border-color: #d1effb;
}
.btn-primary-a:not(:disabled):not(.disabled):active:focus, .btn-primary-a:not(:disabled):not(.disabled).active:focus, .show > .btn-primary-a.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(81, 110, 116, 0.5);
}
.btn-primary-a i {
  color: #5BC5F2;
}

.btn-primary-b {
  color: #ffffff;
  background-color: #32545C;
  border-color: #32545C;
}
.btn-primary-b:hover {
  color: #221e1f;
  background-color: #cc92ff;
  border-color: #cc92ff;
}
.btn-primary-b:focus, .btn-primary-b.focus {
  color: #221e1f;
  background-color: #cc92ff;
  border-color: #cc92ff;
  box-shadow: 0 0 0 0.2rem rgba(81, 110, 116, 0.5);
}
.btn-primary-b.disabled, .btn-primary-b:disabled {
  color: #ffffff;
  background-color: #32545C;
  border-color: #32545C;
}
.btn-primary-b:not(:disabled):not(.disabled):active, .btn-primary-b:not(:disabled):not(.disabled).active, .show > .btn-primary-b.dropdown-toggle {
  color: #221e1f;
  background-color: #cc92ff;
  border-color: #cc92ff;
}
.btn-primary-b:not(:disabled):not(.disabled):active:focus, .btn-primary-b:not(:disabled):not(.disabled).active:focus, .show > .btn-primary-b.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(81, 110, 116, 0.5);
}
.btn-primary-b i {
  color: #9013FE;
}

.btn-primary-c {
  color: #ffffff;
  background-color: #32545C;
  border-color: #32545C;
}
.btn-primary-c:hover {
  color: #221e1f;
  background-color: #fad9ea;
  border-color: #fad9ea;
}
.btn-primary-c:focus, .btn-primary-c.focus {
  color: #221e1f;
  background-color: #fad9ea;
  border-color: #fad9ea;
  box-shadow: 0 0 0 0.2rem rgba(81, 110, 116, 0.5);
}
.btn-primary-c.disabled, .btn-primary-c:disabled {
  color: #ffffff;
  background-color: #32545C;
  border-color: #32545C;
}
.btn-primary-c:not(:disabled):not(.disabled):active, .btn-primary-c:not(:disabled):not(.disabled).active, .show > .btn-primary-c.dropdown-toggle {
  color: #221e1f;
  background-color: #fad9ea;
  border-color: #fad9ea;
}
.btn-primary-c:not(:disabled):not(.disabled):active:focus, .btn-primary-c:not(:disabled):not(.disabled).active:focus, .show > .btn-primary-c.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(81, 110, 116, 0.5);
}
.btn-primary-c i {
  color: #EC68AB;
}

.btn-primary-d {
  color: #ffffff;
  background-color: #32545C;
  border-color: #32545C;
}
.btn-primary-d:hover {
  color: #221e1f;
  background-color: #e0c8ed;
  border-color: #e0c8ed;
}
.btn-primary-d:focus, .btn-primary-d.focus {
  color: #221e1f;
  background-color: #e0c8ed;
  border-color: #e0c8ed;
  box-shadow: 0 0 0 0.2rem rgba(81, 110, 116, 0.5);
}
.btn-primary-d.disabled, .btn-primary-d:disabled {
  color: #ffffff;
  background-color: #32545C;
  border-color: #32545C;
}
.btn-primary-d:not(:disabled):not(.disabled):active, .btn-primary-d:not(:disabled):not(.disabled).active, .show > .btn-primary-d.dropdown-toggle {
  color: #221e1f;
  background-color: #e0c8ed;
  border-color: #e0c8ed;
}
.btn-primary-d:not(:disabled):not(.disabled):active:focus, .btn-primary-d:not(:disabled):not(.disabled).active:focus, .show > .btn-primary-d.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(81, 110, 116, 0.5);
}
.btn-primary-d i {
  color: #aa68cd;
}

.btn-save,
.btn-primary-e {
  color: #ffffff;
  background-color: #32545C;
  border-color: #32545C;
}
.btn-save:hover,
.btn-primary-e:hover {
  color: #221e1f;
  background-color: #ebf4cf;
  border-color: #ebf4cf;
}
.btn-save:focus, .btn-save.focus,
.btn-primary-e:focus,
.btn-primary-e.focus {
  color: #221e1f;
  background-color: #ebf4cf;
  border-color: #ebf4cf;
  box-shadow: 0 0 0 0.2rem rgba(81, 110, 116, 0.5);
}
.btn-save.disabled, .btn-save:disabled,
.btn-primary-e.disabled,
.btn-primary-e:disabled {
  color: #ffffff;
  background-color: #32545C;
  border-color: #32545C;
}
.btn-save:not(:disabled):not(.disabled):active, .btn-save:not(:disabled):not(.disabled).active, .show > .btn-save.dropdown-toggle,
.btn-primary-e:not(:disabled):not(.disabled):active,
.btn-primary-e:not(:disabled):not(.disabled).active,
.show > .btn-primary-e.dropdown-toggle {
  color: #221e1f;
  background-color: #ebf4cf;
  border-color: #ebf4cf;
}
.btn-save:not(:disabled):not(.disabled):active:focus, .btn-save:not(:disabled):not(.disabled).active:focus, .show > .btn-save.dropdown-toggle:focus,
.btn-primary-e:not(:disabled):not(.disabled):active:focus,
.btn-primary-e:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary-e.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(81, 110, 116, 0.5);
}
.btn-save i,
.btn-primary-e i {
  color: #A5CB2C;
}

.btn-notification,
.btn-primary-f {
  color: #ffffff;
  background-color: #32545C;
  border-color: #32545C;
}
.btn-notification:hover,
.btn-primary-f:hover {
  color: #221e1f;
  background-color: #ea9ea4;
  border-color: #ea9ea4;
}
.btn-notification:focus, .btn-notification.focus,
.btn-primary-f:focus,
.btn-primary-f.focus {
  color: #221e1f;
  background-color: #ea9ea4;
  border-color: #ea9ea4;
  box-shadow: 0 0 0 0.2rem rgba(81, 110, 116, 0.5);
}
.btn-notification.disabled, .btn-notification:disabled,
.btn-primary-f.disabled,
.btn-primary-f:disabled {
  color: #ffffff;
  background-color: #32545C;
  border-color: #32545C;
}
.btn-notification:not(:disabled):not(.disabled):active, .btn-notification:not(:disabled):not(.disabled).active, .show > .btn-notification.dropdown-toggle,
.btn-primary-f:not(:disabled):not(.disabled):active,
.btn-primary-f:not(:disabled):not(.disabled).active,
.show > .btn-primary-f.dropdown-toggle {
  color: #221e1f;
  background-color: #ea9ea4;
  border-color: #ea9ea4;
}
.btn-notification:not(:disabled):not(.disabled):active:focus, .btn-notification:not(:disabled):not(.disabled).active:focus, .show > .btn-notification.dropdown-toggle:focus,
.btn-primary-f:not(:disabled):not(.disabled):active:focus,
.btn-primary-f:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary-f.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(81, 110, 116, 0.5);
}
.btn-notification i,
.btn-primary-f i {
  color: #D33543;
}

.btn-edit,
.btn-primary-g {
  color: #ffffff;
  background-color: #32545C;
  border-color: #32545C;
}
.btn-edit:hover,
.btn-primary-g:hover {
  color: #221e1f;
  background-color: #f3d49c;
  border-color: #f3d49c;
}
.btn-edit:focus, .btn-edit.focus,
.btn-primary-g:focus,
.btn-primary-g.focus {
  color: #221e1f;
  background-color: #f3d49c;
  border-color: #f3d49c;
  box-shadow: 0 0 0 0.2rem rgba(81, 110, 116, 0.5);
}
.btn-edit.disabled, .btn-edit:disabled,
.btn-primary-g.disabled,
.btn-primary-g:disabled {
  color: #ffffff;
  background-color: #32545C;
  border-color: #32545C;
}
.btn-edit:not(:disabled):not(.disabled):active, .btn-edit:not(:disabled):not(.disabled).active, .show > .btn-edit.dropdown-toggle,
.btn-primary-g:not(:disabled):not(.disabled):active,
.btn-primary-g:not(:disabled):not(.disabled).active,
.show > .btn-primary-g.dropdown-toggle {
  color: #221e1f;
  background-color: #f3d49c;
  border-color: #f3d49c;
}
.btn-edit:not(:disabled):not(.disabled):active:focus, .btn-edit:not(:disabled):not(.disabled).active:focus, .show > .btn-edit.dropdown-toggle:focus,
.btn-primary-g:not(:disabled):not(.disabled):active:focus,
.btn-primary-g:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary-g.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(81, 110, 116, 0.5);
}
.btn-edit i,
.btn-primary-g i {
  color: #E5A22A;
}

.btn-transform,
.btn-primary-h {
  color: #ffffff;
  background-color: #32545C;
  border-color: #32545C;
}
.btn-transform:hover,
.btn-primary-h:hover {
  color: #ffffff;
  background-color: #f13942;
  border-color: #f13942;
}
.btn-transform:focus, .btn-transform.focus,
.btn-primary-h:focus,
.btn-primary-h.focus {
  color: #ffffff;
  background-color: #f13942;
  border-color: #f13942;
  box-shadow: 0 0 0 0.2rem rgba(81, 110, 116, 0.5);
}
.btn-transform.disabled, .btn-transform:disabled,
.btn-primary-h.disabled,
.btn-primary-h:disabled {
  color: #ffffff;
  background-color: #32545C;
  border-color: #32545C;
}
.btn-transform:not(:disabled):not(.disabled):active, .btn-transform:not(:disabled):not(.disabled).active, .show > .btn-transform.dropdown-toggle,
.btn-primary-h:not(:disabled):not(.disabled):active,
.btn-primary-h:not(:disabled):not(.disabled).active,
.show > .btn-primary-h.dropdown-toggle {
  color: #ffffff;
  background-color: #f13942;
  border-color: #f13942;
}
.btn-transform:not(:disabled):not(.disabled):active:focus, .btn-transform:not(:disabled):not(.disabled).active:focus, .show > .btn-transform.dropdown-toggle:focus,
.btn-primary-h:not(:disabled):not(.disabled):active:focus,
.btn-primary-h:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary-h.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(81, 110, 116, 0.5);
}
.btn-transform i,
.btn-primary-h i {
  color: #a00b12;
}

.btn-primary-i {
  color: #ffffff;
  background-color: #32545C;
  border-color: #32545C;
}
.btn-primary-i:hover {
  color: #221e1f;
  background-color: #9cd9d3;
  border-color: #9cd9d3;
}
.btn-primary-i:focus, .btn-primary-i.focus {
  color: #221e1f;
  background-color: #9cd9d3;
  border-color: #9cd9d3;
  box-shadow: 0 0 0 0.2rem rgba(81, 110, 116, 0.5);
}
.btn-primary-i.disabled, .btn-primary-i:disabled {
  color: #ffffff;
  background-color: #32545C;
  border-color: #32545C;
}
.btn-primary-i:not(:disabled):not(.disabled):active, .btn-primary-i:not(:disabled):not(.disabled).active, .show > .btn-primary-i.dropdown-toggle {
  color: #221e1f;
  background-color: #9cd9d3;
  border-color: #9cd9d3;
}
.btn-primary-i:not(:disabled):not(.disabled):active:focus, .btn-primary-i:not(:disabled):not(.disabled).active:focus, .show > .btn-primary-i.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(81, 110, 116, 0.5);
}
.btn-primary-i i {
  color: #44b1a6;
}

.btn-primary-j {
  color: #ffffff;
  background-color: #32545C;
  border-color: #32545C;
}
.btn-primary-j:hover {
  color: #ffffff;
  background-color: #8a6fc1;
  border-color: #8a6fc1;
}
.btn-primary-j:focus, .btn-primary-j.focus {
  color: #ffffff;
  background-color: #8a6fc1;
  border-color: #8a6fc1;
  box-shadow: 0 0 0 0.2rem rgba(81, 110, 116, 0.5);
}
.btn-primary-j.disabled, .btn-primary-j:disabled {
  color: #ffffff;
  background-color: #32545C;
  border-color: #32545C;
}
.btn-primary-j:not(:disabled):not(.disabled):active, .btn-primary-j:not(:disabled):not(.disabled).active, .show > .btn-primary-j.dropdown-toggle {
  color: #ffffff;
  background-color: #8a6fc1;
  border-color: #8a6fc1;
}
.btn-primary-j:not(:disabled):not(.disabled):active:focus, .btn-primary-j:not(:disabled):not(.disabled).active:focus, .show > .btn-primary-j.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(81, 110, 116, 0.5);
}
.btn-primary-j i {
  color: #4C357B;
}

.btn-primary-k {
  color: #ffffff;
  background-color: #32545C;
  border-color: #32545C;
}
.btn-primary-k:hover {
  color: #ffffff;
  background-color: #8a6fc1;
  border-color: #8a6fc1;
}
.btn-primary-k:focus, .btn-primary-k.focus {
  color: #ffffff;
  background-color: #8a6fc1;
  border-color: #8a6fc1;
  box-shadow: 0 0 0 0.2rem rgba(81, 110, 116, 0.5);
}
.btn-primary-k.disabled, .btn-primary-k:disabled {
  color: #ffffff;
  background-color: #32545C;
  border-color: #32545C;
}
.btn-primary-k:not(:disabled):not(.disabled):active, .btn-primary-k:not(:disabled):not(.disabled).active, .show > .btn-primary-k.dropdown-toggle {
  color: #ffffff;
  background-color: #8a6fc1;
  border-color: #8a6fc1;
}
.btn-primary-k:not(:disabled):not(.disabled):active:focus, .btn-primary-k:not(:disabled):not(.disabled).active:focus, .show > .btn-primary-k.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(81, 110, 116, 0.5);
}
.btn-primary-k i {
  color: #E5BE01;
}

.btn-bgcolor-k {
  color: #221e1f;
  background-color: #E5BE01;
  border-color: #E5BE01;
}
.btn-bgcolor-k:hover {
  color: #221e1f;
  background-color: #fee467;
  border-color: #fee467;
}
.btn-bgcolor-k:focus, .btn-bgcolor-k.focus {
  color: #221e1f;
  background-color: #fee467;
  border-color: #fee467;
  box-shadow: 0 0 0 0.2rem rgba(200, 166, 6, 0.5);
}
.btn-bgcolor-k.disabled, .btn-bgcolor-k:disabled {
  color: #221e1f;
  background-color: #E5BE01;
  border-color: #E5BE01;
}
.btn-bgcolor-k:not(:disabled):not(.disabled):active, .btn-bgcolor-k:not(:disabled):not(.disabled).active, .show > .btn-bgcolor-k.dropdown-toggle {
  color: #221e1f;
  background-color: #fee467;
  border-color: #fee467;
}
.btn-bgcolor-k:not(:disabled):not(.disabled):active:focus, .btn-bgcolor-k:not(:disabled):not(.disabled).active:focus, .show > .btn-bgcolor-k.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(200, 166, 6, 0.5);
}
.btn-bgcolor-k i {
  color: #ffffff;
}

.btn-bgcolor-grey {
  color: #ffffff;
  background-color: #858796;
  border-color: #858796;
}
.btn-bgcolor-grey:hover {
  color: #221e1f;
  background-color: #cacad1;
  border-color: #cacad1;
}
.btn-bgcolor-grey:focus, .btn-bgcolor-grey.focus {
  color: #221e1f;
  background-color: #cacad1;
  border-color: #cacad1;
  box-shadow: 0 0 0 0.2rem rgba(151, 153, 166, 0.5);
}
.btn-bgcolor-grey.disabled, .btn-bgcolor-grey:disabled {
  color: #ffffff;
  background-color: #858796;
  border-color: #858796;
}
.btn-bgcolor-grey:not(:disabled):not(.disabled):active, .btn-bgcolor-grey:not(:disabled):not(.disabled).active, .show > .btn-bgcolor-grey.dropdown-toggle {
  color: #221e1f;
  background-color: #cacad1;
  border-color: #cacad1;
}
.btn-bgcolor-grey:not(:disabled):not(.disabled):active:focus, .btn-bgcolor-grey:not(:disabled):not(.disabled).active:focus, .show > .btn-bgcolor-grey.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(151, 153, 166, 0.5);
}
.btn-bgcolor-grey i {
  color: #ffffff;
}

/* quando clicchiamo sul bottone e si apre il dropdown il bottone deve avere il colore del testo corretto */
.show > .btn-primary-a.dropdown-toggle {
  color: #221e1f;
}
.show > .btn-primary-b.dropdown-toggle {
  color: #221e1f;
}
.show > .btn-primary-c.dropdown-toggle {
  color: #221e1f;
}
.show > .btn-primary-d.dropdown-toggle {
  color: #221e1f;
}
.show > .btn-primary-e.dropdown-toggle {
  color: #221e1f;
}
.show > .btn-primary-f.dropdown-toggle {
  color: #221e1f;
}
.show > .btn-primary-g.dropdown-toggle {
  color: #221e1f;
}
.show > .btn-primary-h.dropdown-toggle {
  color: #ffffff;
}
.show > .btn-primary-i.dropdown-toggle {
  color: #221e1f;
}
.show > .btn-primary-j.dropdown-toggle {
  color: #ffffff;
}
.show > .btn-primary-k.dropdown-toggle {
  color: #221e1f;
}

.btn-light-a {
  color: #221e1f;
  background-color: #F7F7F7;
  border-color: #F7F7F7;
}
.btn-light-a:hover {
  color: #221e1f;
  background-color: #d1effb;
  border-color: #d1effb;
}
.btn-light-a:focus, .btn-light-a.focus {
  color: #221e1f;
  background-color: #d1effb;
  border-color: #d1effb;
  box-shadow: 0 0 0 0.2rem rgba(215, 214, 215, 0.5);
}
.btn-light-a.disabled, .btn-light-a:disabled {
  color: #221e1f;
  background-color: #F7F7F7;
  border-color: #F7F7F7;
}
.btn-light-a:not(:disabled):not(.disabled):active, .btn-light-a:not(:disabled):not(.disabled).active, .show > .btn-light-a.dropdown-toggle {
  color: #221e1f;
  background-color: #d1effb;
  border-color: #d1effb;
}
.btn-light-a:not(:disabled):not(.disabled):active:focus, .btn-light-a:not(:disabled):not(.disabled).active:focus, .show > .btn-light-a.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(215, 214, 215, 0.5);
}
.btn-light-a i {
  color: #5BC5F2;
}
.btn-light-a:not(:hover):not(:active):not(:focus) {
  color: #3f3f47;
}

.btn-light-b {
  color: #221e1f;
  background-color: #F7F7F7;
  border-color: #F7F7F7;
}
.btn-light-b:hover {
  color: #221e1f;
  background-color: #cc92ff;
  border-color: #cc92ff;
}
.btn-light-b:focus, .btn-light-b.focus {
  color: #221e1f;
  background-color: #cc92ff;
  border-color: #cc92ff;
  box-shadow: 0 0 0 0.2rem rgba(215, 214, 215, 0.5);
}
.btn-light-b.disabled, .btn-light-b:disabled {
  color: #221e1f;
  background-color: #F7F7F7;
  border-color: #F7F7F7;
}
.btn-light-b:not(:disabled):not(.disabled):active, .btn-light-b:not(:disabled):not(.disabled).active, .show > .btn-light-b.dropdown-toggle {
  color: #221e1f;
  background-color: #cc92ff;
  border-color: #cc92ff;
}
.btn-light-b:not(:disabled):not(.disabled):active:focus, .btn-light-b:not(:disabled):not(.disabled).active:focus, .show > .btn-light-b.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(215, 214, 215, 0.5);
}
.btn-light-b i {
  color: #9013FE;
}
.btn-light-b:not(:hover):not(:active):not(:focus) {
  color: #3f3f47;
}

.btn-light-c {
  color: #221e1f;
  background-color: #F7F7F7;
  border-color: #F7F7F7;
}
.btn-light-c:hover {
  color: #221e1f;
  background-color: #fad9ea;
  border-color: #fad9ea;
}
.btn-light-c:focus, .btn-light-c.focus {
  color: #221e1f;
  background-color: #fad9ea;
  border-color: #fad9ea;
  box-shadow: 0 0 0 0.2rem rgba(215, 214, 215, 0.5);
}
.btn-light-c.disabled, .btn-light-c:disabled {
  color: #221e1f;
  background-color: #F7F7F7;
  border-color: #F7F7F7;
}
.btn-light-c:not(:disabled):not(.disabled):active, .btn-light-c:not(:disabled):not(.disabled).active, .show > .btn-light-c.dropdown-toggle {
  color: #221e1f;
  background-color: #fad9ea;
  border-color: #fad9ea;
}
.btn-light-c:not(:disabled):not(.disabled):active:focus, .btn-light-c:not(:disabled):not(.disabled).active:focus, .show > .btn-light-c.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(215, 214, 215, 0.5);
}
.btn-light-c i {
  color: #EC68AB;
}
.btn-light-c:not(:hover):not(:active):not(:focus) {
  color: #3f3f47;
}

.btn-light-d {
  color: #221e1f;
  background-color: #F7F7F7;
  border-color: #F7F7F7;
}
.btn-light-d:hover {
  color: #221e1f;
  background-color: #e0c8ed;
  border-color: #e0c8ed;
}
.btn-light-d:focus, .btn-light-d.focus {
  color: #221e1f;
  background-color: #e0c8ed;
  border-color: #e0c8ed;
  box-shadow: 0 0 0 0.2rem rgba(215, 214, 215, 0.5);
}
.btn-light-d.disabled, .btn-light-d:disabled {
  color: #221e1f;
  background-color: #F7F7F7;
  border-color: #F7F7F7;
}
.btn-light-d:not(:disabled):not(.disabled):active, .btn-light-d:not(:disabled):not(.disabled).active, .show > .btn-light-d.dropdown-toggle {
  color: #221e1f;
  background-color: #e0c8ed;
  border-color: #e0c8ed;
}
.btn-light-d:not(:disabled):not(.disabled):active:focus, .btn-light-d:not(:disabled):not(.disabled).active:focus, .show > .btn-light-d.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(215, 214, 215, 0.5);
}
.btn-light-d i {
  color: #aa68cd;
}
.btn-light-d:not(:hover):not(:active):not(:focus) {
  color: #3f3f47;
}

.btn-light-e {
  color: #221e1f;
  background-color: #F7F7F7;
  border-color: #F7F7F7;
}
.btn-light-e:hover {
  color: #221e1f;
  background-color: #d2e790;
  border-color: #d2e790;
}
.btn-light-e:focus, .btn-light-e.focus {
  color: #221e1f;
  background-color: #d2e790;
  border-color: #d2e790;
  box-shadow: 0 0 0 0.2rem rgba(215, 214, 215, 0.5);
}
.btn-light-e.disabled, .btn-light-e:disabled {
  color: #221e1f;
  background-color: #F7F7F7;
  border-color: #F7F7F7;
}
.btn-light-e:not(:disabled):not(.disabled):active, .btn-light-e:not(:disabled):not(.disabled).active, .show > .btn-light-e.dropdown-toggle {
  color: #221e1f;
  background-color: #d2e790;
  border-color: #d2e790;
}
.btn-light-e:not(:disabled):not(.disabled):active:focus, .btn-light-e:not(:disabled):not(.disabled).active:focus, .show > .btn-light-e.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(215, 214, 215, 0.5);
}
.btn-light-e i {
  color: #A5CB2C;
}
.btn-light-e:not(:hover):not(:active):not(:focus) {
  color: #3f3f47;
}

.btn-light-f {
  color: #221e1f;
  background-color: #F7F7F7;
  border-color: #F7F7F7;
}
.btn-light-f:hover {
  color: #221e1f;
  background-color: #ea9ea4;
  border-color: #ea9ea4;
}
.btn-light-f:focus, .btn-light-f.focus {
  color: #221e1f;
  background-color: #ea9ea4;
  border-color: #ea9ea4;
  box-shadow: 0 0 0 0.2rem rgba(215, 214, 215, 0.5);
}
.btn-light-f.disabled, .btn-light-f:disabled {
  color: #221e1f;
  background-color: #F7F7F7;
  border-color: #F7F7F7;
}
.btn-light-f:not(:disabled):not(.disabled):active, .btn-light-f:not(:disabled):not(.disabled).active, .show > .btn-light-f.dropdown-toggle {
  color: #221e1f;
  background-color: #ea9ea4;
  border-color: #ea9ea4;
}
.btn-light-f:not(:disabled):not(.disabled):active:focus, .btn-light-f:not(:disabled):not(.disabled).active:focus, .show > .btn-light-f.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(215, 214, 215, 0.5);
}
.btn-light-f i {
  color: #D33543;
}
.btn-light-f:not(:hover):not(:active):not(:focus) {
  color: #3f3f47;
}

.btn-light-g {
  color: #221e1f;
  background-color: #F7F7F7;
  border-color: #F7F7F7;
}
.btn-light-g:hover {
  color: #221e1f;
  background-color: #f3d49c;
  border-color: #f3d49c;
}
.btn-light-g:focus, .btn-light-g.focus {
  color: #221e1f;
  background-color: #f3d49c;
  border-color: #f3d49c;
  box-shadow: 0 0 0 0.2rem rgba(215, 214, 215, 0.5);
}
.btn-light-g.disabled, .btn-light-g:disabled {
  color: #221e1f;
  background-color: #F7F7F7;
  border-color: #F7F7F7;
}
.btn-light-g:not(:disabled):not(.disabled):active, .btn-light-g:not(:disabled):not(.disabled).active, .show > .btn-light-g.dropdown-toggle {
  color: #221e1f;
  background-color: #f3d49c;
  border-color: #f3d49c;
}
.btn-light-g:not(:disabled):not(.disabled):active:focus, .btn-light-g:not(:disabled):not(.disabled).active:focus, .show > .btn-light-g.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(215, 214, 215, 0.5);
}
.btn-light-g i {
  color: #E5A22A;
}
.btn-light-g:not(:hover):not(:active):not(:focus) {
  color: #3f3f47;
}

.btn-light-h {
  color: #221e1f;
  background-color: #F7F7F7;
  border-color: #F7F7F7;
}
.btn-light-h:hover {
  color: #ffffff;
  background-color: #f13942;
  border-color: #f13942;
}
.btn-light-h:focus, .btn-light-h.focus {
  color: #ffffff;
  background-color: #f13942;
  border-color: #f13942;
  box-shadow: 0 0 0 0.2rem rgba(215, 214, 215, 0.5);
}
.btn-light-h.disabled, .btn-light-h:disabled {
  color: #221e1f;
  background-color: #F7F7F7;
  border-color: #F7F7F7;
}
.btn-light-h:not(:disabled):not(.disabled):active, .btn-light-h:not(:disabled):not(.disabled).active, .show > .btn-light-h.dropdown-toggle {
  color: #ffffff;
  background-color: #f13942;
  border-color: #f13942;
}
.btn-light-h:not(:disabled):not(.disabled):active:focus, .btn-light-h:not(:disabled):not(.disabled).active:focus, .show > .btn-light-h.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(215, 214, 215, 0.5);
}
.btn-light-h i {
  color: #a00b12;
}
.btn-light-h:not(:hover):not(:active):not(:focus) {
  color: #3f3f47;
}

.btn-light-i {
  color: #221e1f;
  background-color: #F7F7F7;
  border-color: #F7F7F7;
}
.btn-light-i:hover {
  color: #221e1f;
  background-color: #9cd9d3;
  border-color: #9cd9d3;
}
.btn-light-i:focus, .btn-light-i.focus {
  color: #221e1f;
  background-color: #9cd9d3;
  border-color: #9cd9d3;
  box-shadow: 0 0 0 0.2rem rgba(215, 214, 215, 0.5);
}
.btn-light-i.disabled, .btn-light-i:disabled {
  color: #221e1f;
  background-color: #F7F7F7;
  border-color: #F7F7F7;
}
.btn-light-i:not(:disabled):not(.disabled):active, .btn-light-i:not(:disabled):not(.disabled).active, .show > .btn-light-i.dropdown-toggle {
  color: #221e1f;
  background-color: #9cd9d3;
  border-color: #9cd9d3;
}
.btn-light-i:not(:disabled):not(.disabled):active:focus, .btn-light-i:not(:disabled):not(.disabled).active:focus, .show > .btn-light-i.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(215, 214, 215, 0.5);
}
.btn-light-i i {
  color: #44b1a6;
}
.btn-light-i:not(:hover):not(:active):not(:focus) {
  color: #3f3f47;
}

.btn-light-j {
  color: #221e1f;
  background-color: #F7F7F7;
  border-color: #F7F7F7;
}
.btn-light-j:hover {
  color: #ffffff;
  background-color: #8a6fc1;
  border-color: #8a6fc1;
}
.btn-light-j:focus, .btn-light-j.focus {
  color: #ffffff;
  background-color: #8a6fc1;
  border-color: #8a6fc1;
  box-shadow: 0 0 0 0.2rem rgba(215, 214, 215, 0.5);
}
.btn-light-j.disabled, .btn-light-j:disabled {
  color: #221e1f;
  background-color: #F7F7F7;
  border-color: #F7F7F7;
}
.btn-light-j:not(:disabled):not(.disabled):active, .btn-light-j:not(:disabled):not(.disabled).active, .show > .btn-light-j.dropdown-toggle {
  color: #ffffff;
  background-color: #8a6fc1;
  border-color: #8a6fc1;
}
.btn-light-j:not(:disabled):not(.disabled):active:focus, .btn-light-j:not(:disabled):not(.disabled).active:focus, .show > .btn-light-j.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(215, 214, 215, 0.5);
}
.btn-light-j i {
  color: #4C357B;
}
.btn-light-j:not(:hover):not(:active):not(:focus) {
  color: #3f3f47;
}

.btn-light-k {
  color: #221e1f;
  background-color: #F7F7F7;
  border-color: #F7F7F7;
}
.btn-light-k:hover {
  color: #ffffff;
  background-color: #8a6fc1;
  border-color: #8a6fc1;
}
.btn-light-k:focus, .btn-light-k.focus {
  color: #ffffff;
  background-color: #8a6fc1;
  border-color: #8a6fc1;
  box-shadow: 0 0 0 0.2rem rgba(215, 214, 215, 0.5);
}
.btn-light-k.disabled, .btn-light-k:disabled {
  color: #221e1f;
  background-color: #F7F7F7;
  border-color: #F7F7F7;
}
.btn-light-k:not(:disabled):not(.disabled):active, .btn-light-k:not(:disabled):not(.disabled).active, .show > .btn-light-k.dropdown-toggle {
  color: #ffffff;
  background-color: #8a6fc1;
  border-color: #8a6fc1;
}
.btn-light-k:not(:disabled):not(.disabled):active:focus, .btn-light-k:not(:disabled):not(.disabled).active:focus, .show > .btn-light-k.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(215, 214, 215, 0.5);
}
.btn-light-k i {
  color: #E5BE01;
}
.btn-light-k:not(:hover):not(:active):not(:focus) {
  color: #3f3f47;
}

.btn-light-success {
  color: #221e1f;
  background-color: #F7F7F7;
  border-color: #F7F7F7;
}
.btn-light-success:hover {
  color: #221e1f;
  background-color: #d2e790;
  border-color: #d2e790;
}
.btn-light-success:focus, .btn-light-success.focus {
  color: #221e1f;
  background-color: #d2e790;
  border-color: #d2e790;
  box-shadow: 0 0 0 0.2rem rgba(215, 214, 215, 0.5);
}
.btn-light-success.disabled, .btn-light-success:disabled {
  color: #221e1f;
  background-color: #F7F7F7;
  border-color: #F7F7F7;
}
.btn-light-success:not(:disabled):not(.disabled):active, .btn-light-success:not(:disabled):not(.disabled).active, .show > .btn-light-success.dropdown-toggle {
  color: #221e1f;
  background-color: #d2e790;
  border-color: #d2e790;
}
.btn-light-success:not(:disabled):not(.disabled):active:focus, .btn-light-success:not(:disabled):not(.disabled).active:focus, .show > .btn-light-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(215, 214, 215, 0.5);
}
.btn-light-success i {
  color: #A5CB2C;
}
.btn-light-success:not(:hover):not(:active):not(:focus) {
  color: #3f3f47;
}

.btn-light-danger {
  color: #221e1f;
  background-color: #F7F7F7;
  border-color: #F7F7F7;
}
.btn-light-danger:hover {
  color: #221e1f;
  background-color: #ea9ea4;
  border-color: #ea9ea4;
}
.btn-light-danger:focus, .btn-light-danger.focus {
  color: #221e1f;
  background-color: #ea9ea4;
  border-color: #ea9ea4;
  box-shadow: 0 0 0 0.2rem rgba(215, 214, 215, 0.5);
}
.btn-light-danger.disabled, .btn-light-danger:disabled {
  color: #221e1f;
  background-color: #F7F7F7;
  border-color: #F7F7F7;
}
.btn-light-danger:not(:disabled):not(.disabled):active, .btn-light-danger:not(:disabled):not(.disabled).active, .show > .btn-light-danger.dropdown-toggle {
  color: #221e1f;
  background-color: #ea9ea4;
  border-color: #ea9ea4;
}
.btn-light-danger:not(:disabled):not(.disabled):active:focus, .btn-light-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-light-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(215, 214, 215, 0.5);
}
.btn-light-danger i {
  color: #D33543;
}
.btn-light-danger:not(:hover):not(:active):not(:focus) {
  color: #3f3f47;
}

.btn-light-dark {
  color: #221e1f;
  background-color: #F7F7F7;
  border-color: #F7F7F7;
}
.btn-light-dark:hover {
  color: #ffffff;
  background-color: #537980;
  border-color: #537980;
}
.btn-light-dark:focus, .btn-light-dark.focus {
  color: #ffffff;
  background-color: #537980;
  border-color: #537980;
  box-shadow: 0 0 0 0.2rem rgba(215, 214, 215, 0.5);
}
.btn-light-dark.disabled, .btn-light-dark:disabled {
  color: #221e1f;
  background-color: #F7F7F7;
  border-color: #F7F7F7;
}
.btn-light-dark:not(:disabled):not(.disabled):active, .btn-light-dark:not(:disabled):not(.disabled).active, .show > .btn-light-dark.dropdown-toggle {
  color: #ffffff;
  background-color: #537980;
  border-color: #537980;
}
.btn-light-dark:not(:disabled):not(.disabled):active:focus, .btn-light-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-light-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(215, 214, 215, 0.5);
}
.btn-light-dark i {
  color: #213033;
}
.btn-light-dark:not(:hover):not(:active):not(:focus) {
  color: #3f3f47;
}

.btn-color-a:not(.disabled):not(:disabled) .fas,
.btn-color-a:not(.disabled):not(:disabled) i {
  color: #5BC5F2;
}

.btn-color-b:not(.disabled):not(:disabled) .fas,
.btn-color-b:not(.disabled):not(:disabled) i {
  color: #9013FE;
}

.btn-color-c:not(.disabled):not(:disabled) .fas,
.btn-color-c:not(.disabled):not(:disabled) i {
  color: #EC68AB;
}

.btn-color-d:not(.disabled):not(:disabled) .fas,
.btn-color-d:not(.disabled):not(:disabled) i {
  color: #aa68cd;
}

.btn-color-e:not(.disabled):not(:disabled) .fas,
.btn-color-e:not(.disabled):not(:disabled) i {
  color: #A5CB2C;
}

.btn-color-f:not(.disabled):not(:disabled) .fas,
.btn-color-f:not(.disabled):not(:disabled) i {
  color: #D33543;
}

.btn-color-g:not(.disabled):not(:disabled) .fas,
.btn-color-g:not(.disabled):not(:disabled) i {
  color: #E5A22A;
}

.btn-color-h:not(.disabled):not(:disabled) .fas,
.btn-color-h:not(.disabled):not(:disabled) i {
  color: #a00b12;
}

.btn-color-i:not(.disabled):not(:disabled) .fas,
.btn-color-i:not(.disabled):not(:disabled) i {
  color: #44b1a6;
}
.btn-color-i.disabled .fas,
.btn-color-i.disabled i,
.btn-color-i :disabled .fas,
.btn-color-i :disabled i {
  color: #3f3f47;
}

.btn-color-j:not(.disabled):not(:disabled) .fas,
.btn-color-j:not(.disabled):not(:disabled) i {
  color: #4C357B;
}

.btn-color-k:not(.disabled):not(:disabled) .fas,
.btn-color-k:not(.disabled):not(:disabled) i {
  color: #E5BE01;
}

.btn-color-a.disabled,
.btn-color-a :disabled,
.btn-color-b.disabled,
.btn-color-b :disabled,
.btn-color-c.disabled,
.btn-color-c :disabled,
.btn-color-d.disabled,
.btn-color-d :disabled,
.btn-color-e.disabled,
.btn-color-e :disabled,
.btn-color-f.disabled,
.btn-color-f :disabled,
.btn-color-g.disabled,
.btn-color-g :disabled,
.btn-color-h.disabled,
.btn-color-h :disabled,
.btn-color-i.disabled,
.btn-color-i :disabled,
.btn-color-j.disabled,
.btn-color-j :disabled,
.btn-color-k.disabled,
.btn-color-k :disabled {
  cursor: not-allowed;
}
.btn-color-a.disabled .fas,
.btn-color-a.disabled i,
.btn-color-a :disabled .fas,
.btn-color-a :disabled i,
.btn-color-b.disabled .fas,
.btn-color-b.disabled i,
.btn-color-b :disabled .fas,
.btn-color-b :disabled i,
.btn-color-c.disabled .fas,
.btn-color-c.disabled i,
.btn-color-c :disabled .fas,
.btn-color-c :disabled i,
.btn-color-d.disabled .fas,
.btn-color-d.disabled i,
.btn-color-d :disabled .fas,
.btn-color-d :disabled i,
.btn-color-e.disabled .fas,
.btn-color-e.disabled i,
.btn-color-e :disabled .fas,
.btn-color-e :disabled i,
.btn-color-f.disabled .fas,
.btn-color-f.disabled i,
.btn-color-f :disabled .fas,
.btn-color-f :disabled i,
.btn-color-g.disabled .fas,
.btn-color-g.disabled i,
.btn-color-g :disabled .fas,
.btn-color-g :disabled i,
.btn-color-h.disabled .fas,
.btn-color-h.disabled i,
.btn-color-h :disabled .fas,
.btn-color-h :disabled i,
.btn-color-i.disabled .fas,
.btn-color-i.disabled i,
.btn-color-i :disabled .fas,
.btn-color-i :disabled i,
.btn-color-j.disabled .fas,
.btn-color-j.disabled i,
.btn-color-j :disabled .fas,
.btn-color-j :disabled i,
.btn-color-k.disabled .fas,
.btn-color-k.disabled i,
.btn-color-k :disabled .fas,
.btn-color-k :disabled i {
  color: #9B9B9B;
}

.btn-circle {
  width: 30px !important;
  height: 30px !important;
  padding: 6px 0px !important;
  border-radius: 15px !important;
  border: none !important;
  text-align: center !important;
  font-size: 12px !important;
  line-height: 1.42857 !important;
}

.btn-circle-border {
  width: 30px;
  height: 30px;
  padding: 6px 0px;
  border-radius: 15px;
  border: thin solid;
  text-align: center;
  font-size: 12px;
  line-height: 1.42857;
}

/* BTN-ROUND */
.btn-round {
  width: 33px;
  max-width: 33px;
  height: 33px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: thin solid;
}

.btn-round-inline {
  margin-right: 10px;
  margin-left: 10px;
  position: relative;
}

.btn-round-inline:last-of-type {
  margin-right: 0;
}

.btn-round-inline:first-of-type {
  margin-left: 0;
}

.btn-round-inline::after {
  content: "";
  position: absolute;
  left: calc(43px);
  display: block;
  height: 33px;
  border-right: 1px solid #ECEBEB;
}

.btn-round-inline:last-of-type::after {
  content: none;
}

/* BTN-ROUND */
.btn-STB-divider {
  margin-right: 18px;
  position: relative;
}

.btn-STB-divider::before {
  content: "";
  height: calc(100% + (1px * 2));
  border-right: 1px solid #ECEBEB;
  position: absolute;
  top: calc(-1px);
  right: -16px;
}

.card {
  margin-bottom: 15px;
}
.card .card-header {
  border-bottom: none;
  font-weight: 700;
  font-size: 1.1375rem;
  /* Fix al problema di bootstrap dell'icona della freccia nel */
}
.card .card-header.cursor_pointer > i:first-child {
  width: 24px;
  text-align: right;
}
.card .card-header .card-header-icon .fal {
  width: 2rem;
  font-size: 1.5rem;
}
.card .card-header .card-header-text {
  font-size: 1.1375rem;
}
.card .card-body.card-body-bord-top::before {
  content: "";
  display: block;
  width: 100%;
  position: relative;
  bottom: 1rem;
  border-top: 1px solid #ECEBEB;
}
.card .card-body.card-body-bord-bot::after {
  content: "";
  display: block;
  width: 100%;
  position: relative;
  top: 1rem;
  border-bottom: 1px solid #ECEBEB;
}

.card-body.px-0 > .row {
  padding-left: 0;
  padding-right: 0;
}

.px-card {
  padding-left: 15px;
  padding-right: 15px;
}

.p-card {
  padding: 15px 15px;
}

.p-gutter {
  padding: 15px;
  border-radius: 4px;
}

.pb-gutter {
  padding-bottom: 15px;
}

.pt-gutter {
  padding-top: 15px;
}

.mb-gutter {
  margin-bottom: 15px;
}

.ml-actions {
  margin-left: 30px;
}

.create-card {
  border-style: dashed;
  background: transparent;
}

.categorie-card:hover,
.prodotti-card:hover {
  transition: 0.3s;
  cursor: pointer;
  transform: scale(1.01, 1.01);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1019607843);
}

.categorie-card:hover img,
.prodotti-card:hover img {
  transition: all 0.5s ease-in-out;
}

.vertical-autoalign {
  display: flex !important;
  align-self: stretch !important;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
}
.card-list .card {
  margin-right: 1rem;
}
.card-list .card:last-child {
  margin-right: 0;
}

.dropdown-divider {
  margin: 0 1rem;
}

.dropdown-item {
  font-size: 0.76rem;
  transition: 0.3s;
  cursor: pointer;
}
.dropdown-item .legenda-desc {
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 30px;
}
.dropdown-item:not(:last-child)::after {
  content: "";
  display: block;
  position: relative;
  bottom: -12px;
  border-bottom: 1px solid #ECEBEB;
}

.dropdown-menu {
  box-shadow: 0 0rem 1.5rem rgba(0, 0, 0, 0.15);
}

.legenda-block {
  max-height: 600px;
  overflow-y: scroll;
}

/**
Source https://bootsnipp.com/snippets/nrDmZ

Example of usage:

<div class="progress blue">
    <span class="progress-left">
        <span class="progress-bar"></span>
    </span>
    <span class="progress-right">
        <span class="progress-bar"></span>
    </span>
    <div class="progress-value">90%</div>
</div>


*/
/*      Used vars:       */
.progress-circle {
  width: 30px;
  height: 30px;
  line-height: 30px;
  background: none;
  margin: 0 auto;
  box-shadow: none;
  position: relative;
}

.progress-circle:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
}

.progress-circle > span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}

.progress-circle .progress-left {
  left: 0;
}

.progress-circle .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 2px;
  border-style: solid;
  position: absolute;
  top: 0;
}

.progress-circle .progress-left .progress-bar {
  left: 100%;
  border-top-right-radius: calc( 30px / 2 );
  border-bottom-right-radius: calc( 30px / 2 );
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.progress-circle .progress-right {
  right: 0;
}

.progress-circle .progress-right .progress-bar {
  left: -100%;
  border-top-left-radius: calc( 30px / 2 );
  border-bottom-left-radius: calc( 30px / 2 );
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.progress-circle .progress-bar {
  border-color: #44b1a6;
}

.progress-circle .progress-value {
  width: 90%;
  height: 90%;
  border-radius: 50%;
  font-size: 8px;
  color: #354052;
  line-height: 28px;
  text-align: center;
  position: absolute;
  top: 5%;
  left: 5%;
  font-weight: bold;
}

.progress.blue .progress-bar {
  border-color: #44b1a6;
}

.progress.blue .progress-left .progress-bar {
  animation: loading-2 1.5s linear forwards 1.8s;
}

.progress.yellow .progress-bar {
  border-color: #E5A22A;
}

.progress.yellow .progress-left .progress-bar {
  animation: loading-3 1s linear forwards 1.8s;
}

.progress.pink .progress-bar {
  border-color: #EC68AB;
}

.progress.pink .progress-left .progress-bar {
  animation: loading-4 0.4s linear forwards 1.8s;
}

.progress.green .progress-bar {
  border-color: #44b1a6;
}

.progress.green .progress-left .progress-bar {
  animation: loading-5 1.2s linear forwards 1.8s;
}

@keyframes loading-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
@keyframes loading-2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(144deg);
    transform: rotate(144deg);
  }
}
@keyframes loading-3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@keyframes loading-4 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(36deg);
    transform: rotate(36deg);
  }
}
@keyframes loading-5 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(126deg);
    transform: rotate(126deg);
  }
}
@media only screen and (max-width: 990px) {
  .progress {
    margin-bottom: 20px;
  }
}
html .sticky-top {
  top: 80px;
}

.bg-danger-light {
  background-color: white !important;
}

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

.bg-success-light {
  background-color: #72ffd8 !important;
}

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

.button-collapsable:not(.collapsed) > .fa-chevron-right:before {
  content: "\f078";
}

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

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

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

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

.page-title {
  font-size: 28px;
  font-weight: bold;
}

.page-subtitle {
  font-size: 18px;
}

.utility-indent-input {
  margin-left: 44.5px;
}

.utility-pointer:hover {
  cursor: pointer;
}

#dati_ordine {
  display: none;
}

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

.nomeLavoriIndex > a {
  display: block;
}

.nomeLavoriIndex > a,
.nomeLavoriIndex > div,
.qtaLavoriIndex > div,
.elencoElementiTabellaIndex > div {
  padding: 4px;
  border-bottom: 1px solid #ECEBEB;
}

.nomeLavoriIndex > a:last-of-type,
.nomeLavoriIndex > div:last-of-type,
.qtaLavoriIndex > div:last-of-type,
.elencoElementiTabellaIndex > div:last-of-type {
  border-bottom: unset;
}

.nomeLavoriIndex .link_dialog_riga {
  margin-left: 8px;
}

.nomeLavoriIndexQta {
  width: 60px;
  text-align: right;
  vertical-align: top;
  margin-right: 8px;
}

.nomeLavoriIndexIcon {
  width: 25px;
  vertical-align: middle;
}

.bg-gray-900 {
  color: #ffffff;
  background-color: #221e1f;
}

.bg-gray-800 {
  color: #ffffff;
  background-color: #292b2c;
}

.bg-gray-700 {
  color: #ffffff;
  background-color: #3f3f47;
}

.bg-gray-600 {
  color: #ffffff;
  background-color: #5E6771;
}

.bg-gray-400 {
  color: #ffffff;
  background-color: #5E6771;
}

.bg-gray-300 {
  color: #ffffff;
  background-color: #ECEBEB;
}

.bg-gray-200 {
  background-color: #000;
  background-color: #F7F7F7;
}

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

.bg-primary-lighten-1 {
  background-color: #f8fcfc;
}

.bg-secondary-lighten-1 {
  background-color: #a59a9d;
}

.bg-success-lighten-1 {
  background-color: #fcfef8;
}

.bg-info-lighten-1 {
  background-color: white;
}

.bg-warning-lighten-1 {
  background-color: white;
}

.bg-danger-lighten-1 {
  background-color: white;
}

.bg-danger-lighten-1 {
  background-color: white;
}

.bg-gray-600-lighten-1 {
  background-color: #e5e7e9;
}

.bg-gray-400-lighten-1 {
  background-color: white;
}

#rows_title_counter {
  font-weight: normal;
}

input[type=radio] {
  position: relative;
}

input[type=radio]:after {
  width: 15px;
  height: 15px;
  border-radius: 15px;
  top: -2px;
  left: -1px;
  position: absolute;
  background-color: white;
  content: "";
  display: inline-block;
  visibility: visible;
  border: 2px solid var(--light);
}

input[type=radio]:checked:after {
  width: 15px;
  height: 15px;
  border-radius: 15px;
  top: -2px;
  left: -1px;
  position: relative;
  background-color: var(--success);
  content: "";
  display: inline-block;
  visibility: visible;
  border: 2px solid var(--success);
}

.md-form-item-actions {
  min-width: unset !important;
  margin-right: 0 !important;
  margin-top: 16px !important;
  position: absolute;
  z-index: 2;
}

.col-form-label {
  padding-left: 0;
}

.badge-input-bl .fa-fw {
  display: inline !important;
}
.badge-input-bl .fa-fw:not(.info),
.badge-input-bl .fa-fw :not(.fa-question-circle) {
  display: none;
}

.img-cover {
  object-fit: cover;
  overflow: hidden;
}

.border-btm {
  border-bottom: 1px solid #ECEBEB;
}

.border-top {
  border-top: 1px solid #ECEBEB;
}

@media print {
  .vg-gr-no-print,
.vg-gr-no-print * {
    display: none !important;
  }
}
/* -------- CURSOR CHANGE -------- */
/* Modifica il cursore quando si trova sopra un elemento  sortable-el e quando si sta trascinando un elemento sortable-el*/
.sortable-el:hover {
  cursor: grab;
}

.sortable-el:hover:active {
  cursor: grabbing;
}

.mr-1-list > * {
  margin-right: 1rem;
}
.mr-1-list > * > *:last-child {
  margin-right: 0;
}

.ul-no-bullets {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/* richiede contenitore padre con classe: .position-relative */
.add-left-border {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  height: 100%;
  width: 6px;
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.add_collapse_icon {
  display: flex;
  padding-right: 18px;
  position: relative;
  align-items: center;
  cursor: pointer;
}
.add_collapse_icon::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 18px;
  position: absolute;
  background-image: url("../img/svg/chevron-right-solid.svg");
  background-size: 9px 18px;
  background-position: 0 0;
  right: 0;
  transition: transform 0.2s ease-in-out;
}
.add_collapse_icon.card-header {
  margin-right: 1rem;
}
.add_collapse_icon[data-toggle=collapse][aria-expanded=true]::after {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.add_collapse_icon[data-toggle=collapse][aria-expanded=false]::after {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}

.left-border-light,
.left-border-primary,
.left-border-success,
.left-border-warning,
.left-border-danger {
  position: relative;
}
.left-border-light::after,
.left-border-primary::after,
.left-border-success::after,
.left-border-warning::after,
.left-border-danger::after {
  content: "";
  position: absolute;
  width: 6px;
  height: calc(100% + 2px);
  left: -1px;
  top: -1px;
  background-color: var(--light);
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

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

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

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

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

.left-border-colored {
  position: relative;
}
.left-border-colored > span:first-child {
  position: absolute;
  width: 6px;
  height: calc(100% + 2px);
  left: -1px;
  top: -1px;
  background-color: var(--light);
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.modal-body-add-row {
  height: 750px;
}

.modal-menu-column {
  position: relative;
  height: 720px;
  overflow-y: scroll;
}

.modal-menu-item-selected {
  position: relative;
}

.modal-menu-item-selected > div {
  border-color: #000;
}

.modal-menu-item-selected:after {
  content: "";
  border-color: #000;
  position: absolute;
  z-index: 10;
  height: calc(100% - 15px);
  width: 9px;
  background-image: url("../img/svg/chevron-right-solid.svg");
  background-repeat: no-repeat;
  background-size: 9px 18px;
  background-position: center center;
  right: -12px;
  color: #000;
  top: 0;
}
.modal-menu-item-selected::afterhover {
  cursor: unset;
  color: inherit;
}

.button-disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.65;
}

.img-uploaded-box {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 4px;
}

.pagination {
  justify-content: center;
}
.pagination .page-item {
  color: #354052;
  background: none;
  border: none;
}
.pagination .page-link {
  border: none;
  color: #354052;
  background-color: transparent;
  border-radius: 4px;
}
.pagination .page-link:focus {
  box-shadow: none;
}
.pagination .page-link:hover {
  font-weight: bold;
}

.vg7-icons {
  width: 30px;
  height: 30px;
  border-radius: 15px;
  text-align: center;
  line-height: 28px;
  font-size: 10px;
  margin: 0 auto;
}

.stato-icons {
  border: 1px solid #F6A623;
  color: #323232;
}

.vg7-pause {
  border: 1px solid #F6A623;
  background: rgba(252, 218, 164, 0.2);
}

.vg7-check {
  border: 1px solid #B8E986;
  background: rgba(223, 255, 190, 0.21);
}

.vg7-canceled {
  border: 1px solid #FF1D82;
  background: rgba(255, 138, 190, 0.2);
}

.vg7-icon-w {
  border: 1px solid #50E3C2;
  font-size: 14px;
}

.vg7-icon-p {
  border: 1px solid #9013FE;
  font-size: 14px;
}

.vg7-print {
  border: 1px solid #419FEB;
  background: rgba(165, 215, 255, 0.2);
}

.vg7-star {
  border: 1px solid rgb(246, 166, 35);
  background: rgba(252, 218, 164, 0.2);
}

.vg7-exclam {
  border: 1px solid rgb(255, 213, 213);
  background: rgb(255, 226, 226);
  color: rgb(226, 0, 26);
  font-size: 17px;
}

.vg7-pencil {
  border: 1px solid rgb(80, 227, 194);
  font-size: 12px;
}

.vg7-wait {
  border: 1px solid rgb(236, 104, 171);
  font-size: 12px;
}

.icon-round {
  display: inline-flex;
  width: 30px;
  height: 30px;
  font-size: 16px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.daterangepicker {
  position: absolute;
  color: inherit;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #ddd;
  width: 278px;
  max-width: none;
  padding: 0;
  margin-top: 7px;
  top: 100px;
  left: 20px;
  z-index: 3001;
  display: none;
  font-family: arial;
  font-size: 15px;
  line-height: 1em;
}

.daterangepicker:before, .daterangepicker:after {
  position: absolute;
  display: inline-block;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: "";
}

.daterangepicker:before {
  top: -7px;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #ccc;
}

.daterangepicker:after {
  top: -6px;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
}

.daterangepicker.opensleft:before {
  right: 9px;
}

.daterangepicker.opensleft:after {
  right: 10px;
}

.daterangepicker.openscenter:before {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.openscenter:after {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.opensright:before {
  left: 9px;
}

.daterangepicker.opensright:after {
  left: 10px;
}

.daterangepicker.drop-up {
  margin-top: -7px;
}

.daterangepicker.drop-up:before {
  top: initial;
  bottom: -7px;
  border-bottom: initial;
  border-top: 7px solid #ccc;
}

.daterangepicker.drop-up:after {
  top: initial;
  bottom: -6px;
  border-bottom: initial;
  border-top: 6px solid #fff;
}

.daterangepicker.single .daterangepicker .ranges, .daterangepicker.single .drp-calendar {
  float: none;
}

.daterangepicker.single .drp-selected {
  display: none;
}

.daterangepicker.show-calendar .drp-calendar {
  display: block;
}

.daterangepicker.show-calendar .drp-buttons {
  display: block;
}

.daterangepicker.auto-apply .drp-buttons {
  display: none;
}

.daterangepicker .drp-calendar {
  display: none;
  max-width: 270px;
}

.daterangepicker .drp-calendar.left {
  padding: 8px 0 8px 8px;
}

.daterangepicker .drp-calendar.right {
  padding: 8px;
}

.daterangepicker .drp-calendar.single .calendar-table {
  border: none;
}

.daterangepicker .calendar-table .next span, .daterangepicker .calendar-table .prev span {
  color: #fff;
  border: solid black;
  border-width: 0 2px 2px 0;
  border-radius: 0;
  display: inline-block;
  padding: 3px;
}

.daterangepicker .calendar-table .next span {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.daterangepicker .calendar-table .prev span {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  min-width: 32px;
  width: 32px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}

.daterangepicker .calendar-table {
  border: 1px solid #fff;
  border-radius: 4px;
  background-color: #fff;
}

.daterangepicker .calendar-table table {
  width: 100%;
  margin: 0;
  border-spacing: 0;
  border-collapse: collapse;
}

.daterangepicker td.available:hover, .daterangepicker th.available:hover {
  background-color: #eee;
  border-color: transparent;
  color: inherit;
}

.daterangepicker td.week, .daterangepicker th.week {
  font-size: 80%;
  color: #ccc;
}

.daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date {
  background-color: #fff;
  border-color: transparent;
  color: #999;
}

.daterangepicker td.in-range {
  background-color: #ebf4f8;
  border-color: transparent;
  color: #000;
  border-radius: 0;
}

.daterangepicker td.start-date {
  border-radius: 4px 0 0 4px;
}

.daterangepicker td.end-date {
  border-radius: 0 4px 4px 0;
}

.daterangepicker td.start-date.end-date {
  border-radius: 4px;
}

.daterangepicker td.active, .daterangepicker td.active:hover {
  background-color: #357ebd;
  border-color: transparent;
  color: #fff;
}

.daterangepicker th.month {
  width: auto;
}

.daterangepicker td.disabled, .daterangepicker option.disabled {
  color: #999;
  cursor: not-allowed;
  text-decoration: line-through;
}

.daterangepicker select.monthselect, .daterangepicker select.yearselect {
  font-size: 12px;
  padding: 1px;
  height: auto;
  margin: 0;
  cursor: default;
}

.daterangepicker select.monthselect {
  margin-right: 2%;
  width: 56%;
}

.daterangepicker select.yearselect {
  width: 40%;
}

.daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect {
  width: 50px;
  margin: 0 auto;
  background: #eee;
  border: 1px solid #eee;
  padding: 2px;
  outline: 0;
  font-size: 12px;
}

.daterangepicker .calendar-time {
  text-align: center;
  margin: 4px auto 0 auto;
  line-height: 30px;
  position: relative;
}

.daterangepicker .calendar-time select.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.daterangepicker .drp-buttons {
  clear: both;
  text-align: right;
  padding: 8px;
  border-top: 1px solid #ddd;
  display: none;
  line-height: 12px;
  vertical-align: middle;
}

.daterangepicker .drp-selected {
  display: inline-block;
  font-size: 12px;
  padding-right: 8px;
}

.daterangepicker .drp-buttons .btn {
  margin-left: 8px;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
}

.daterangepicker.show-ranges.single.rtl .drp-calendar.left {
  border-right: 1px solid #ddd;
}

.daterangepicker.show-ranges.single.ltr .drp-calendar.left {
  border-left: 1px solid #ddd;
}

.daterangepicker.show-ranges.rtl .drp-calendar.right {
  border-right: 1px solid #ddd;
}

.daterangepicker.show-ranges.ltr .drp-calendar.left {
  border-left: 1px solid #ddd;
}

.daterangepicker .ranges {
  float: none;
  text-align: left;
  margin: 0;
}

.daterangepicker.show-calendar .ranges {
  margin-top: 8px;
}

.daterangepicker .ranges ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.daterangepicker .ranges li {
  font-size: 12px;
  padding: 8px 12px;
  cursor: pointer;
}

.daterangepicker .ranges li:hover {
  background-color: #eee;
}

.daterangepicker .ranges li.active {
  background-color: #08c;
  color: #fff;
}

/*  Larger Screen Styling */
@media (min-width: 564px) {
  .daterangepicker {
    width: auto;
  }
  .daterangepicker .ranges ul {
    width: 140px;
  }
  .daterangepicker.single .ranges ul {
    width: 100%;
  }
  .daterangepicker.single .drp-calendar.left {
    clear: none;
  }
  .daterangepicker.single .ranges, .daterangepicker.single .drp-calendar {
    float: left;
  }
  .daterangepicker {
    direction: ltr;
    text-align: left;
  }
  .daterangepicker .drp-calendar.left {
    clear: left;
    margin-right: 0;
  }
  .daterangepicker .drp-calendar.left .calendar-table {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .daterangepicker .drp-calendar.right {
    margin-left: 0;
  }
  .daterangepicker .drp-calendar.right .calendar-table {
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .daterangepicker .drp-calendar.left .calendar-table {
    padding-right: 8px;
  }
  .daterangepicker .ranges, .daterangepicker .drp-calendar {
    float: left;
  }
}
@media (min-width: 730px) {
  .daterangepicker .ranges {
    width: auto;
  }
  .daterangepicker .ranges {
    float: left;
  }
  .daterangepicker.rtl .ranges {
    float: right;
  }
  .daterangepicker .drp-calendar.left {
    clear: none !important;
  }
}
.stepper {
  position: relative;
}
.stepper .stepper-progression {
  position: absolute;
  border-left: 2px solid #ECEBEB;
  left: 18px;
  margin: 18px 0;
  height: calc(100% - 36px);
}
.stepper .stepper-steps .stepper-step-header {
  display: flex;
  position: relative;
  margin-left: 50px;
  min-height: 50px;
  align-items: center;
}
.stepper .stepper-steps .stepper-step-header .stepper-order-icon {
  width: 37px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ECEBEB;
  border-radius: 18px;
  color: #ffffff;
  position: absolute;
  left: -50px;
}
.stepper .stepper-steps .stepper-step-header .stepper-order-icon-active {
  background-color: #44b1a6;
}
.stepper .stepper-steps .stepper-step-header:not(:first-of-type) {
  margin-top: 1rem;
  border-top: 2px solid #ECEBEB;
}
.stepper .stepper-steps .stepper-step-header-active {
  cursor: pointer;
}
.stepper .stepper-step-body {
  margin-left: 50px;
  padding-bottom: 15px;
}
.stepper > div:last-child {
  border: none;
}

.alert-primary a {
  color: #44b1a6;
}
.alert-primary a:hover {
  opacity: 0.8;
}

.alert-secondary a {
  color: #221e1f;
}
.alert-secondary a:hover {
  opacity: 0.8;
}

.alert-success a {
  color: #A5CB2C;
}
.alert-success a:hover {
  opacity: 0.8;
}

.alert-info a {
  color: #5BC5F2;
}
.alert-info a:hover {
  opacity: 0.8;
}

.alert-warning a {
  color: #E5A22A;
}
.alert-warning a:hover {
  opacity: 0.8;
}

.alert-danger a, .alert-error a {
  color: #D33543;
}
.alert-danger a:hover, .alert-error a:hover {
  opacity: 0.8;
}

.alert-light a {
  color: #ECEBEB;
}
.alert-light a:hover {
  opacity: 0.8;
}

.alert-dark a {
  color: #213033;
}
.alert-dark a:hover {
  opacity: 0.8;
}

.vue-help-text-modal {
  cursor: pointer;
}

.vue-help-text-modal-preview {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.vue-help-text-modal-preview p {
  display: contents;
}

.vue-help-text-modal-preview p:after {
  content: "\a";
  white-space: pre;
}

.vue-help-text-modal-with-media-preview {
  -webkit-line-clamp: 5;
}

.vue-help-text-modal-with-media-preview-and-title {
  -webkit-line-clamp: 4;
}

.badge-outline-primary {
  color: #44b1a6;
  border: 1px solid #44b1a6;
}
a.badge-outline-primary:hover, a.badge-outline-primary:focus {
  color: #ffffff;
  background-color: #368c83;
}
a.badge-outline-primary:focus, a.badge-outline-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(68, 177, 166, 0.5);
}

.badge-outline-secondary {
  color: #221e1f;
  border: 1px solid #221e1f;
}
a.badge-outline-secondary:hover, a.badge-outline-secondary:focus {
  color: #ffffff;
  background-color: #070606;
}
a.badge-outline-secondary:focus, a.badge-outline-secondary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(34, 30, 31, 0.5);
}

.badge-outline-success {
  color: #A5CB2C;
  border: 1px solid #A5CB2C;
}
a.badge-outline-success:hover, a.badge-outline-success:focus {
  color: #221e1f;
  background-color: #83a123;
}
a.badge-outline-success:focus, a.badge-outline-success.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(165, 203, 44, 0.5);
}

.badge-outline-info {
  color: #5BC5F2;
  border: 1px solid #5BC5F2;
}
a.badge-outline-info:hover, a.badge-outline-info:focus {
  color: #221e1f;
  background-color: #2cb4ee;
}
a.badge-outline-info:focus, a.badge-outline-info.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(91, 197, 242, 0.5);
}

.badge-outline-warning {
  color: #E5A22A;
  border: 1px solid #E5A22A;
}
a.badge-outline-warning:hover, a.badge-outline-warning:focus {
  color: #221e1f;
  background-color: #c48618;
}
a.badge-outline-warning:focus, a.badge-outline-warning.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(229, 162, 42, 0.5);
}

.badge-outline-danger {
  color: #D33543;
  border: 1px solid #D33543;
}
a.badge-outline-danger:hover, a.badge-outline-danger:focus {
  color: #ffffff;
  background-color: #af2632;
}
a.badge-outline-danger:focus, a.badge-outline-danger.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(211, 53, 67, 0.5);
}

.badge-outline-light {
  color: #ECEBEB;
  border: 1px solid #ECEBEB;
}
a.badge-outline-light:hover, a.badge-outline-light:focus {
  color: #221e1f;
  background-color: #d3d1d1;
}
a.badge-outline-light:focus, a.badge-outline-light.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(236, 235, 235, 0.5);
}

.badge-outline-dark {
  color: #213033;
  border: 1px solid #213033;
}
a.badge-outline-dark:hover, a.badge-outline-dark:focus {
  color: #ffffff;
  background-color: #0d1314;
}
a.badge-outline-dark:focus, a.badge-outline-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(33, 48, 51, 0.5);
}

.badge-icon {
  display: flex;
  position: absolute;
  top: -3px;
  right: -3px;
  height: 14px;
  width: 14px;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background-color: var(--dark);
  color: var(--white);
}

.badge-icon-trash {
  display: flex;
  position: absolute;
  top: -6px;
  right: -6px;
  height: 18px;
  width: 18px;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background-color: var(--primary);
  color: var(--white);
}

.badge a {
  color: #ffffff;
}
.badge a:hover {
  opacity: 0.75;
}

.carousel-input {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  padding-top: 16px;
}
.carousel-input .carousel-input-item {
  flex: 1;
  border-radius: 0.3rem;
  background-color: #ffffff;
  margin-right: 1rem;
  margin-bottom: 1rem;
  width: 33.33%;
  border: 2px solid #ECEBEB;
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: center;
  color: #3f3f47;
}
.carousel-input .carousel-input-item:last-child {
  margin-right: 0;
}
.carousel-input .carousel-input-item i {
  color: #858796;
}
.carousel-input .carousel-input-item.active {
  border-color: #44b1a6;
}
.carousel-input .carousel-input-item.active i {
  color: #44b1a6;
}

/* This is the core CSS of Tooltipster */
/* GENERAL STRUCTURE RULES (do not edit this section) */
.tooltipster-base {
  /* this ensures that a constrained height set by functionPosition,
  if greater that the natural height of the tooltip, will be enforced
  in browsers that support display:flex */
  display: flex;
  pointer-events: none;
  /* this may be overriden in JS for fixed position origins */
  position: absolute;
}

.tooltipster-box {
  /* see .tooltipster-base. flex-shrink 1 is only necessary for IE10-
  and flex-basis auto for IE11- (at least) */
  flex: 1 1 auto;
}

.tooltipster-content {
  /* prevents an overflow if the user adds padding to the div */
  box-sizing: border-box;
  /* these make sure we'll be able to detect any overflow */
  max-height: 100%;
  max-width: 100%;
  overflow: auto;
}

.tooltipster-ruler {
  /* these let us test the size of the tooltip without overflowing the window */
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
}

/* ANIMATIONS */
/* Open/close animations */
/* fade */
.tooltipster-fade {
  opacity: 0;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -ms-transition-property: opacity;
  transition-property: opacity;
}

.tooltipster-fade.tooltipster-show {
  opacity: 1;
}

/* grow */
.tooltipster-grow {
  -webkit-transform: scale(0, 0);
  -moz-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-backface-visibility: hidden;
}

.tooltipster-grow.tooltipster-show {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

/* swing */
.tooltipster-swing {
  opacity: 0;
  -webkit-transform: rotateZ(4deg);
  -moz-transform: rotateZ(4deg);
  -o-transform: rotateZ(4deg);
  -ms-transform: rotateZ(4deg);
  transform: rotateZ(4deg);
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
}

.tooltipster-swing.tooltipster-show {
  opacity: 1;
  -webkit-transform: rotateZ(0deg);
  -moz-transform: rotateZ(0deg);
  -o-transform: rotateZ(0deg);
  -ms-transform: rotateZ(0deg);
  transform: rotateZ(0deg);
  -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 1);
  -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -moz-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -ms-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -o-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
}

/* fall */
.tooltipster-fall {
  -webkit-transition-property: top;
  -moz-transition-property: top;
  -o-transition-property: top;
  -ms-transition-property: top;
  transition-property: top;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-fall.tooltipster-initial {
  top: 0 !important;
}

.tooltipster-fall.tooltipster-dying {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-property: all;
  top: 0 !important;
  opacity: 0;
}

/* slide */
.tooltipster-slide {
  -webkit-transition-property: left;
  -moz-transition-property: left;
  -o-transition-property: left;
  -ms-transition-property: left;
  transition-property: left;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-slide.tooltipster-initial {
  left: -40px !important;
}

.tooltipster-slide.tooltipster-dying {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-property: all;
  left: 0 !important;
  opacity: 0;
}

/* Update animations */
/* We use animations rather than transitions here because
 transition durations may be specified in the style tag due to
 animationDuration, and we try to avoid collisions and the use
 of !important */
/* fade */
@keyframes tooltipster-fading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.tooltipster-update-fade {
  animation: tooltipster-fading 400ms;
}

/* rotate */
@keyframes tooltipster-rotating {
  25% {
    transform: rotate(-2deg);
  }
  75% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(0);
  }
}
.tooltipster-update-rotate {
  animation: tooltipster-rotating 600ms;
}

/* scale */
@keyframes tooltipster-scaling {
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.tooltipster-update-scale {
  animation: tooltipster-scaling 600ms;
}

/**
 * DEFAULT STYLE OF THE SIDETIP PLUGIN
 * 
 * All styles are "namespaced" with .tooltipster-sidetip to prevent
 * conflicts between plugins.
 */
/* .tooltipster-box */
.tooltipster-sidetip .tooltipster-box {
  background: #565656;
  border: 2px solid black;
  border-radius: 4px;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
  margin-top: 8px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-box {
  margin-right: 8px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-box {
  margin-left: 8px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-box {
  margin-bottom: 8px;
}

/* .tooltipster-content */
.tooltipster-sidetip .tooltipster-content {
  color: white;
  line-height: 18px;
  padding: 6px 14px;
}

/* .tooltipster-arrow : will keep only the zone of .tooltipster-arrow-uncropped that
corresponds to the arrow we want to display */
.tooltipster-sidetip .tooltipster-arrow {
  overflow: hidden;
  position: absolute;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
  height: 10px;
  /* half the width, for centering */
  margin-left: -10px;
  top: 0;
  width: 20px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
  height: 20px;
  margin-top: -10px;
  right: 0;
  /* top 0 to keep the arrow from overflowing .tooltipster-base when it has not
  been positioned yet */
  top: 0;
  width: 10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
  height: 20px;
  margin-top: -10px;
  left: 0;
  /* same as .tooltipster-left .tooltipster-arrow */
  top: 0;
  width: 10px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
  bottom: 0;
  height: 10px;
  margin-left: -10px;
  width: 20px;
}

/* common rules between .tooltipster-arrow-background and .tooltipster-arrow-border */
.tooltipster-sidetip .tooltipster-arrow-background, .tooltipster-sidetip .tooltipster-arrow-border {
  height: 0;
  position: absolute;
  width: 0;
}

/* .tooltipster-arrow-background */
.tooltipster-sidetip .tooltipster-arrow-background {
  border: 10px solid transparent;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
  border-bottom-color: #565656;
  left: 0;
  top: 3px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
  border-left-color: #565656;
  left: -3px;
  top: 0;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
  border-right-color: #565656;
  left: 3px;
  top: 0;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
  border-top-color: #565656;
  left: 0;
  top: -3px;
}

/* .tooltipster-arrow-border */
.tooltipster-sidetip .tooltipster-arrow-border {
  border: 10px solid transparent;
  left: 0;
  top: 0;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
  border-bottom-color: black;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
  border-left-color: black;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
  border-right-color: black;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
  border-top-color: black;
}

/* tooltipster-arrow-uncropped */
.tooltipster-sidetip .tooltipster-arrow-uncropped {
  position: relative;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
  top: -10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
  left: -10px;
}

/*! jQuery UI - v1.13.1 - 2022-01-20
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?bgShadowXPos=&bgOverlayXPos=&bgErrorXPos=&bgHighlightXPos=&bgContentXPos=&bgHeaderXPos=&bgActiveXPos=&bgHoverXPos=&bgDefaultXPos=&bgShadowYPos=&bgOverlayYPos=&bgErrorYPos=&bgHighlightYPos=&bgContentYPos=&bgHeaderYPos=&bgActiveYPos=&bgHoverYPos=&bgDefaultYPos=&bgShadowRepeat=&bgOverlayRepeat=&bgErrorRepeat=&bgHighlightRepeat=&bgContentRepeat=&bgHeaderRepeat=&bgActiveRepeat=&bgHoverRepeat=&bgDefaultRepeat=&iconsHover=url(%22images%2Fui-icons_555555_256x240.png%22)&iconsHighlight=url(%22images%2Fui-icons_777620_256x240.png%22)&iconsHeader=url(%22images%2Fui-icons_444444_256x240.png%22)&iconsError=url(%22images%2Fui-icons_cc0000_256x240.png%22)&iconsDefault=url(%22images%2Fui-icons_777777_256x240.png%22)&iconsContent=url(%22images%2Fui-icons_444444_256x240.png%22)&iconsActive=url(%22images%2Fui-icons_ffffff_256x240.png%22)&bgImgUrlShadow=&bgImgUrlOverlay=&bgImgUrlHover=&bgImgUrlHighlight=&bgImgUrlHeader=&bgImgUrlError=&bgImgUrlDefault=&bgImgUrlContent=&bgImgUrlActive=&opacityFilterShadow=Alpha(Opacity%3D30)&opacityFilterOverlay=Alpha(Opacity%3D30)&opacityShadowPerc=30&opacityOverlayPerc=30&iconColorHover=%23555555&iconColorHighlight=%23777620&iconColorHeader=%23444444&iconColorError=%23cc0000&iconColorDefault=%23777777&iconColorContent=%23444444&iconColorActive=%23ffffff&bgImgOpacityShadow=0&bgImgOpacityOverlay=0&bgImgOpacityError=95&bgImgOpacityHighlight=55&bgImgOpacityContent=75&bgImgOpacityHeader=75&bgImgOpacityActive=65&bgImgOpacityHover=75&bgImgOpacityDefault=75&bgTextureShadow=flat&bgTextureOverlay=flat&bgTextureError=flat&bgTextureHighlight=flat&bgTextureContent=flat&bgTextureHeader=flat&bgTextureActive=flat&bgTextureHover=flat&bgTextureDefault=flat&cornerRadius=3px&fwDefault=normal&ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&cornerRadiusShadow=8px&thicknessShadow=5px&offsetLeftShadow=0px&offsetTopShadow=0px&opacityShadow=.3&bgColorShadow=%23666666&opacityOverlay=.3&bgColorOverlay=%23aaaaaa&fcError=%235f3f3f&borderColorError=%23f1a899&bgColorError=%23fddfdf&fcHighlight=%23777620&borderColorHighlight=%23dad55e&bgColorHighlight=%23fffa90&fcContent=%23333333&borderColorContent=%23dddddd&bgColorContent=%23ffffff&fcHeader=%23333333&borderColorHeader=%23dddddd&bgColorHeader=%23e9e9e9&fcActive=%23ffffff&borderColorActive=%23003eff&bgColorActive=%23007fff&fcHover=%232b2b2b&borderColorHover=%23cccccc&bgColorHover=%23ededed&fcDefault=%23454545&borderColorDefault=%23c5c5c5&bgColorDefault=%23f6f6f6
* Copyright jQuery Foundation and other contributors; Licensed MIT */
/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
  display: none;
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}

.ui-helper-clearfix:after {
  clear: both;
}

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  -ms-filter: "alpha(opacity=0)"; /* support: IE8 */
}

.ui-front {
  z-index: 100;
}

/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
  cursor: default !important;
  pointer-events: none;
}

/* Icons
----------------------------------*/
.ui-icon {
  display: inline-block;
  vertical-align: middle;
  margin-top: -0.25em;
  position: relative;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}

.ui-widget-icon-block {
  left: 50%;
  margin-left: -8px;
  display: block;
}

/* Misc visuals
----------------------------------*/
/* Overlays */
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ui-accordion .ui-accordion-header {
  display: block;
  cursor: pointer;
  position: relative;
  margin: 2px 0 0 0;
  padding: 0.5em 0.5em 0.5em 0.7em;
  font-size: 100%;
}

.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  overflow: auto;
}

.ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default;
}

.ui-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  outline: 0;
}

.ui-menu .ui-menu {
  position: absolute;
}

.ui-menu .ui-menu-item {
  margin: 0;
  cursor: pointer;
  /* support: IE10, see #8844 */
  list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}

.ui-menu .ui-menu-item-wrapper {
  position: relative;
  padding: 3px 1em 3px 0.4em;
}

.ui-menu .ui-menu-divider {
  margin: 5px 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0 0;
}

.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
  margin: -1px;
}

/* icon support */
.ui-menu-icons {
  position: relative;
}

.ui-menu-icons .ui-menu-item-wrapper {
  padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.2em;
  margin: auto 0;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
  left: auto;
  right: 0;
}

.ui-button {
  padding: 0.4em 1em;
  display: inline-block;
  position: relative;
  line-height: normal;
  margin-right: 0.1em;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* Support: IE <= 11 */
  overflow: visible;
}

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
  text-decoration: none;
}

/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
  width: 2em;
  box-sizing: border-box;
  text-indent: -9999px;
  white-space: nowrap;
}

/* no icon support for input elements */
input.ui-button.ui-button-icon-only {
  text-indent: 0;
}

/* button icon element(s) */
.ui-button-icon-only .ui-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
}

.ui-button.ui-icon-notext .ui-icon {
  padding: 0;
  width: 2.1em;
  height: 2.1em;
  text-indent: -9999px;
  white-space: nowrap;
}

input.ui-button.ui-icon-notext .ui-icon {
  width: auto;
  height: auto;
  text-indent: 0;
  white-space: normal;
  padding: 0.4em 1em;
}

/* workarounds */
/* Support: Firefox 5 - 40 */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.ui-controlgroup {
  vertical-align: middle;
  display: inline-block;
}

.ui-controlgroup > .ui-controlgroup-item {
  float: left;
  margin-left: 0;
  margin-right: 0;
}

.ui-controlgroup > .ui-controlgroup-item:focus,
.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus {
  z-index: 9999;
}

.ui-controlgroup-vertical > .ui-controlgroup-item {
  display: block;
  float: none;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  text-align: left;
}

.ui-controlgroup-vertical .ui-controlgroup-item {
  box-sizing: border-box;
}

.ui-controlgroup .ui-controlgroup-label {
  padding: 0.4em 1em;
}

.ui-controlgroup .ui-controlgroup-label span {
  font-size: 80%;
}

.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item {
  border-left: none;
}

.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item {
  border-top: none;
}

.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
  border-right: none;
}

.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
  border-bottom: none;
}

/* Spinner specific style fixes */
.ui-controlgroup-vertical .ui-spinner-input {
  /* Support: IE8 only, Android < 4.4 only */
  width: 75%;
  width: calc(100% - 2.4em);
}

.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
  border-top-style: solid;
}

.ui-checkboxradio-label .ui-icon-background {
  box-shadow: inset 1px 1px 1px #ccc;
  border-radius: 0.12em;
  border: none;
}

.ui-checkboxradio-radio-label .ui-icon-background {
  width: 16px;
  height: 16px;
  border-radius: 1em;
  overflow: visible;
  border: none;
}

.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
  background-image: none;
  width: 8px;
  height: 8px;
  border-width: 4px;
  border-style: solid;
}

.ui-checkboxradio-disabled {
  pointer-events: none;
}

.ui-datepicker {
  width: 17em;
  padding: 0.2em 0.2em 0;
  display: none;
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: 0.2em 0;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  top: 1px;
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next {
  right: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}

.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 45%;
}

.ui-datepicker table {
  width: 100%;
  font-size: 0.9em;
  border-collapse: collapse;
  margin: 0 0 0.4em;
}

.ui-datepicker th {
  padding: 0.7em 0.3em;
  text-align: center;
  font-weight: bold;
  border: 0;
}

.ui-datepicker td {
  border: 0;
  padding: 1px;
}

.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: 0.2em;
  text-align: right;
  text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: 0.7em 0 0 0;
  padding: 0 0.2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: 0.5em 0.2em 0.4em;
  cursor: pointer;
  padding: 0.2em 0.6em 0.3em 0.6em;
  width: auto;
  overflow: visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
  width: auto;
}

.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto 0.4em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
  direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}

/* Icons */
.ui-datepicker .ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
  left: 0.5em;
  top: 0.3em;
}

.ui-dialog {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.2em;
  outline: 0;
}

.ui-dialog .ui-dialog-titlebar {
  padding: 0.4em 1em;
  position: relative;
}

.ui-dialog .ui-dialog-title {
  float: left;
  margin: 0.1em 0;
  white-space: nowrap;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: 0.3em;
  top: 50%;
  width: 20px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 20px;
}

.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: 0.5em 1em;
  background: none;
  overflow: auto;
}

.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin-top: 0.5em;
  padding: 0.3em 1em 0.5em 0.4em;
}

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}

.ui-dialog .ui-dialog-buttonpane button {
  margin: 0.5em 0.4em 0.5em 0;
  cursor: pointer;
}

.ui-dialog .ui-resizable-n {
  height: 2px;
  top: 0;
}

.ui-dialog .ui-resizable-e {
  width: 2px;
  right: 0;
}

.ui-dialog .ui-resizable-s {
  height: 2px;
  bottom: 0;
}

.ui-dialog .ui-resizable-w {
  width: 2px;
  left: 0;
}

.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw,
.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw {
  width: 7px;
  height: 7px;
}

.ui-dialog .ui-resizable-se {
  right: 0;
  bottom: 0;
}

.ui-dialog .ui-resizable-sw {
  left: 0;
  bottom: 0;
}

.ui-dialog .ui-resizable-ne {
  right: 0;
  top: 0;
}

.ui-dialog .ui-resizable-nw {
  left: 0;
  top: 0;
}

.ui-draggable .ui-dialog-titlebar {
  cursor: move;
}

.ui-draggable-handle {
  -ms-touch-action: none;
  touch-action: none;
}

.ui-resizable {
  position: relative;
}

.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  -ms-touch-action: none;
  touch-action: none;
}

.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
  display: none;
}

.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0;
}

.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0;
}

.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}

.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}

.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}

.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}

.ui-progressbar {
  height: 2em;
  text-align: left;
  overflow: hidden;
}

.ui-progressbar .ui-progressbar-value {
  margin: -1px;
  height: 100%;
}

.ui-progressbar .ui-progressbar-overlay {
  background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
  height: 100%;
  -ms-filter: "alpha(opacity=25)"; /* support: IE8 */
  opacity: 0.25;
}

.ui-progressbar-indeterminate .ui-progressbar-value {
  background-image: none;
}

.ui-selectable {
  -ms-touch-action: none;
  touch-action: none;
}

.ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted black;
}

.ui-selectmenu-menu {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

.ui-selectmenu-menu .ui-menu {
  overflow: auto;
  overflow-x: hidden;
  padding-bottom: 1px;
}

.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.5;
  padding: 2px 0.4em;
  margin: 0.5em 0 0 0;
  height: auto;
  border: 0;
}

.ui-selectmenu-open {
  display: block;
}

.ui-selectmenu-text {
  display: block;
  margin-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ui-selectmenu-button.ui-button {
  text-align: left;
  white-space: nowrap;
  width: 14em;
}

.ui-selectmenu-icon.ui-icon {
  float: right;
  margin-top: 0;
}

.ui-slider {
  position: relative;
  text-align: left;
}

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: pointer;
  -ms-touch-action: none;
  touch-action: none;
}

.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: 0.7em;
  display: block;
  border: 0;
  background-position: 0 0;
}

/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  filter: inherit;
}

.ui-slider-horizontal {
  height: 0.8em;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -0.3em;
  margin-left: -0.6em;
}

.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}

.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}

.ui-slider-vertical {
  width: 0.8em;
  height: 100px;
}

.ui-slider-vertical .ui-slider-handle {
  left: -0.3em;
  margin-left: 0;
  margin-bottom: -0.6em;
}

.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}

.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}

.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}

.ui-sortable-handle {
  -ms-touch-action: none;
  touch-action: none;
}

.ui-spinner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  vertical-align: middle;
}

.ui-spinner-input {
  border: none;
  background: none;
  color: inherit;
  padding: 0.222em 0;
  margin: 0.2em 0;
  vertical-align: middle;
  margin-left: 0.4em;
  margin-right: 2em;
}

.ui-spinner-button {
  width: 1.6em;
  height: 50%;
  font-size: 0.5em;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  cursor: default;
  display: block;
  overflow: hidden;
  right: 0;
}

/* more specificity required here to override default borders */
.ui-spinner a.ui-spinner-button {
  border-top-style: none;
  border-bottom-style: none;
  border-right-style: none;
}

.ui-spinner-up {
  top: 0;
}

.ui-spinner-down {
  bottom: 0;
}

.ui-tabs {
  position: relative; /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
  padding: 0.2em;
}

.ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: 0.2em 0.2em 0;
}

.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 0;
  margin: 1px 0.2em 0 0;
  border-bottom-width: 0;
  padding: 0;
  white-space: nowrap;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  float: left;
  padding: 0.5em 1em;
  text-decoration: none;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
  cursor: text;
}

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
  cursor: pointer;
}

.ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  padding: 1em 1.4em;
  background: none;
}

.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px;
}

body .ui-tooltip {
  border-width: 2px;
}

/* Component containers
----------------------------------*/
.ui-widget {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

.ui-widget .ui-widget {
  font-size: 1em;
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

.ui-widget.ui-widget-content {
  border: 1px solid #c5c5c5;
}

.ui-widget-content {
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #333333;
}

.ui-widget-content a {
  color: #333333;
}

.ui-widget-header {
  border: 1px solid #dddddd;
  background: #e9e9e9;
  color: #333333;
  font-weight: bold;
}

.ui-widget-header a {
  color: #333333;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5;
  background: #f6f6f6;
  font-weight: normal;
  color: #454545;
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
  color: #454545;
  text-decoration: none;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  border: 1px solid #cccccc;
  background: #ededed;
  font-weight: normal;
  color: #2b2b2b;
}

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
  color: #2b2b2b;
  text-decoration: none;
}

.ui-visual-focus {
  box-shadow: 0 0 3px 1px rgb(94, 158, 214);
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #003eff;
  background: #007fff;
  font-weight: normal;
  color: #ffffff;
}

.ui-icon-background,
.ui-state-active .ui-icon-background {
  border: #003eff;
  background-color: #ffffff;
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #ffffff;
  text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #dad55e;
  background: #fffa90;
  color: #777620;
}

.ui-state-checked {
  border: 1px solid #dad55e;
  background: #fffa90;
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #777620;
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #f1a899;
  background: #fddfdf;
  color: #5f3f3f;
}

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #5f3f3f;
}

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #5f3f3f;
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold;
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: 0.7;
  -ms-filter: "alpha(opacity=70)"; /* support: IE8 */
  font-weight: normal;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: 0.35;
  -ms-filter: "alpha(opacity=35)"; /* support: IE8 */
  background-image: none;
}

.ui-state-disabled .ui-icon {
  -ms-filter: "alpha(opacity=35)"; /* support: IE8 - See #6059 */
}

/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  width: 16px;
  height: 16px;
}

.ui-icon,
.ui-widget-content .ui-icon {
  background-image: url("images/ui-icons_444444_256x240.png");
}

.ui-widget-header .ui-icon {
  background-image: url("images/ui-icons_444444_256x240.png");
}

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
  background-image: url("images/ui-icons_555555_256x240.png");
}

.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
  background-image: url("images/ui-icons_ffffff_256x240.png");
}

.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
  background-image: url("images/ui-icons_777620_256x240.png");
}

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url("images/ui-icons_cc0000_256x240.png");
}

.ui-button .ui-icon {
  background-image: url("images/ui-icons_777777_256x240.png");
}

/* positioning */
/* Three classes needed to override `.ui-button:hover .ui-icon` */
.ui-icon-blank.ui-icon-blank.ui-icon-blank {
  background-image: none;
}

.ui-icon-caret-1-n {
  background-position: 0 0;
}

.ui-icon-caret-1-ne {
  background-position: -16px 0;
}

.ui-icon-caret-1-e {
  background-position: -32px 0;
}

.ui-icon-caret-1-se {
  background-position: -48px 0;
}

.ui-icon-caret-1-s {
  background-position: -65px 0;
}

.ui-icon-caret-1-sw {
  background-position: -80px 0;
}

.ui-icon-caret-1-w {
  background-position: -96px 0;
}

.ui-icon-caret-1-nw {
  background-position: -112px 0;
}

.ui-icon-caret-2-n-s {
  background-position: -128px 0;
}

.ui-icon-caret-2-e-w {
  background-position: -144px 0;
}

.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}

.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}

.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}

.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}

.ui-icon-triangle-1-s {
  background-position: -65px -16px;
}

.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}

.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}

.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}

.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}

.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}

.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}

.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}

.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}

.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}

.ui-icon-arrow-1-s {
  background-position: -65px -32px;
}

.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}

.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}

.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}

.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}

.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}

.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}

.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}

.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}

.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}

.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}

.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}

.ui-icon-arrowthick-1-n {
  background-position: 1px -48px;
}

.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}

.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}

.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}

.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}

.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}

.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}

.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}

.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}

.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}

.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}

.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}

.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}

.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}

.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}

.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}

.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}

.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}

.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}

.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}

.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}

.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}

.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}

.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}

.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}

.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}

.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}

.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}

.ui-icon-arrow-4 {
  background-position: 0 -80px;
}

.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}

.ui-icon-extlink {
  background-position: -32px -80px;
}

.ui-icon-newwin {
  background-position: -48px -80px;
}

.ui-icon-refresh {
  background-position: -64px -80px;
}

.ui-icon-shuffle {
  background-position: -80px -80px;
}

.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}

.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}

.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}

.ui-icon-folder-open {
  background-position: -16px -96px;
}

.ui-icon-document {
  background-position: -32px -96px;
}

.ui-icon-document-b {
  background-position: -48px -96px;
}

.ui-icon-note {
  background-position: -64px -96px;
}

.ui-icon-mail-closed {
  background-position: -80px -96px;
}

.ui-icon-mail-open {
  background-position: -96px -96px;
}

.ui-icon-suitcase {
  background-position: -112px -96px;
}

.ui-icon-comment {
  background-position: -128px -96px;
}

.ui-icon-person {
  background-position: -144px -96px;
}

.ui-icon-print {
  background-position: -160px -96px;
}

.ui-icon-trash {
  background-position: -176px -96px;
}

.ui-icon-locked {
  background-position: -192px -96px;
}

.ui-icon-unlocked {
  background-position: -208px -96px;
}

.ui-icon-bookmark {
  background-position: -224px -96px;
}

.ui-icon-tag {
  background-position: -240px -96px;
}

.ui-icon-home {
  background-position: 0 -112px;
}

.ui-icon-flag {
  background-position: -16px -112px;
}

.ui-icon-calendar {
  background-position: -32px -112px;
}

.ui-icon-cart {
  background-position: -48px -112px;
}

.ui-icon-pencil {
  background-position: -64px -112px;
}

.ui-icon-clock {
  background-position: -80px -112px;
}

.ui-icon-disk {
  background-position: -96px -112px;
}

.ui-icon-calculator {
  background-position: -112px -112px;
}

.ui-icon-zoomin {
  background-position: -128px -112px;
}

.ui-icon-zoomout {
  background-position: -144px -112px;
}

.ui-icon-search {
  background-position: -160px -112px;
}

.ui-icon-wrench {
  background-position: -176px -112px;
}

.ui-icon-gear {
  background-position: -192px -112px;
}

.ui-icon-heart {
  background-position: -208px -112px;
}

.ui-icon-star {
  background-position: -224px -112px;
}

.ui-icon-link {
  background-position: -240px -112px;
}

.ui-icon-cancel {
  background-position: 0 -128px;
}

.ui-icon-plus {
  background-position: -16px -128px;
}

.ui-icon-plusthick {
  background-position: -32px -128px;
}

.ui-icon-minus {
  background-position: -48px -128px;
}

.ui-icon-minusthick {
  background-position: -64px -128px;
}

.ui-icon-close {
  background-position: -80px -128px;
}

.ui-icon-closethick {
  background-position: -96px -128px;
}

.ui-icon-key {
  background-position: -112px -128px;
}

.ui-icon-lightbulb {
  background-position: -128px -128px;
}

.ui-icon-scissors {
  background-position: -144px -128px;
}

.ui-icon-clipboard {
  background-position: -160px -128px;
}

.ui-icon-copy {
  background-position: -176px -128px;
}

.ui-icon-contact {
  background-position: -192px -128px;
}

.ui-icon-image {
  background-position: -208px -128px;
}

.ui-icon-video {
  background-position: -224px -128px;
}

.ui-icon-script {
  background-position: -240px -128px;
}

.ui-icon-alert {
  background-position: 0 -144px;
}

.ui-icon-info {
  background-position: -16px -144px;
}

.ui-icon-notice {
  background-position: -32px -144px;
}

.ui-icon-help {
  background-position: -48px -144px;
}

.ui-icon-check {
  background-position: -64px -144px;
}

.ui-icon-bullet {
  background-position: -80px -144px;
}

.ui-icon-radio-on {
  background-position: -96px -144px;
}

.ui-icon-radio-off {
  background-position: -112px -144px;
}

.ui-icon-pin-w {
  background-position: -128px -144px;
}

.ui-icon-pin-s {
  background-position: -144px -144px;
}

.ui-icon-play {
  background-position: 0 -160px;
}

.ui-icon-pause {
  background-position: -16px -160px;
}

.ui-icon-seek-next {
  background-position: -32px -160px;
}

.ui-icon-seek-prev {
  background-position: -48px -160px;
}

.ui-icon-seek-end {
  background-position: -64px -160px;
}

.ui-icon-seek-start {
  background-position: -80px -160px;
}

/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first {
  background-position: -80px -160px;
}

.ui-icon-stop {
  background-position: -96px -160px;
}

.ui-icon-eject {
  background-position: -112px -160px;
}

.ui-icon-volume-off {
  background-position: -128px -160px;
}

.ui-icon-volume-on {
  background-position: -144px -160px;
}

.ui-icon-power {
  background-position: 0 -176px;
}

.ui-icon-signal-diag {
  background-position: -16px -176px;
}

.ui-icon-signal {
  background-position: -32px -176px;
}

.ui-icon-battery-0 {
  background-position: -48px -176px;
}

.ui-icon-battery-1 {
  background-position: -64px -176px;
}

.ui-icon-battery-2 {
  background-position: -80px -176px;
}

.ui-icon-battery-3 {
  background-position: -96px -176px;
}

.ui-icon-circle-plus {
  background-position: 0 -192px;
}

.ui-icon-circle-minus {
  background-position: -16px -192px;
}

.ui-icon-circle-close {
  background-position: -32px -192px;
}

.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}

.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}

.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}

.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}

.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}

.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}

.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}

.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}

.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}

.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}

.ui-icon-circle-check {
  background-position: -208px -192px;
}

.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}

.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}

.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}

.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}

.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}

.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}

.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}

.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}

.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}

.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}

.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}

.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}

/* Misc visuals
----------------------------------*/
/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 3px;
}

/* Overlays */
.ui-widget-overlay {
  background: #aaaaaa;
  opacity: 0.003;
  -ms-filter: Alpha(Opacity=0.3); /* support: IE8 */
}

.ui-widget-shadow {
  -webkit-box-shadow: 0px 0px 5px #666666;
  box-shadow: 0px 0px 5px #666666;
}

@font-face {
  font-family: "footable";
  src: url("fonts/footable.eot");
  src: url("fonts/footable.eot?#iefix") format("embedded-opentype"), url("fonts/footable.woff") format("woff"), url("fonts/footable.ttf") format("truetype"), url("fonts/footable.svg#footable") format("svg");
  font-weight: normal;
  font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: "footable";
    src: url("fonts/footable.svg#footable") format("svg");
    font-weight: normal;
    font-style: normal;
  }
}
.footable {
  width: 100%;
  /** SORTING **/
  /** PAGINATION **/
}

.footable.breakpoint > tbody > tr.footable-detail-show > td {
  border-bottom: none;
}

.footable.breakpoint > tbody > tr.footable-detail-show > td > span.footable-toggle:before {
  content: "\e001";
}

.footable.breakpoint > tbody > tr:hover:not(.footable-row-detail) {
  cursor: pointer;
}

.footable.breakpoint > tbody > tr > td.footable-cell-detail {
  background: #eee;
  border-top: none;
}

.footable.breakpoint > tbody > tr > td > span.footable-toggle {
  display: inline-block;
  font-family: "footable";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  padding-right: 5px;
  font-size: 14px;
  color: #888888;
}

.footable.breakpoint > tbody > tr > td > span.footable-toggle:before {
  content: "\e000";
}

.footable.breakpoint.toggle-circle > tbody > tr.footable-detail-show > td > span.footable-toggle:before {
  content: "\e005";
}

.footable.breakpoint.toggle-circle > tbody > tr > td > span.footable-toggle:before {
  content: "\e004";
}

.footable.breakpoint.toggle-circle-filled > tbody > tr.footable-detail-show > td > span.footable-toggle:before {
  content: "\e003";
}

.footable.breakpoint.toggle-circle-filled > tbody > tr > td > span.footable-toggle:before {
  content: "\e002";
}

.footable.breakpoint.toggle-square > tbody > tr.footable-detail-show > td > span.footable-toggle:before {
  content: "\e007";
}

.footable.breakpoint.toggle-square > tbody > tr > td > span.footable-toggle:before {
  content: "\e006";
}

.footable.breakpoint.toggle-square-filled > tbody > tr.footable-detail-show > td > span.footable-toggle:before {
  content: "\e009";
}

.footable.breakpoint.toggle-square-filled > tbody > tr > td > span.footable-toggle:before {
  content: "\e008";
}

.footable.breakpoint.toggle-arrow > tbody > tr.footable-detail-show > td > span.footable-toggle:before {
  content: "\e00f";
}

.footable.breakpoint.toggle-arrow > tbody > tr > td > span.footable-toggle:before {
  content: "\e011";
}

.footable.breakpoint.toggle-arrow-small > tbody > tr.footable-detail-show > td > span.footable-toggle:before {
  content: "\e013";
}

.footable.breakpoint.toggle-arrow-small > tbody > tr > td > span.footable-toggle:before {
  content: "\e015";
}

.footable.breakpoint.toggle-arrow-circle > tbody > tr.footable-detail-show > td > span.footable-toggle:before {
  content: "\e01b";
}

.footable.breakpoint.toggle-arrow-circle > tbody > tr > td > span.footable-toggle:before {
  content: "\e01d";
}

.footable.breakpoint.toggle-arrow-circle-filled > tbody > tr.footable-detail-show > td > span.footable-toggle:before {
  content: "\e00b";
}

.footable.breakpoint.toggle-arrow-circle-filled > tbody > tr > td > span.footable-toggle:before {
  content: "\e00d";
}

.footable.breakpoint.toggle-arrow-tiny > tbody > tr.footable-detail-show > td > span.footable-toggle:before {
  content: "\e01f";
}

.footable.breakpoint.toggle-arrow-tiny > tbody > tr > td > span.footable-toggle:before {
  content: "\e021";
}

.footable.breakpoint.toggle-arrow-alt > tbody > tr.footable-detail-show > td > span.footable-toggle:before {
  content: "\e017";
}

.footable.breakpoint.toggle-arrow-alt > tbody > tr > td > span.footable-toggle:before {
  content: "\e019";
}

.footable.breakpoint.toggle-medium > tbody > tr > td > span.footable-toggle {
  font-size: 18px;
}

.footable.breakpoint.toggle-large > tbody > tr > td > span.footable-toggle {
  font-size: 24px;
}

.footable > thead > tr > th {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  user-select: none;
}

.footable > thead > tr > th.footable-sortable:hover {
  cursor: pointer;
}

.footable > thead > tr > th.footable-sorted > span.footable-sort-indicator:before {
  content: "\e012";
}

.footable > thead > tr > th.footable-sorted-desc > span.footable-sort-indicator:before {
  content: "\e013";
}

.footable > thead > tr > th > span.footable-sort-indicator {
  display: inline-block;
  font-family: "footable";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  padding-left: 5px;
}

.footable > thead > tr > th > span.footable-sort-indicator:before {
  content: "\e022";
}

.footable > tfoot .pagination {
  margin: 0;
}

.footable.no-paging .hide-if-no-paging {
  display: none;
}

.footable-row-detail-inner {
  display: table;
}

.footable-row-detail-row {
  display: table-row;
  line-height: 1.5em;
}

.footable-row-detail-group {
  display: block;
  line-height: 2em;
  font-size: 1.2em;
  font-weight: bold;
}

.footable-row-detail-name {
  display: table-cell;
  font-weight: bold;
  padding-right: 0.5em;
}

.footable-row-detail-value {
  display: table-cell;
}

.footable-odd {
  background-color: #f7f7f7;
}

/*!
 * FullCalendar v3.10.5
 * Docs & License: https://fullcalendar.io/
 * (c) 2019 Adam Shaw
 */
.fc {
  direction: ltr;
  text-align: left;
}

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

body .fc {
  /* extra precedence to overcome jqui */
  font-size: 1em;
}

/* Colors
--------------------------------------------------------------------------------------------------*/
.fc-highlight {
  /* when user is selecting cells */
  background: #bce8f1;
  opacity: 0.3;
}

.fc-bgevent {
  /* default look for background events */
  background: #8fdf82;
  opacity: 0.3;
}

.fc-nonbusiness {
  /* default look for non-business-hours areas */
  /* will inherit .fc-bgevent's styles */
  background: #d7d7d7;
}

/* Buttons (styled <button> tags, normalized to work cross-browser)
--------------------------------------------------------------------------------------------------*/
.fc button {
  /* force height to include the border and padding */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* dimensions */
  margin: 0;
  height: 2.1em;
  padding: 0 0.6em;
  /* text & cursor */
  font-size: 1em;
  /* normalize */
  white-space: nowrap;
  cursor: pointer;
}

/* Firefox has an annoying inner border */
.fc button::-moz-focus-inner {
  margin: 0;
  padding: 0;
}

.fc-state-default {
  /* non-theme */
  border: 1px solid;
}

.fc-state-default.fc-corner-left {
  /* non-theme */
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.fc-state-default.fc-corner-right {
  /* non-theme */
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* icons in buttons */
.fc button .fc-icon {
  /* non-theme */
  position: relative;
  top: -0.05em;
  /* seems to be a good adjustment across browsers */
  margin: 0 0.2em;
  vertical-align: middle;
}

/*
  button states
  borrowed from twitter bootstrap (http://twitter.github.com/bootstrap/)
*/
.fc-state-default {
  background-color: #f5f5f5;
  background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  color: #333;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.fc-state-hover,
.fc-state-down,
.fc-state-active,
.fc-state-disabled {
  color: #333333;
  background-color: #e6e6e6;
}

.fc-state-hover {
  color: #333333;
  text-decoration: none;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
  -moz-transition: background-position 0.1s linear;
  -o-transition: background-position 0.1s linear;
  transition: background-position 0.1s linear;
}

.fc-state-down,
.fc-state-active {
  background-color: #cccccc;
  background-image: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.fc-state-disabled {
  cursor: default;
  background-image: none;
  opacity: 0.65;
  box-shadow: none;
}

/* Buttons Groups
--------------------------------------------------------------------------------------------------*/
.fc-button-group {
  display: inline-block;
}

/*
every button that is not first in a button group should scootch over one pixel and cover the
previous button's border...
*/
.fc .fc-button-group > * {
  /* extra precedence b/c buttons have margin set to zero */
  float: left;
  margin: 0 0 0 -1px;
}

.fc .fc-button-group > :first-child {
  /* same */
  margin-left: 0;
}

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-popover {
  position: absolute;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.fc-popover .fc-header {
  /* TODO: be more consistent with fc-head/fc-body */
  padding: 2px 4px;
}

.fc-popover .fc-header .fc-title {
  margin: 0 2px;
}

.fc-popover .fc-header .fc-close {
  cursor: pointer;
}

.fc-ltr .fc-popover .fc-header .fc-title,
.fc-rtl .fc-popover .fc-header .fc-close {
  float: left;
}

.fc-rtl .fc-popover .fc-header .fc-title,
.fc-ltr .fc-popover .fc-header .fc-close {
  float: right;
}

/* Misc Reusable Components
--------------------------------------------------------------------------------------------------*/
.fc-divider {
  border-style: solid;
  border-width: 1px;
}

hr.fc-divider {
  height: 0;
  margin: 0;
  padding: 0 0 2px;
  /* height is unreliable across browsers, so use padding */
  border-width: 1px 0;
}

.fc-clear {
  clear: both;
}

.fc-bg,
.fc-bgevent-skeleton,
.fc-highlight-skeleton,
.fc-helper-skeleton {
  /* these element should always cling to top-left/right corners */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.fc-bg {
  bottom: 0;
  /* strech bg to bottom edge */
}

.fc-bg table {
  height: 100%;
  /* strech bg to bottom edge */
}

/* Tables
--------------------------------------------------------------------------------------------------*/
.fc table {
  width: 100%;
  box-sizing: border-box;
  /* fix scrollbar issue in firefox */
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1em;
  /* normalize cross-browser */
}

.fc th {
  text-align: center;
}

.fc th,
.fc td {
  border-style: solid;
  border-width: 1px;
  padding: 0;
  vertical-align: top;
}

.fc td.fc-today {
  border-style: double;
  /* overcome neighboring borders */
}

/* Internal Nav Links
--------------------------------------------------------------------------------------------------*/
a[data-goto] {
  cursor: pointer;
}

a[data-goto]:hover {
  text-decoration: underline;
}

/* Fake Table Rows
--------------------------------------------------------------------------------------------------*/
.fc .fc-row {
  /* extra precedence to overcome themes w/ .ui-widget-content forcing a 1px border */
  /* no visible border by default. but make available if need be (scrollbar width compensation) */
  border-style: solid;
  border-width: 0;
}

.fc-row table {
  /* don't put left/right border on anything within a fake row.
     the outer tbody will worry about this */
  border-left: 0 hidden transparent;
  border-right: 0 hidden transparent;
  /* no bottom borders on rows */
  border-bottom: 0 hidden transparent;
}

.fc-row:first-child table {
  border-top: 0 hidden transparent;
  /* no top border on first row */
}

/* Day Row (used within the header and the DayGrid)
--------------------------------------------------------------------------------------------------*/
.fc-row {
  position: relative;
}

.fc-row .fc-bg {
  z-index: 1;
}

/* highlighting cells & background event skeleton */
.fc-row .fc-bgevent-skeleton,
.fc-row .fc-highlight-skeleton {
  bottom: 0;
  /* stretch skeleton to bottom of row */
}

.fc-row .fc-bgevent-skeleton table,
.fc-row .fc-highlight-skeleton table {
  height: 100%;
  /* stretch skeleton to bottom of row */
}

.fc-row .fc-highlight-skeleton td,
.fc-row .fc-bgevent-skeleton td {
  border-color: transparent;
}

.fc-row .fc-bgevent-skeleton {
  z-index: 2;
}

.fc-row .fc-highlight-skeleton {
  z-index: 3;
}

/*
row content (which contains day/week numbers and events) as well as "helper" (which contains
temporary rendered events).
*/
.fc-row .fc-content-skeleton {
  position: relative;
  z-index: 4;
  padding-bottom: 2px;
  /* matches the space above the events */
}

.fc-row .fc-helper-skeleton {
  z-index: 5;
}

.fc .fc-row .fc-content-skeleton table,
.fc .fc-row .fc-content-skeleton td,
.fc .fc-row .fc-helper-skeleton td {
  /* see-through to the background below */
  /* extra precedence to prevent theme-provided backgrounds */
  background: none;
  /* in case <td>s are globally styled */
  border-color: transparent;
}

.fc-row .fc-content-skeleton td,
.fc-row .fc-helper-skeleton td {
  /* don't put a border between events and/or the day number */
  border-bottom: 0;
}

.fc-row .fc-content-skeleton tbody td,
.fc-row .fc-helper-skeleton tbody td {
  /* don't put a border between event cells */
  border-top: 0;
}

/* Scrolling Container
--------------------------------------------------------------------------------------------------*/
.fc-scroller {
  -webkit-overflow-scrolling: touch;
}

/* TODO: move to agenda/basic */
.fc-scroller > .fc-day-grid,
.fc-scroller > .fc-time-grid {
  position: relative;
  /* re-scope all positions */
  width: 100%;
  /* hack to force re-sizing this inner element when scrollbars appear/disappear */
}

/* Global Event Styles
--------------------------------------------------------------------------------------------------*/
.fc-event {
  position: relative;
  /* for resize handle and other inner positioning */
  display: block;
  /* make the <a> tag block */
  font-size: 0.85em;
  line-height: 1.3;
  border-radius: 3px;
  border: 1px solid #3a87ad;
  /* default BORDER color */
}

.fc-event,
.fc-event-dot {
  background-color: #3a87ad;
  /* default BACKGROUND color */
}

.fc-event,
.fc-event:hover {
  color: #fff;
  /* default TEXT color */
  text-decoration: none;
  /* if <a> has an href */
}

.fc-event[href],
.fc-event.fc-draggable {
  cursor: pointer;
  /* give events with links and draggable events a hand mouse pointer */
}

.fc-not-allowed,
.fc-not-allowed .fc-event {
  /* to override an event's custom cursor */
  cursor: not-allowed;
}

.fc-event .fc-bg {
  /* the generic .fc-bg already does position */
  z-index: 1;
  background: #fff;
  opacity: 0.25;
}

.fc-event .fc-content {
  position: relative;
  z-index: 2;
}

/* resizer (cursor AND touch devices) */
.fc-event .fc-resizer {
  position: absolute;
  z-index: 4;
}

/* resizer (touch devices) */
.fc-event .fc-resizer {
  display: none;
}

.fc-event.fc-allow-mouse-resize .fc-resizer,
.fc-event.fc-selected .fc-resizer {
  /* only show when hovering or selected (with touch) */
  display: block;
}

/* hit area */
.fc-event.fc-selected .fc-resizer:before {
  /* 40x40 touch area */
  content: "";
  position: absolute;
  z-index: 9999;
  /* user of this util can scope within a lower z-index */
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px;
}

/* Event Selection (only for touch devices)
--------------------------------------------------------------------------------------------------*/
.fc-event.fc-selected {
  z-index: 9999 !important;
  /* overcomes inline z-index */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.fc-event.fc-selected.fc-dragging {
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
}

/* Horizontal Events
--------------------------------------------------------------------------------------------------*/
/* bigger touch area when selected */
.fc-h-event.fc-selected:before {
  content: "";
  position: absolute;
  z-index: 3;
  /* below resizers */
  top: -10px;
  bottom: -10px;
  left: 0;
  right: 0;
}

/* events that are continuing to/from another week. kill rounded corners and butt up against edge */
.fc-ltr .fc-h-event.fc-not-start,
.fc-rtl .fc-h-event.fc-not-end {
  margin-left: 0;
  border-left-width: 0;
  padding-left: 1px;
  /* replace the border with padding */
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.fc-ltr .fc-h-event.fc-not-end,
.fc-rtl .fc-h-event.fc-not-start {
  margin-right: 0;
  border-right-width: 0;
  padding-right: 1px;
  /* replace the border with padding */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* resizer (cursor AND touch devices) */
/* left resizer  */
.fc-ltr .fc-h-event .fc-start-resizer,
.fc-rtl .fc-h-event .fc-end-resizer {
  cursor: w-resize;
  left: -1px;
  /* overcome border */
}

/* right resizer */
.fc-ltr .fc-h-event .fc-end-resizer,
.fc-rtl .fc-h-event .fc-start-resizer {
  cursor: e-resize;
  right: -1px;
  /* overcome border */
}

/* resizer (mouse devices) */
.fc-h-event.fc-allow-mouse-resize .fc-resizer {
  width: 7px;
  top: -1px;
  /* overcome top border */
  bottom: -1px;
  /* overcome bottom border */
}

/* resizer (touch devices) */
.fc-h-event.fc-selected .fc-resizer {
  /* 8x8 little dot */
  border-radius: 4px;
  border-width: 1px;
  width: 6px;
  height: 6px;
  border-style: solid;
  border-color: inherit;
  background: #fff;
  /* vertically center */
  top: 50%;
  margin-top: -4px;
}

/* left resizer  */
.fc-ltr .fc-h-event.fc-selected .fc-start-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-end-resizer {
  margin-left: -4px;
  /* centers the 8x8 dot on the left edge */
}

/* right resizer */
.fc-ltr .fc-h-event.fc-selected .fc-end-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-start-resizer {
  margin-right: -4px;
  /* centers the 8x8 dot on the right edge */
}

/* DayGrid events
----------------------------------------------------------------------------------------------------
We use the full "fc-day-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/
.fc-day-grid-event {
  margin: 1px 2px 0;
  /* spacing between events and edges */
  padding: 0 1px;
}

tr:first-child > td > .fc-day-grid-event {
  margin-top: 2px;
  /* a little bit more space before the first event */
}

.fc-day-grid-event.fc-selected:after {
  content: "";
  position: absolute;
  z-index: 1;
  /* same z-index as fc-bg, behind text */
  /* overcome the borders */
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  /* darkening effect */
  background: #000;
  opacity: 0.25;
}

.fc-day-grid-event .fc-content {
  /* force events to be one-line tall */
  white-space: nowrap;
  overflow: hidden;
}

.fc-day-grid-event .fc-time {
  font-weight: bold;
}

/* resizer (cursor devices) */
/* left resizer  */
.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer {
  margin-left: -2px;
  /* to the day cell's edge */
}

/* right resizer */
.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer {
  margin-right: -2px;
  /* to the day cell's edge */
}

/* Event Limiting
--------------------------------------------------------------------------------------------------*/
/* "more" link that represents hidden events */
a.fc-more {
  margin: 1px 3px;
  font-size: 0.85em;
  cursor: pointer;
  text-decoration: none;
}

a.fc-more:hover {
  text-decoration: underline;
}

.fc-limited {
  /* rows and cells that are hidden because of a "more" link */
  display: none;
}

/* popover that appears when "more" link is clicked */
.fc-day-grid .fc-row {
  z-index: 1;
  /* make the "more" popover one higher than this */
}

.fc-more-popover {
  z-index: 2;
  width: 220px;
}

.fc-more-popover .fc-event-container {
  padding: 10px;
}

/* Now Indicator
--------------------------------------------------------------------------------------------------*/
.fc-now-indicator {
  position: absolute;
  border: 0 solid red;
}

/* Utilities
--------------------------------------------------------------------------------------------------*/
.fc-unselectable {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/*
TODO: more distinction between this file and common.css
*/
/* Colors
--------------------------------------------------------------------------------------------------*/
.fc-unthemed th,
.fc-unthemed td,
.fc-unthemed thead,
.fc-unthemed tbody,
.fc-unthemed .fc-divider,
.fc-unthemed .fc-row,
.fc-unthemed .fc-content,
.fc-unthemed .fc-popover,
.fc-unthemed .fc-list-view,
.fc-unthemed .fc-list-heading td {
  border-color: #ddd;
}

.fc-unthemed .fc-popover {
  background-color: #fff;
}

.fc-unthemed .fc-divider,
.fc-unthemed .fc-popover .fc-header,
.fc-unthemed .fc-list-heading td {
  background: #eee;
}

.fc-unthemed .fc-popover .fc-header .fc-close {
  color: #666;
}

.fc-unthemed td.fc-today {
  background: #fcf8e3;
}

.fc-unthemed .fc-disabled-day {
  background: #d7d7d7;
  opacity: 0.3;
}

/* Icons (inline elements with styled text that mock arrow icons)
--------------------------------------------------------------------------------------------------*/
.fc-icon {
  display: inline-block;
  height: 1em;
  line-height: 1em;
  font-size: 1em;
  text-align: center;
  overflow: hidden;
  font-family: "Courier New", Courier, monospace;
  /* don't allow browser text-selection */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/*
Acceptable font-family overrides for individual icons:
  "Arial", sans-serif
  "Times New Roman", serif

NOTE: use percentage font sizes or else old IE chokes
*/
.fc-icon:after {
  position: relative;
}

.fc-icon-left-single-arrow:after {
  content: "‹";
  font-weight: bold;
  font-size: 200%;
  top: -7%;
}

.fc-icon-right-single-arrow:after {
  content: "›";
  font-weight: bold;
  font-size: 200%;
  top: -7%;
}

.fc-icon-left-double-arrow:after {
  content: "«";
  font-size: 160%;
  top: -7%;
}

.fc-icon-right-double-arrow:after {
  content: "»";
  font-size: 160%;
  top: -7%;
}

.fc-icon-left-triangle:after {
  content: "◄";
  font-size: 125%;
  top: 3%;
}

.fc-icon-right-triangle:after {
  content: "►";
  font-size: 125%;
  top: 3%;
}

.fc-icon-down-triangle:after {
  content: "▼";
  font-size: 125%;
  top: 2%;
}

.fc-icon-x:after {
  content: "×";
  font-size: 200%;
  top: 6%;
}

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-unthemed .fc-popover {
  border-width: 1px;
  border-style: solid;
}

.fc-unthemed .fc-popover .fc-header .fc-close {
  font-size: 0.9em;
  margin-top: 2px;
}

/* List View
--------------------------------------------------------------------------------------------------*/
.fc-unthemed .fc-list-item:hover td {
  background-color: #f5f5f5;
}

/* Colors
--------------------------------------------------------------------------------------------------*/
.ui-widget .fc-disabled-day {
  background-image: none;
}

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-popover > .ui-widget-header + .ui-widget-content {
  border-top: 0;
  /* where they meet, let the header have the border */
}

/* Global Event Styles
--------------------------------------------------------------------------------------------------*/
.ui-widget .fc-event {
  /* overpower jqui's styles on <a> tags. TODO: more DRY */
  color: #fff;
  /* default TEXT color */
  text-decoration: none;
  /* if <a> has an href */
  /* undo ui-widget-header bold */
  font-weight: normal;
}

/* TimeGrid axis running down the side (for both the all-day area and the slot area)
--------------------------------------------------------------------------------------------------*/
.ui-widget td.fc-axis {
  font-weight: normal;
  /* overcome bold */
}

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-slats .ui-widget-content {
  background: none;
  /* see through to fc-bg */
}

.fc.fc-bootstrap3 a {
  text-decoration: none;
}

.fc.fc-bootstrap3 a[data-goto]:hover {
  text-decoration: underline;
}

.fc-bootstrap3 hr.fc-divider {
  border-color: inherit;
}

.fc-bootstrap3 .fc-today.alert {
  border-radius: 0;
}

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-bootstrap3 .fc-popover .panel-body {
  padding: 0;
}

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-bootstrap3 .fc-time-grid .fc-slats table {
  /* some themes have background color. see through to slats */
  background: none;
}

.fc.fc-bootstrap4 a {
  text-decoration: none;
}

.fc.fc-bootstrap4 a[data-goto]:hover {
  text-decoration: underline;
}

.fc-bootstrap4 hr.fc-divider {
  border-color: inherit;
}

.fc-bootstrap4 .fc-today.alert {
  border-radius: 0;
}

.fc-bootstrap4 a.fc-event:not([href]):not([tabindex]) {
  color: #fff;
}

.fc-bootstrap4 .fc-popover.card {
  position: absolute;
}

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-bootstrap4 .fc-popover .card-body {
  padding: 0;
}

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-bootstrap4 .fc-time-grid .fc-slats table {
  /* some themes have background color. see through to slats */
  background: none;
}

/* Toolbar
--------------------------------------------------------------------------------------------------*/
.fc-toolbar {
  text-align: center;
}

.fc-toolbar.fc-header-toolbar {
  margin-bottom: 1em;
}

.fc-toolbar.fc-footer-toolbar {
  margin-top: 1em;
}

.fc-toolbar .fc-left {
  float: left;
}

.fc-toolbar .fc-right {
  float: right;
}

.fc-toolbar .fc-center {
  display: inline-block;
}

/* the things within each left/right/center section */
.fc .fc-toolbar > * > * {
  /* extra precedence to override button border margins */
  float: left;
  margin-left: 0.75em;
}

/* the first thing within each left/center/right section */
.fc .fc-toolbar > * > :first-child {
  /* extra precedence to override button border margins */
  margin-left: 0;
}

/* title text */
.fc-toolbar h2 {
  margin: 0;
}

/* button layering (for border precedence) */
.fc-toolbar button {
  position: relative;
}

.fc-toolbar .fc-state-hover,
.fc-toolbar .ui-state-hover {
  z-index: 2;
}

.fc-toolbar .fc-state-down {
  z-index: 3;
}

.fc-toolbar .fc-state-active,
.fc-toolbar .ui-state-active {
  z-index: 4;
}

.fc-toolbar button:focus {
  z-index: 5;
}

/* View Structure
--------------------------------------------------------------------------------------------------*/
/* undo twitter bootstrap's box-sizing rules. normalizes positioning techniques */
/* don't do this for the toolbar because we'll want bootstrap to style those buttons as some pt */
.fc-view-container *,
.fc-view-container *:before,
.fc-view-container *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.fc-view,
.fc-view > table {
  /* so dragged elements can be above the view's main element */
  position: relative;
  z-index: 1;
}

/* BasicView
--------------------------------------------------------------------------------------------------*/
/* day row structure */
.fc-basicWeek-view .fc-content-skeleton,
.fc-basicDay-view .fc-content-skeleton {
  /* there may be week numbers in these views, so no padding-top */
  padding-bottom: 1em;
  /* ensure a space at bottom of cell for user selecting/clicking */
}

.fc-basic-view .fc-body .fc-row {
  min-height: 4em;
  /* ensure that all rows are at least this tall */
}

/* a "rigid" row will take up a constant amount of height because content-skeleton is absolute */
.fc-row.fc-rigid {
  overflow: hidden;
}

.fc-row.fc-rigid .fc-content-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

/* week and day number styling */
.fc-day-top.fc-other-month {
  opacity: 0.3;
}

.fc-basic-view .fc-week-number,
.fc-basic-view .fc-day-number {
  padding: 2px;
}

.fc-basic-view th.fc-week-number,
.fc-basic-view th.fc-day-number {
  padding: 0 2px;
  /* column headers can't have as much v space */
}

.fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
  float: right;
}

.fc-rtl .fc-basic-view .fc-day-top .fc-day-number {
  float: left;
}

.fc-ltr .fc-basic-view .fc-day-top .fc-week-number {
  float: left;
  border-radius: 0 0 3px 0;
}

.fc-rtl .fc-basic-view .fc-day-top .fc-week-number {
  float: right;
  border-radius: 0 0 0 3px;
}

.fc-basic-view .fc-day-top .fc-week-number {
  min-width: 1.5em;
  text-align: center;
  background-color: #f2f2f2;
  color: #808080;
}

/* when week/day number have own column */
.fc-basic-view td.fc-week-number {
  text-align: center;
}

.fc-basic-view td.fc-week-number > * {
  /* work around the way we do column resizing and ensure a minimum width */
  display: inline-block;
  min-width: 1.25em;
}

/* AgendaView all-day area
--------------------------------------------------------------------------------------------------*/
.fc-agenda-view .fc-day-grid {
  position: relative;
  z-index: 2;
  /* so the "more.." popover will be over the time grid */
}

.fc-agenda-view .fc-day-grid .fc-row {
  min-height: 3em;
  /* all-day section will never get shorter than this */
}

.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton {
  padding-bottom: 1em;
  /* give space underneath events for clicking/selecting days */
}

/* TimeGrid axis running down the side (for both the all-day area and the slot area)
--------------------------------------------------------------------------------------------------*/
.fc .fc-axis {
  /* .fc to overcome default cell styles */
  vertical-align: middle;
  padding: 0 4px;
  white-space: nowrap;
}

.fc-ltr .fc-axis {
  text-align: right;
}

.fc-rtl .fc-axis {
  text-align: left;
}

/* TimeGrid Structure
--------------------------------------------------------------------------------------------------*/
.fc-time-grid-container,
.fc-time-grid {
  /* so slats/bg/content/etc positions get scoped within here */
  position: relative;
  z-index: 1;
}

.fc-time-grid {
  min-height: 100%;
  /* so if height setting is 'auto', .fc-bg stretches to fill height */
}

.fc-time-grid table {
  /* don't put outer borders on slats/bg/content/etc */
  border: 0 hidden transparent;
}

.fc-time-grid > .fc-bg {
  z-index: 1;
}

.fc-time-grid .fc-slats,
.fc-time-grid > hr {
  /* the <hr> AgendaView injects when grid is shorter than scroller */
  position: relative;
  z-index: 2;
}

.fc-time-grid .fc-content-col {
  position: relative;
  /* because now-indicator lives directly inside */
}

.fc-time-grid .fc-content-skeleton {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
}

/* divs within a cell within the fc-content-skeleton */
.fc-time-grid .fc-business-container {
  position: relative;
  z-index: 1;
}

.fc-time-grid .fc-bgevent-container {
  position: relative;
  z-index: 2;
}

.fc-time-grid .fc-highlight-container {
  position: relative;
  z-index: 3;
}

.fc-time-grid .fc-event-container {
  position: relative;
  z-index: 4;
}

.fc-time-grid .fc-now-indicator-line {
  z-index: 5;
}

.fc-time-grid .fc-helper-container {
  /* also is fc-event-container */
  position: relative;
  z-index: 6;
}

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-slats td {
  height: 1.5em;
  border-bottom: 0;
  /* each cell is responsible for its top border */
}

.fc-time-grid .fc-slats .fc-minor td {
  border-top-style: dotted;
}

/* TimeGrid Highlighting Slots
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-highlight-container {
  /* a div within a cell within the fc-highlight-skeleton */
  position: relative;
  /* scopes the left/right of the fc-highlight to be in the column */
}

.fc-time-grid .fc-highlight {
  position: absolute;
  left: 0;
  right: 0;
  /* top and bottom will be in by JS */
}

/* TimeGrid Event Containment
--------------------------------------------------------------------------------------------------*/
.fc-ltr .fc-time-grid .fc-event-container {
  /* space on the sides of events for LTR (default) */
  margin: 0 2.5% 0 2px;
}

.fc-rtl .fc-time-grid .fc-event-container {
  /* space on the sides of events for RTL */
  margin: 0 2px 0 2.5%;
}

.fc-time-grid .fc-event,
.fc-time-grid .fc-bgevent {
  position: absolute;
  z-index: 1;
  /* scope inner z-index's */
}

.fc-time-grid .fc-bgevent {
  /* background events always span full width */
  left: 0;
  right: 0;
}

/* Generic Vertical Event
--------------------------------------------------------------------------------------------------*/
.fc-v-event.fc-not-start {
  /* events that are continuing from another day */
  /* replace space made by the top border with padding */
  border-top-width: 0;
  padding-top: 1px;
  /* remove top rounded corners */
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.fc-v-event.fc-not-end {
  /* replace space made by the top border with padding */
  border-bottom-width: 0;
  padding-bottom: 1px;
  /* remove bottom rounded corners */
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* TimeGrid Event Styling
----------------------------------------------------------------------------------------------------
We use the full "fc-time-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/
.fc-time-grid-event {
  overflow: hidden;
  /* don't let the bg flow over rounded corners */
}

.fc-time-grid-event.fc-selected {
  /* need to allow touch resizers to extend outside event's bounding box */
  /* common fc-selected styles hide the fc-bg, so don't need this anyway */
  overflow: visible;
}

.fc-time-grid-event.fc-selected .fc-bg {
  display: none;
  /* hide semi-white background, to appear darker */
}

.fc-time-grid-event .fc-content {
  overflow: hidden;
  /* for when .fc-selected */
}

.fc-time-grid-event .fc-time,
.fc-time-grid-event .fc-title {
  padding: 0 1px;
}

.fc-time-grid-event .fc-time {
  font-size: 0.85em;
  white-space: nowrap;
}

/* short mode, where time and title are on the same line */
.fc-time-grid-event.fc-short .fc-content {
  /* don't wrap to second line (now that contents will be inline) */
  white-space: nowrap;
}

.fc-time-grid-event.fc-short .fc-time,
.fc-time-grid-event.fc-short .fc-title {
  /* put the time and title on the same line */
  display: inline-block;
  vertical-align: top;
}

.fc-time-grid-event.fc-short .fc-time span {
  display: none;
  /* don't display the full time text... */
}

.fc-time-grid-event.fc-short .fc-time:before {
  content: attr(data-start);
  /* ...instead, display only the start time */
}

.fc-time-grid-event.fc-short .fc-time:after {
  content: " - ";
  /* seperate with a dash, wrapped in nbsp's */
}

.fc-time-grid-event.fc-short .fc-title {
  font-size: 0.85em;
  /* make the title text the same size as the time */
  padding: 0;
  /* undo padding from above */
}

/* resizer (cursor device) */
.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer {
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  overflow: hidden;
  line-height: 8px;
  font-size: 11px;
  font-family: monospace;
  text-align: center;
  cursor: s-resize;
}

.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer:after {
  content: "=";
}

/* resizer (touch device) */
.fc-time-grid-event.fc-selected .fc-resizer {
  /* 10x10 dot */
  border-radius: 5px;
  border-width: 1px;
  width: 8px;
  height: 8px;
  border-style: solid;
  border-color: inherit;
  background: #fff;
  /* horizontally center */
  left: 50%;
  margin-left: -5px;
  /* center on the bottom edge */
  bottom: -5px;
}

/* Now Indicator
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-now-indicator-line {
  border-top-width: 1px;
  left: 0;
  right: 0;
}

/* arrow on axis */
.fc-time-grid .fc-now-indicator-arrow {
  margin-top: -5px;
  /* vertically center on top coordinate */
}

.fc-ltr .fc-time-grid .fc-now-indicator-arrow {
  left: 0;
  /* triangle pointing right... */
  border-width: 5px 0 5px 6px;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.fc-rtl .fc-time-grid .fc-now-indicator-arrow {
  right: 0;
  /* triangle pointing left... */
  border-width: 5px 6px 5px 0;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

/* List View
--------------------------------------------------------------------------------------------------*/
/* possibly reusable */
.fc-event-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
}

/* view wrapper */
.fc-rtl .fc-list-view {
  direction: rtl;
  /* unlike core views, leverage browser RTL */
}

.fc-list-view {
  border-width: 1px;
  border-style: solid;
}

/* table resets */
.fc .fc-list-table {
  table-layout: auto;
  /* for shrinkwrapping cell content */
}

.fc-list-table td {
  border-width: 1px 0 0;
  padding: 8px 14px;
}

.fc-list-table tr:first-child td {
  border-top-width: 0;
}

/* day headings with the list */
.fc-list-heading {
  border-bottom-width: 1px;
}

.fc-list-heading td {
  font-weight: bold;
}

.fc-ltr .fc-list-heading-main {
  float: left;
}

.fc-ltr .fc-list-heading-alt {
  float: right;
}

.fc-rtl .fc-list-heading-main {
  float: right;
}

.fc-rtl .fc-list-heading-alt {
  float: left;
}

/* event list items */
.fc-list-item.fc-has-url {
  cursor: pointer;
  /* whole row will be clickable */
}

.fc-list-item-marker,
.fc-list-item-time {
  white-space: nowrap;
  width: 1px;
}

/* make the dot closer to the event title */
.fc-ltr .fc-list-item-marker {
  padding-right: 0;
}

.fc-rtl .fc-list-item-marker {
  padding-left: 0;
}

.fc-list-item-title a {
  /* every event title cell has an <a> tag */
  text-decoration: none;
  color: inherit;
}

.fc-list-item-title a[href]:hover {
  /* hover effect only on titles with hrefs */
  text-decoration: underline;
}

/* message when no events */
.fc-list-empty-wrap2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.fc-list-empty-wrap1 {
  width: 100%;
  height: 100%;
  display: table;
}

.fc-list-empty {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.fc-unthemed .fc-list-empty {
  /* theme will provide own background */
  background-color: #eee;
}

@-webkit-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
@-moz-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
@keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@-moz-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
.dropzone, .dropzone * {
  box-sizing: border-box;
}

.dropzone {
  min-height: 150px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: #fff;
  padding: 20px 20px;
}

.dropzone.dz-clickable {
  cursor: pointer;
}

.dropzone.dz-clickable * {
  cursor: default;
}

.dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
  cursor: pointer;
}

.dropzone.dz-started .dz-message {
  display: none;
}

.dropzone.dz-drag-hover {
  border-style: solid;
}

.dropzone.dz-drag-hover .dz-message {
  opacity: 0.5;
}

.dropzone .dz-message {
  text-align: center;
  margin: 2em 0;
}

.dropzone .dz-message .dz-button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

.dropzone .dz-preview {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 16px;
  min-height: 100px;
}

.dropzone .dz-preview:hover {
  z-index: 1000;
}

.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}

.dropzone .dz-preview.dz-file-preview .dz-image {
  border-radius: 20px;
  background: #999;
  background: linear-gradient(to bottom, #eee, #ddd);
}

.dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1;
}

.dropzone .dz-preview.dz-image-preview {
  background: #fff;
}

.dropzone .dz-preview.dz-image-preview .dz-details {
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  -ms-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.dropzone .dz-preview .dz-remove {
  font-size: 14px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none;
}

.dropzone .dz-preview .dz-remove:hover {
  text-decoration: underline;
}

.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}

.dropzone .dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  line-height: 150%;
}

.dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 16px;
}

.dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap;
}

.dropzone .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200, 200, 200, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent;
}

.dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 0.4em;
  border-radius: 3px;
}

.dropzone .dz-preview:hover .dz-image img {
  -webkit-transform: scale(1.05, 1.05);
  -moz-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  -o-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
  -webkit-filter: blur(8px);
  filter: blur(8px);
}

.dropzone .dz-preview .dz-image {
  border-radius: 20px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
  z-index: 10;
}

.dropzone .dz-preview .dz-image img {
  display: block;
}

.dropzone .dz-preview.dz-success .dz-success-mark {
  -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px;
}

.dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
  display: block;
  width: 54px;
  height: 54px;
}

.dropzone .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in;
  -moz-transition: opacity 0.4s ease-in;
  -ms-transition: opacity 0.4s ease-in;
  -o-transition: opacity 0.4s ease-in;
  transition: opacity 0.4s ease-in;
}

.dropzone .dz-preview:not(.dz-processing) .dz-progress {
  -webkit-animation: pulse 6s ease infinite;
  -moz-animation: pulse 6s ease infinite;
  -ms-animation: pulse 6s ease infinite;
  -o-animation: pulse 6s ease infinite;
  animation: pulse 6s ease infinite;
}

.dropzone .dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-top: -8px;
  width: 80px;
  margin-left: -40px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: scale(1);
  border-radius: 8px;
  overflow: hidden;
}

.dropzone .dz-preview .dz-progress .dz-upload {
  background: #333;
  background: linear-gradient(to bottom, #666, #444);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  -webkit-transition: width 300ms ease-in-out;
  -moz-transition: width 300ms ease-in-out;
  -ms-transition: width 300ms ease-in-out;
  -o-transition: width 300ms ease-in-out;
  transition: width 300ms ease-in-out;
}

.dropzone .dz-preview.dz-error .dz-error-message {
  display: block;
}

.dropzone .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto;
}

.dropzone .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: block;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 130px;
  left: -10px;
  width: 140px;
  background: #be2626;
  background: linear-gradient(to bottom, #be2626, #a92222);
  padding: 0.5em 1.2em;
  color: #fff;
}

.dropzone .dz-preview .dz-error-message:after {
  content: "";
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #be2626;
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}
.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}
.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}
.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-search--inline {
  float: left;
}
.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0;
}
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-results__option[aria-selected] {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}
.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container .select2-selection--single {
  height: calc(1.5em + 0.75rem + 4px) !important;
}
.select2-container .select2-selection--single .select2-selection__placeholder {
  color: #757575;
  line-height: calc(1.5em + 0.75rem);
}
.select2-container .select2-selection--single .select2-selection__arrow {
  position: absolute;
  top: 50%;
  right: 3px;
  width: 20px;
}
.select2-container .select2-selection--single .select2-selection__arrow b {
  top: 60%;
  width: 25px;
  height: 25px;
  left: 50%;
  margin-left: -10px;
  margin-top: -12px;
  position: absolute;
  background: #ffffff url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'><path d='M441.9 167.3l-19.8-19.8c-4.7-4.7-12.3-4.7-17 0L224 328.2 42.9 147.5c-4.7-4.7-12.3-4.7-17 0L6.1 167.3c-4.7 4.7-4.7 12.3 0 17l209.4 209.4c4.7 4.7 12.3 4.7 17 0l209.4-209.4c4.7-4.7 4.7-12.3 0-17z'/></svg>") no-repeat right 0.75rem center/8px 10px;
  background-size: 0.8rem;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  line-height: calc(1.5em + 0.75rem);
  font-weight: bold;
  padding-left: 0px;
}

.select2-search--dropdown .select2-search__field {
  border: 2px solid #ECEBEB;
}

.select2-results__message {
  color: #221e1f;
}

.select2-container .select2-selection--multiple {
  min-height: calc(1.5em + 0.75rem + 4px) !important;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 8px;
  width: 100%;
}
.select2-container .select2-selection--multiple .select2-selection__rendered .select2-search__field {
  width: 100% !important;
  border: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
  margin-top: 0px !important;
}
.select2-container .select2-selection--multiple .select2-selection__choice {
  color: #213033;
  border: 1px solid #bab7b7;
  border-radius: 0.2rem;
  padding: 0;
  padding-right: 5px;
  cursor: pointer;
  float: left;
  margin-top: 0.3em;
  margin-right: 5px;
}
.select2-container .select2-selection--multiple .select2-selection__choice__remove {
  color: #bab7b7;
  font-weight: bold;
  margin-left: 3px;
  margin-right: 1px;
  padding-right: 3px;
  padding-left: 3px;
  float: left;
}
.select2-container .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #213033;
}
.select2-container .select2-selection--multiple .select2-selection__clear {
  float: none;
  margin-right: 0;
  position: absolute !important;
  top: 0;
  right: 0.7em;
}

.select2-container {
  display: block;
  width: 100% !important;
}
.select2-container *:focus {
  outline: 0;
}

.md-form .select2-container {
  margin-bottom: 0.3rem;
  margin-top: 0.3rem;
}

.input-group .select2-container {
  flex-grow: 1;
}

.input-group-prepend ~ .select2-container .select2-selection {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group > .select2-container:not(:last-child) .select2-selection {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container .select2-selection {
  background-color: #ffffff;
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
  /*border-bottom: $input-border-width solid $input-border-color;*/
  transition: all 0.3s;
  width: 100%;
}
@media (prefers-reduced-motion: reduce) {
  .select2-container .select2-selection {
    transition: none;
  }
}
.select2-container.select2-container--focus .select2-selection {
  border-color: #9cd9d3;
}
.select2-container.select2-container--focus.select2-container--open .select2-selection {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container.select2-container--disabled .select2-selection, .select2-container.select2-container--disabled.select2-container--focus .select2-selection {
  background-color: #F7F7F7;
  cursor: not-allowed;
  border-color: #ECEBEB;
  box-shadow: none;
}
.select2-container.select2-container--disabled .select2-search__field, .select2-container.select2-container--disabled.select2-container--focus .select2-search__field {
  background-color: transparent;
}
select.is-invalid ~ .select2-container .select2-selection, form.was-validated select:invalid ~ .select2-container .select2-selection {
  border-color: #D33543;
}
select.is-valid ~ .select2-container .select2-selection, form.was-validated select:valid ~ .select2-container .select2-selection {
  border-color: #A5CB2C;
}
.select2-container .select2-dropdown {
  border-color: #ECEBEB;
  border-radius: 0;
}
.select2-container .select2-dropdown.select2-dropdown--below {
  border-top: none;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.select2-container .select2-dropdown.select2-dropdown--above {
  border-top: 1px solid #ECEBEB;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.select2-container .select2-dropdown .select2-results__option[aria-selected=true] {
  background-color: #e0dede;
}
.select2-container .select2-results__option--highlighted,
.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true] {
  background-color: #44b1a6;
  color: #ECEBEB;
}
.select2-container .select2-results__option[role=group] {
  padding: 0;
}
.select2-container .select2-results__option[role=group] .select2-results__options--nested .select2-results__option {
  padding-left: 1em;
}
.select2-container .select2-results > .select2-results__options {
  max-height: 15em;
  overflow-y: auto;
}
.select2-container .select2-results__group {
  padding: 6px;
  display: list-item;
  color: #221e1f;
}
.select2-container .select2-selection__clear {
  width: 0.9em;
  height: 0.9em;
  line-height: 0.75em;
  padding-left: 0.15em;
  margin-top: 0.7em;
  border-radius: 100%;
  background-color: #c8c8c8;
  color: #ECEBEB;
  float: right;
  margin-right: 0.3em;
}
.select2-container .select2-selection__clear:hover {
  background-color: #afafaf;
}

.select2-container--navbar .select2-selection--single {
  font-weight: normal;
  height: calc(1.5em + 0.75rem + 4px) !important;
}
.select2-container--navbar .select2-selection--single .select2-selection__placeholder {
  color: #757575;
  line-height: calc(1.5em + 0.75rem);
}
.select2-container--navbar .select2-selection--single .select2-selection__arrow {
  position: absolute;
  top: 50%;
  right: 3px;
  width: 20px;
}
.select2-container--navbar .select2-selection--single .select2-selection__arrow b {
  top: 60%;
  border-color: #213033 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  width: 0;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
}
.select2-container--navbar .select2-selection--single .select2-selection__rendered {
  line-height: calc(1.5em + 0.75rem);
  font-weight: normal;
}

.select2-container--navbar .select2-selection--multiple {
  min-height: calc(1.5em + 0.75rem + 4px) !important;
}
.select2-container--navbar .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 8px;
  width: 100%;
  font-weight: normal;
}
.select2-container--navbar .select2-selection--multiple .select2-selection__rendered .select2-search__field {
  width: 100% !important;
}
.select2-container--navbar .select2-selection--multiple .select2-selection__choice {
  color: #858796;
  font-size: 11px;
  padding: 0px 8px;
  background: #F7F7F7;
  border: 1px solid #bab7b7;
  border-radius: 19px;
  padding: 0;
  padding-right: 5px;
  cursor: pointer;
  float: left;
  margin-top: 0.3em;
  margin-right: 5px;
}
.select2-container--navbar .select2-selection--multiple .select2-selection__choice__remove {
  color: #bab7b7;
  font-weight: bold;
  margin-left: 3px;
  margin-right: 1px;
  padding-right: 3px;
  padding-left: 3px;
  float: left;
}
.select2-container--navbar .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #213033;
}
.select2-container--navbar .select2-selection--multiple .select2-selection__clear {
  float: none;
  margin-right: 0;
  position: absolute !important;
  top: 0;
  right: 0.7em;
}

.input-group .select2-container--navbar {
  flex-grow: 1;
}

.input-group-prepend ~ .select2-container--navbar .select2-selection {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group > .select2-container--navbar:not(:last-child) .select2-selection {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--navbar .select2-dropdown.select2-dropdown--below {
  border-width: 2px;
  background: #f7f7f7;
  border-bottom-right-radius: 19px;
  border-bottom-left-radius: 19px;
}
.select2-container--navbar .select2-dropdown.select2-dropdown--below .select2-results {
  color: #757575;
  font-size: 11px;
  padding: 0px 5px;
}
.select2-container--navbar .select2-selection {
  background-color: #ffffff;
  border: 2px solid #ECEBEB;
  color: #858796;
  font-size: 11px;
  padding: 0px 8px;
  background: #F7F7F7;
  border-radius: 19px;
  transition: all 0.3s;
  width: 100%;
}
@media (prefers-reduced-motion: reduce) {
  .select2-container--navbar .select2-selection {
    transition: none;
  }
}
.select2-container--navbar.select2-container--open .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--navbar.select2-container--focus .select2-selection {
  border-color: #9cd9d3;
  box-shadow: 0 0 0 0.2rem rgba(68, 177, 166, 0.25);
}
.select2-container--navbar.select2-container--focus.select2-container--open .select2-selection {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--navbar.select2-container--disabled .select2-selection, .select2-container--navbar.select2-container--disabled.select2-container--focus .select2-selection {
  background-color: #F7F7F7;
  cursor: not-allowed;
  border-color: #ECEBEB;
  box-shadow: none;
}
.select2-container--navbar.select2-container--disabled .select2-search__field, .select2-container--navbar.select2-container--disabled.select2-container--focus .select2-search__field {
  background-color: transparent;
}
select.is-invalid ~ .select2-container--navbar .select2-selection, form.was-validated select:invalid ~ .select2-container--navbar .select2-selection {
  border-color: #D33543;
}
select.is-valid ~ .select2-container--navbar .select2-selection, form.was-validated select:valid ~ .select2-container--navbar .select2-selection {
  border-color: #A5CB2C;
}
.select2-container--navbar .select2-dropdown {
  border-color: #ECEBEB;
  border-radius: 0;
}
.select2-container--navbar .select2-dropdown.select2-dropdown--above {
  border-top: 1px solid #ECEBEB;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.select2-container--navbar .select2-dropdown .select2-results__option[aria-selected=true] {
  background-color: #e0dede;
}
.select2-container--navbar .select2-results__option--highlighted,
.select2-container--navbar .select2-results__option--highlighted.select2-results__option[aria-selected=true] {
  background-color: #44b1a6;
  color: #ECEBEB;
}
.select2-container--navbar .select2-results__option[role=group] {
  padding: 0;
}
.select2-container--navbar .select2-results__option[role=group] .select2-results__options--nested .select2-results__option {
  padding-left: 1em;
}
.select2-container--navbar .select2-results > .select2-results__options {
  max-height: 15em;
  overflow-y: auto;
}
.select2-container--navbar .select2-results__group {
  padding: 6px;
  display: list-item;
  color: #221e1f;
}
.select2-container--navbar .select2-selection__clear {
  width: 0.9em;
  height: 0.9em;
  line-height: 0.75em;
  padding-left: 0.15em;
  margin-top: 0.7em;
  border-radius: 100%;
  background-color: #c8c8c8;
  color: #ECEBEB;
  float: right;
  margin-right: 0.3em;
}
.select2-container--navbar .select2-selection__clear:hover {
  background-color: #afafaf;
}

@media (max-width: 575.98px) {
  .preventivatore-section .preventivatore-section-title {
    min-width: 80%;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .preventivatore-section .preventivatore-section-title {
    min-width: 70%;
    font-size: 0.875rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .preventivatore-section .preventivatore-section-title {
    min-width: 60%;
    font-size: 0.875rem;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .preventivatore-section .preventivatore-section-title {
    min-width: 50%;
    font-size: 1.1375rem;
  }
}
@media (min-width: 1200px) {
  .preventivatore-section .preventivatore-section-title {
    min-width: 40%;
    font-size: 1.3125rem;
  }
}

.resultRiepilogo {
  cursor: pointer;
}

.drag-and-drop-line {
  font-size: 18px;
  color: #5E6771;
}

#document-totals {
  position: sticky;
  top: 120px;
}

#sidebar-container {
  min-width: 98px;
}
#sidebar-container #fake-bar-part {
  height: 54px;
  width: 100%;
  background: #213033;
  z-index: 12;
  position: fixed;
}
#sidebar-container ul {
  margin-right: 15px;
  list-style: none;
}
#sidebar-container .list-group-item {
  border: none;
  background: #ffffff;
}

.first-level-icon {
  font-size: 1.4rem;
}

#menu-vg7-wrapper {
  padding-left: 15px;
}

.sidebar-expanded #menu-vg7-wrapper {
  min-width: 320px;
}

.sidebar-expanded #menu_vg7 {
  min-width: 290px;
}

#menu-fixed-block {
  position: fixed;
  top: 0px;
  padding-top: 116px;
  height: 100vh;
  padding-bottom: 66px;
  background: #ffffff;
}

#menu_vg7 {
  background: #ffffff;
  overflow: scroll;
  height: 100%;
  max-width: 300px;
  /* AGGIUNTE PER UNIFORMARE MAIUSCOLE MENU' LATERALE */
  /* 
      .sidebar-submenu {
          .list-group-item,
          .list-group-item.active,
          .list-group-item:hover,
          .list-group-item:active,
          .list-group-item:focus
          {
              display: inline-block;
              text-transform: lowercase !important;
          }
      }

      .sidebar-submenu {
          .list-group-item:first-letter,
          .list-group-item.active:first-letter,
          .list-group-item:hover:first-letter,
          .list-group-item:active:first-letter,
          .list-group-item:focus:first-letter
          {
              text-transform: capitalize !important;
          }
      }

      .list-group-item.list-group-item-action.menu-collapsed {
          text-transform: uppercase !important;
      }

      .level_1.list-group-item.sidebar-separator-title.text-muted.d-flex.align-items-center.menu-collapsed small{
          text-transform: uppercase !important;
      }
      .level_1.list-group-item.list-group-item-action {
          text-transform: capitalize !important;
      } 
  */
  /* FINE AGGIUNTE PER UNIFORMARE MAIUSCOLE MENU' LATERALE */
}
#menu_vg7 > a.list-group-item.active,
#menu_vg7 > a.list-group-item:hover,
#menu_vg7 > a.list-group-item[aria-expanded=true],
#menu_vg7 > a.list-group-item:focus {
  background: #44b1a6;
  color: #ffffff;
  border: none;
}
#menu_vg7 .list-group-item {
  border-radius: 0px;
}
#menu_vg7 li.header-list-item {
  background: #e8e8e8;
  font-weight: normal;
  padding-left: 40px;
  border-radius: 0px;
  color: #354052;
  text-transform: uppercase;
}
#menu_vg7 li.header-list-item:hover {
  background: #e8e8e8;
  font-weight: normal;
  padding-left: 40px;
  border-radius: 0px;
  color: #354052;
  border-color: #e8e8e8;
}
#menu_vg7 .submenu-icon::after {
  font-family: "Font Awesome 5 Pro";
  font-size: 12px;
  font-weight: bold;
}
#menu_vg7 .list-group-item {
  border-left: 3px solid transparent;
}
#menu_vg7 .list-group-item.active,
#menu_vg7 .list-group-item:hover,
#menu_vg7 .list-group-item[aria-expanded=true],
#menu_vg7 .list-group-item:focus {
  background: #F7F7F7;
  color: #44b1a6;
  border-left: 3px solid #44b1a6;
}
#menu_vg7 .level_1.list-group-item,
#menu_vg7 .level_1.list-group-item.active,
#menu_vg7 .level_1.list-group-item:hover,
#menu_vg7 .level_1.list-group-item:active,
#menu_vg7 .level_1.list-group-item:focus {
  border: none;
  text-transform: uppercase;
}
#menu_vg7 .list-group-item .align-items-center .submenu-icon {
  padding-left: 15px;
}
#menu_vg7 .list-group-item.list-group-item-action.flex-column.align-items-start .menu-collapsed,
#menu_vg7 .list-group-item.list-group-item-action.flex-column.align-items-start,
#menu_vg7 .list-group-item.list-group-item-action.flex-column.align-items-start:hover {
  text-transform: uppercase !important;
}
#menu_vg7 .list-group-item.list-group-item-action .menu-collapsed,
#menu_vg7 .list-group-item.list-group-item-action:hover .menu-collapsed {
  text-transform: uppercase !important;
}
#menu_vg7 .list-group-item.list-group-item-action .ml-3,
#menu_vg7 .list-group-item.list-group-item-action:hover .ml-3 {
  text-transform: uppercase !important;
}
#menu_vg7 .list-group-item.list-group-item-action.menu-collapsed,
#menu_vg7 .list-group-item.list-group-item-action.menu-collapsed:hover {
  text-transform: uppercase !important;
}
#menu_vg7 .level_1.list-group-item.list-group-item-action,
#menu_vg7 .level_1.list-group-item.list-group-item-action:hover,
#menu_vg7 a.level_1.list-group-item.list-group-item-action,
#menu_vg7 a.level_1.list-group-item.list-group-item-action:hover,
#menu_vg7 a.list-group-item.list-group-item-action,
#menu_vg7 a.list-group-item.list-group-item-action:hover {
  text-transform: capitalize !important;
}
#menu_vg7 .sidebar-submenu .list-group-item,
#menu_vg7 .sidebar-submenu .list-group-item.active,
#menu_vg7 .sidebar-submenu .list-group-item:hover,
#menu_vg7 .sidebar-submenu .list-group-item:active,
#menu_vg7 .sidebar-submenu .list-group-item:focus {
  text-transform: none !important;
}

#menu-vg7-wrapper {
  padding-top: 60px;
}

#second-top-bar {
  position: sticky;
  top: 52px;
  margin-top: -60px;
  z-index: 20;
  margin-right: -7.5px;
  margin-left: -7.5px;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  #second-top-bar {
    margin-right: -22.5px;
    margin-left: -22.5px;
  }
}
#second-top-bar form {
  display: inline;
}
#second-top-bar .icona-help {
  color: #5BC5F2;
  cursor: help;
}

@media (max-width: 991.98px) {
  .navbar.navbar-expand-lg .collapse.show .btn {
    display: block;
    margin-top: 7.5px;
    margin-bottom: 7.5px;
    width: 100%;
  }
}

@media (max-width: 991.98px) {
  .navbar.navbar-expand-lg .collapse.show .btn-group {
    display: block;
  }
}

@media (max-width: 991.98px) {
  #sidebar-container {
    height: 100%;
  }
  #sidebar-container .parent-div-menu-wrapper {
    height: 100%;
  }
  #sidebar-container #menu-vg7-wrapper {
    height: 100%;
    margin-right: 0;
    padding-left: 0;
    padding-top: 0;
  }
  #sidebar-container #menu-vg7-wrapper #menu-fixed-block {
    padding-top: 52px;
  }
  #sidebar-container #menu-vg7-wrapper #menu-fixed-block #menu_vg7 {
    height: 80vh;
  }
  #sidebar-container.sidebar-expanded {
    width: 100%;
    position: absolute;
    z-index: 999;
  }
  #sidebar-container.sidebar-expanded #menu-fixed-block {
    width: 100%;
  }
  #sidebar-container.sidebar-expanded #menu-fixed-block #menu_vg7 {
    width: 100%;
    max-width: 100%;
  }
}
#main-content {
  min-width: 0;
  min-height: 0;
  margin-top: 60px;
  padding-bottom: 20px;
}
#main-content .container-fluid, #main-content .container-sm, #main-content .container-md, #main-content .container-lg, #main-content .container-xl {
  max-width: 1600px;
}

.search-form {
  width: 100%;
}

/* ----------- Wiews customizations style.scss ----------- */
/** 
    PRINT - TEMPLATE - FORM 
    Classi create per stilare i blocchi presenti nella sezione ELENCO FASI nel form di creazione di un template di produzione.
*/
.print-template-elencofasi-container .print-template-elencofasi-container-header,
.print-template-elencofasi-container .mainrow .operatore,
.print-template-elencofasi-container .mainrow .operatore,
.print-template-elencofasi-container .mainrow .rilevamento_manuale,
.print-template-elencofasi-container .mainrow .nascosta {
  text-align: left;
}

.print-template-elencofasi-container .mainrow div:first-child,
.print-template-elencofasi-container .print-template-elencofasi-container-header-nome {
  flex: 1;
  word-wrap: break-word;
  white-space: initial;
}

.print-template-elencofasi-container .mainrow .operatore,
.print-template-elencofasi-container-header-operatore {
  max-width: 20%;
  width: 20%;
  word-wrap: break-word;
  white-space: initial;
}

.print-template-elencofasi-container .mainrow .multi_operatore,
.print-template-elencofasi-container-header-multi_operatore {
  max-width: 15%;
  width: 15%;
  word-wrap: break-word;
  white-space: initial;
  padding-left: 1rem;
}

.print-template-elencofasi-container .mainrow .rilevamento_manuale,
.print-template-elencofasi-container-header-rilevamento_manuale {
  max-width: 15%;
  width: 15%;
  word-wrap: break-word;
  white-space: initial;
  padding-left: 1rem;
}

.print-template-elencofasi-container .mainrow .nascosta,
.print-template-elencofasi-container-header-nascosta {
  max-width: 15%;
  width: 15%;
  word-wrap: break-word;
  white-space: initial;
  padding-left: 1rem;
}

/** 
    END PRINT - TEMPLATE - FORM 
*/
.vg-gr-list {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
}

.vg-gr-list > div {
  display: flex;
  justify-content: flex-start;
}

.vg-gr-list-6 > div {
  width: 16%;
  margin-right: 8px;
}

.vg-gr-list-6 > div:last-child {
  margin-right: none;
}

.vg-gr-fix-border-radious {
  border-radius: inherit !important;
}

@media screen and (max-width: 800px) {
  .vg-gr-list div {
    border-bottom: 1px solid var(--light);
    padding: 12px;
    width: 100%;
  }
  .vg-gr-list div:last-child {
    border-bottom: none;
  }
  .vg-gr-list {
    flex-direction: column;
  }
  .modal-content {
    background-color: var(--white) !important;
  }
}
table.prodotti td,
table.prodotti th {
  border-bottom: 1px solid #ddd;
  padding: 10px;
}

.vg-gr-summary {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}

.vg-gr-summary > div {
  width: 32.5%;
}

.vg-gr-list-items > div {
  border-bottom: 2px solid var(--light);
  padding: 12px;
  margin-left: 8px;
  width: 100%;
}

.vg-gr-list-items > div:last-child {
  border-bottom: none;
  margin-left: none;
}

.vg-gr-inline-list {
  display: flex;
  flex-flow: row;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.vg-gr-inline-list > div {
  margin-right: 8px;
}

.vg-gr-inline-list-5 > div {
  width: 20%;
}

.vg-gr-inline-list-4 > div {
  width: 25%;
}

.card-body[aria-expanded=true] .vg-gr-collapse-divider {
  margin: 0 15px;
  border-top: 2px solid var(--light);
}

.aggiungiriga-price-id-product {
  font-size: 8pt;
}

.prodottiprint-button-carousel {
  display: block;
}

.prodottiprint-buttong-formgroup-carousel {
  /*.carousel-cell {
    width: 33%;
  }*/
}
.prodottiprint-buttong-formgroup-carousel .flickity-prev-next-button {
  height: 1.5rem;
  background-color: transparent !important;
}
@media (max-width: 767.98px) {
  .prodottiprint-buttong-formgroup-carousel .flickity-prev-next-button {
    display: none;
  }
}
.prodottiprint-buttong-formgroup-carousel .flickity-prev-next-button.previous {
  left: -2rem;
}
.prodottiprint-buttong-formgroup-carousel .flickity-prev-next-button.next {
  right: -2rem;
}
.prodottiprint-buttong-formgroup-carousel .flickity-prev-next-button:focus {
  box-shadow: none;
}
.prodottiprint-buttong-formgroup-carousel .prodottiprint-radiobutton input[type=radio] {
  display: none;
  pointer-events: none;
}
.prodottiprint-buttong-formgroup-carousel .prodottiprint-radiobutton .prodottiprint-radiobutton-infobox {
  min-height: 21px; /* Obbligatorio settare una min height per getire l'alatezza del pulsante nella modalità carosello */
}

.prodottiprint-button-grid {
  display: grid;
  grid-gap: 1rem;
}
.prodottiprint-button-grid .prodottiprint-helptext-brokengrid-each-1-element,
.prodottiprint-button-grid .prodottiprint-helptext-brokengrid-each-2-element,
.prodottiprint-button-grid .prodottiprint-helptext-brokengrid-each-3-element,
.prodottiprint-button-grid .prodottiprint-helptext-brokengrid-each-4-element {
  display: none;
}
.prodottiprint-button-grid.prodottiprint-button-grid-6 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}
.prodottiprint-button-grid.prodottiprint-button-grid-5 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
.prodottiprint-button-grid.prodottiprint-button-grid-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.prodottiprint-button-grid.prodottiprint-button-grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.prodottiprint-button-grid.prodottiprint-button-grid-2 {
  grid-template-columns: 1fr 1fr;
}
.prodottiprint-button-grid.prodottiprint-button-grid-1 {
  grid-template-columns: 1fr;
}
.prodottiprint-button-grid.prodottiprint-button-grid-1 .prodottiprint-inputradiobutton {
  flex-direction: row;
  justify-content: space-between;
}
.prodottiprint-button-grid.prodottiprint-button-grid-1 .prodottiprint-inputradiobutton .prodottiprint-radiobutton-media {
  height: 80px;
  width: 80px;
  object-fit: cover;
}
.prodottiprint-button-grid.prodottiprint-button-grid-1 .prodottiprint-inputradiobutton .prodottiprint-radiobutton-text {
  justify-content: flex-start;
}
.prodottiprint-button-grid.prodottiprint-button-grid-1 .prodottiprint-inputradiobutton .prodottiprint-radiobutton-infobox {
  text-align: right;
}
@media (max-width: 767.98px) {
  .prodottiprint-button-grid.prodottiprint-button-grid-mobile-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .prodottiprint-button-grid.prodottiprint-button-grid-mobile-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .prodottiprint-button-grid.prodottiprint-button-grid-mobile-2 {
    grid-template-columns: 1fr 1fr;
  }
  .prodottiprint-button-grid.prodottiprint-button-grid-mobile-1 {
    grid-template-columns: 1fr;
  }
  .prodottiprint-button-grid.prodottiprint-button-grid-mobile-1 .prodottiprint-inputradiobutton {
    flex-direction: row;
    justify-content: space-between;
  }
  .prodottiprint-button-grid.prodottiprint-button-grid-mobile-1 .prodottiprint-inputradiobutton .prodottiprint-radiobutton-media {
    height: 80px;
    width: 80px;
    object-fit: cover;
  }
  .prodottiprint-button-grid.prodottiprint-button-grid-mobile-1 .prodottiprint-inputradiobutton .prodottiprint-radiobutton-text {
    justify-content: flex-start;
  }
  .prodottiprint-button-grid.prodottiprint-button-grid-mobile-1 .prodottiprint-inputradiobutton .prodottiprint-radiobutton-infobox {
    text-align: right;
  }
  .prodottiprint-button-grid .prodottiprint-helptext-brokengrid-1,
.prodottiprint-button-grid .prodottiprint-helptext-brokengrid-2,
.prodottiprint-button-grid .prodottiprint-helptext-brokengrid-3,
.prodottiprint-button-grid .prodottiprint-helptext-brokengrid-4,
.prodottiprint-button-grid .prodottiprint-helptext-brokengrid-5,
.prodottiprint-button-grid .prodottiprint-helptext-brokengrid-6 {
    grid-column: unset;
  }
  .prodottiprint-button-grid .prodottiprint-helptext-brokengrid-each-1-element {
    grid-column: unset;
  }
  .prodottiprint-button-grid .prodottiprint-helptext-brokengrid-each-2-element {
    grid-column: 1/3;
  }
  .prodottiprint-button-grid .prodottiprint-helptext-brokengrid-each-3-element {
    grid-column: 1/4;
  }
  .prodottiprint-button-grid .prodottiprint-helptext-brokengrid-each-4-element {
    grid-column: 1/5;
  }
  .prodottiprint-button-grid .prodottiprint-helptext-brokengrid-each-1-element,
.prodottiprint-button-grid .prodottiprint-helptext-brokengrid-each-2-element,
.prodottiprint-button-grid .prodottiprint-helptext-brokengrid-each-3-element,
.prodottiprint-button-grid .prodottiprint-helptext-brokengrid-each-4-element {
    display: unset;
  }
  .prodottiprint-button-grid .prodottiprint-helptext-brokengrid-endrow {
    display: none;
  }
}

.prodottiprint-inputradiobutton,
.prodottiprint-inputcheckboxbutton {
  display: flex;
  min-height: 50px;
  flex-direction: column;
  flex: 1;
  align-items: center;
  border: 2px solid #44b1a6;
  margin: 0;
  border-radius: 0.3rem !important;
  justify-content: center;
}
.prodottiprint-inputradiobutton > *,
.prodottiprint-inputcheckboxbutton > * {
  margin-right: 0 !important;
  width: 100%;
}
.prodottiprint-inputradiobutton > img,
.prodottiprint-inputcheckboxbutton > img {
  padding: 2px;
}
.prodottiprint-inputradiobutton:last-child,
.prodottiprint-inputcheckboxbutton:last-child {
  margin-right: unset;
}
.prodottiprint-inputradiobutton .prodottiprint-button-text, .prodottiprint-inputradiobutton .prodottiprint-radiobutton-text,
.prodottiprint-inputcheckboxbutton .prodottiprint-button-text,
.prodottiprint-inputcheckboxbutton .prodottiprint-radiobutton-text {
  height: calc(100% - 1rem);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
}
.prodottiprint-inputradiobutton .prodottiprint-buttonconsegna-text,
.prodottiprint-inputcheckboxbutton .prodottiprint-buttonconsegna-text {
  height: calc(100% - 1rem);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
}

.prodottiprint-formgroup {
  border: unset;
  border-radius: unset;
  background-color: unset;
  padding: unset;
}

.prodottiprint-formgroup {
  border: unset;
  border-radius: unset;
  background-color: unset;
  padding: unset;
}

.prodottiprint-radiobutton {
  height: 100%;
}
.prodottiprint-radiobutton > * {
  height: 100%;
}
.prodottiprint-radiobutton .prodottiprint-radiobutton-infobox-btn {
  background: unset;
  border: unset;
  margin: unset;
  padding: unset;
}
.prodottiprint-radiobutton input[type=radio] {
  display: none !important;
  pointer-events: none;
}

.prodottiprint-inputcheckboxbutton .prodottiprint-checkbox-infobox-btn {
  background: unset;
  border: unset;
  margin: unset;
  padding: unset;
}

/* *********************************************** BUTTON FORMATO ********************************************* */
.prodottiprint-buttonformato-orientamento {
  margin-top: 1rem;
}

.prodottiprint-buttonformato-btn-orientamento {
  display: flex;
  justify-content: space-between;
}

.prodottiprint-formato-Button, .prodottiprint-formato-Select, .prodottiprint-formato-Input {
  border-bottom: solid 1px #ECEBEB;
}

.prodottiprint-helptext {
  background-color: #F7F7F7;
  padding: 1rem;
  border-radius: 0.3rem;
  margin: 0 0 1rem 0;
  display: flex;
}
.prodottiprint-helptext p:last-child {
  margin-bottom: 0;
}

.prodottiprint-helptext-sottovariante {
  background-color: #ffffff;
  border-radius: 0.3rem;
  border: 1px solid #ECEBEB;
}
.prodottiprint-helptext-sottovariante .prodottiprint-helptext-preview-titolo {
  font-weight: bold;
}

.prodottiprint-helptext-modaltype {
  cursor: pointer;
}

.prodottiprint-helptext-media {
  flex: 1;
  margin-right: 1rem;
}

.prodottiprint-helptext-text {
  flex: 3;
}

.prodottiprint-helptext-text-modaltype {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.prodottiprint-button-grid label div {
  word-break: break-word;
}

.prodottiprint-helptext-text-modaltype p {
  display: contents;
}

.prodottiprint-helptext-text-modaltype p:after {
  content: "\a";
  white-space: pre;
}

.prodottiprint-helptext-text-modaltype-with-media {
  -webkit-line-clamp: 4;
}

.prodottiprint-helptext-text-modaltype-with-media-and-title {
  -webkit-line-clamp: 3;
}

.prodottiprint-helptextpopover {
  display: inline;
}

.prodottiprint-helptextpopover-btn {
  margin: 0;
  padding: 0;
  color: var(--primary);
  background-color: unset;
  border: unset;
}

#textHelpModal___BV_modal_content_ .prodottiprint-helptextmodal-btn-close {
  background-color: #FAFAFA;
  border-radius: 50px;
  font-size: 13px;
  padding: 16px;
  margin-right: 0;
}
#textHelpModal___BV_modal_content_ .prodottiprint-helptextmodal-btn-close:focus {
  box-shadow: none;
}
#textHelpModal___BV_modal_content_ .prodottiprint-helptextmodal-btn-close::after {
  content: "";
}
#textHelpModal___BV_modal_content_ .modal-header {
  padding-bottom: 0;
  border-bottom: 0;
}
#textHelpModal___BV_modal_content_ .prodottiprint-helptextmodal-text p:last-child {
  margin-bottom: 0;
}
#textHelpModal___BV_modal_content_ .prodottiprint-helptextmodal-title {
  margin-bottom: 0;
}

.prodottiprint-helptexticon-active {
  color: #5BC5F2;
}

/* *********************************************** AFFIANCA HELPTEXT ********************************************** */
.prodottiprint-inputcontrol-content-affiancahelptext {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
@media (max-width: 991.98px) {
  .prodottiprint-inputcontrol-content-affiancahelptext {
    grid-template-columns: 1fr !important;
  }
}
.prodottiprint-inputcontrol-content-affiancahelptext .prodottiprint-helptext-variante {
  margin: 0 1rem 1rem 0;
}
@media (max-width: 991.98px) {
  .prodottiprint-inputcontrol-content-affiancahelptext .prodottiprint-helptext-variante {
    margin: 1rem 0 !important;
  }
}
.prodottiprint-inputcontrol-content-affiancahelptext .prodottiprint-helptext-variante.prodottiprint-helptext {
  display: block;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .prodottiprint-inputcontrol-content-affiancahelptext .prodottiprint-helptext-variante.prodottiprint-helptext {
    display: flex;
  }
}
@media (min-width: 992px) {
  .prodottiprint-inputcontrol-content-affiancahelptext .prodottiprint-helptext-variante.prodottiprint-helptext .prodottiprint-helptext-media {
    display: block;
    margin-right: unset;
  }
}

/* *************************** HELPTEXT BROKENGRID PER VARIANTE A BOTTONI CON GRIGLIA  **************************** */
.prodottiprint-helptext-brokengrid-1,
.prodottiprint-helptext-brokengrid-2,
.prodottiprint-helptext-brokengrid-3,
.prodottiprint-helptext-brokengrid-4,
.prodottiprint-helptext-brokengrid-5,
.prodottiprint-helptext-brokengrid-6 {
  margin: 0;
}

.prodottiprint-helptext-brokengrid-1 {
  grid-column: 1/2;
}

.prodottiprint-helptext-brokengrid-2 {
  grid-column: 1/3;
}

.prodottiprint-helptext-brokengrid-3 {
  grid-column: 1/4;
}

.prodottiprint-helptext-brokengrid-4 {
  grid-column: 1/5;
}

.prodottiprint-helptext-brokengrid-5 {
  grid-column: 1/6;
}

.prodottiprint-helptext-brokengrid-6 {
  grid-column: 1/7;
}

.prodottiprint-inputcontrol {
  margin-bottom: 1rem;
  border-bottom: 2px solid #ECEBEB;
}
.prodottiprint-inputcontrol .form-select, .prodottiprint-inputcontrol .form-control {
  font-size: 14px;
  min-height: 50px;
}
.prodottiprint-inputcontrol .form-control:disabled, .prodottiprint-inputcontrol .form-control[readonly] {
  background-color: white;
  opacity: 1;
  color: #9B9B9B;
}

.prodottiprint-inputlabel {
  display: flex;
  flex-flow: row;
  margin-bottom: 1rem;
}
.prodottiprint-inputlabel .prodottiprint-inputlabel-action-aprichiuditoggler-icon-transition i {
  transition: all 0.25s ease-in-out;
}

.prodottiprint-inputlabel-content {
  display: flex;
  flex-grow: 1;
}

.prodottiprint-inputlabel-content-text {
  display: flex;
  flex-flow: column;
  align-self: center;
}

.prodottiprint-inputlabel-content-color {
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
}

.prodottiprint-inputlabel-content-text-title-label {
  display: flex;
  margin: 0;
}

.prodottiprint-inputlabel-content-text-title-label > * {
  margin-right: 0.5rem;
}

.prodottiprint-inputlabel-content-text-title-label:last-child {
  margin-right: unset;
}

.prodottiprint-inputlabel-content-text-title-label-value {
  font-weight: 700;
}

.prodottiprint-inputlabelmedia {
  margin-right: 0.5rem;
}

.prodottiprint-inputcolordot {
  min-width: 1rem;
  min-height: 1rem;
  max-height: 1rem;
  max-width: 1rem;
  border-radius: 1rem;
}

.prodottiprint-inputlabel-action {
  display: flex;
  align-self: center;
}

.prodottiprint-inputcontrol-content-input {
  padding: 0.5rem 0 2rem 0;
}

.prodottiprint-inputcontrol-content-input .hide-disabled-element .prodottiprint-radiobutton-disabled {
  display: none;
}

.prodottiprint-inputlabel-action-aprichiuditoggler-icon-transition i {
  transition: all 0.25s ease-in-out;
}

.prodottiprint-multisubject-row {
  display: grid;
  grid-template-columns: 4fr 5fr 1rem 1rem;
  grid-column-gap: 1rem;
  margin-bottom: 1rem;
}
.prodottiprint-multisubject-row .prodottiprint-multisubject-qt {
  display: grid;
  grid-template-columns: auto 2fr auto;
  grid-column-gap: 0.5rem;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
.prodottiprint-multisubject-row .prodottiprint-multisubject-qt input {
  text-align: center;
}
.prodottiprint-multisubject-row .prodottiprint-multisubject-qt input::-webkit-outer-spin-button,
.prodottiprint-multisubject-row .prodottiprint-multisubject-qt input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.prodottiprint-multisubject-row .prodottiprint-multisubject-qt input[type=number] {
  -moz-appearance: textfield;
}
.prodottiprint-multisubject-row .prodottiprint-multisubject-addremove {
  background-color: transparent;
  border: 0;
  padding: 0;
  height: 50px;
}
.prodottiprint-multisubject-row .prodottiprint-multisubject-addremove:focus {
  box-shadow: none;
}
.prodottiprint-multisubject-row .prodottiprint-multisubject-addremove .fa-plus-circle {
  color: #28A745;
  font-size: 1.25rem;
}
.prodottiprint-multisubject-row .prodottiprint-multisubject-addremove .fa-minus-circle {
  color: #DC3545;
  font-size: 1.25rem;
}
.prodottiprint-multisubject-row .prodottiprint-multisubject-addremove .btn-secondary:hover .fa-plus-circle, .prodottiprint-multisubject-row .prodottiprint-multisubject-addremove .btn-secondary:focus .fa-plus-circle {
  color: #28A745;
}
.prodottiprint-multisubject-row .prodottiprint-multisubject-addremove .btn-secondary:hover .fa-minus-circle, .prodottiprint-multisubject-row .prodottiprint-multisubject-addremove .btn-secondary:focus .fa-minus-circle {
  color: #DC3545;
}
@media (max-width: 1199.98px) {
  .prodottiprint-multisubject-row {
    grid-template-rows: 1fr 1fr;
    grid-row-gap: 0.5rem;
  }
  .prodottiprint-multisubject-row .prodottiprint-multisubject-qt {
    grid-column: 1/5;
    grid-row: 1/2;
    grid-column-gap: 1rem;
  }
  .prodottiprint-multisubject-row .prodottiprint-multisubject-name {
    grid-column: 1/3;
    grid-row: 2/2;
  }
  .prodottiprint-multisubject-row .prodottiprint-multisubject-remove {
    grid-column: 3/4;
    grid-row: 2/3;
  }
  .prodottiprint-multisubject-row .prodottiprint-multisubject-add {
    grid-row: 2/3;
  }
}
.prodottiprint-multisubject-row .prodottiprint-multisubject-qt .btn-secondary {
  font-size: 14px;
}
.prodottiprint-multisubject-row .prodottiprint-multisubject-qt .prodottiprint-multisubject-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ECEBEB;
  color: #000;
  border: unset;
  height: 50px;
  border: 1px solid #ECEBEB;
}

.prodottiprint-multisubject-btn-text {
  display: none;
}

.prodottiprint-multisubject-btn-symbol {
  font-size: 2rem;
}

.prodottiprint-row-Button, .prodottiprint-row-Select, .prodottiprint-row-Input {
  border-bottom: 1px solid #ECEBEB;
}

.prodottiprint-row-variant,
.prodottiprint-row-variant .prodottiprint-default-Button,
.prodottiprint-row-variant .prodottiprint-formato,
.prodottiprint-row-variant .prodottiprint-inputcontrol {
  height: 100%;
}

.prodottiprint-row-variant .prodottiprint-inputcontrol {
  border-bottom: unset;
}

@media (max-width: 767.98px) {
  .prodottiprint-row-col {
    flex-basis: unset;
  }
}

.prodottiprint-row-Button, .prodottiprint-row-Select, .prodottiprint-row-Input {
  border-bottom: solid 1px #ECEBEB;
}

.prodottiprint-row-variant .prodottiprint-inputlabelmedia {
  margin-right: unset;
}

/*
deleted classes:
prodottiprint-inputlabel-content-media => variante-immagine
prodottiprint-inputlabel-content-text-title-label-name => vue-variante-nome-opened
prodottiprint-inputlabel-content-text-title-label-value =>vue-variante-value-closed
vue-checkbox-buttons-form-group
*/
.prodottiprint-separatore-header {
  display: flex;
  margin-bottom: 1rem;
}

.prodottiprint-separatore-header > * {
  margin-right: 0.5rem;
}

.prodottiprint-separatore-header:last-child {
  margin-right: unset;
}

.prodottiprint-separatore-header-media {
  display: flex;
  justify-content: flex-end;
  flex: 1;
  margin-right: 0;
}

.prodottiprint-separatore-header-media > *:last-child {
  margin-right: 0 !important;
}

.prodottiprint-radiobuttonconsegna-weekday,
.prodottiprint-buttonconsegna-weekday {
  background-color: #ECEBEB;
  padding: 0.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.prodottiprint-radiobuttonconsegna-monthday,
.prodottiprint-buttonconsegna-monthday {
  padding-top: 0.5rem;
  font-size: x-large;
  font-weight: bold;
  font-size: 1.5rem;
}

.prodottiprint-radiobuttonconsegna-month,
.prodottiprint-buttonconsegna-month {
  font-weight: bold;
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.prodottiprint-radiobuttonconsegna-discount,
.prodottiprint-buttonconsegna-discount {
  font-size: medium;
  width: auto;
  border-radius: 0.25rem;
  background: #DC3545;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.5rem;
}

.prodottiprint-default-Select .input-group .custom-select {
  width: 100%;
}
.prodottiprint-default-Select .input-group .prodottiprint-helptext-sottovariante {
  width: 100%;
  position: relative !important;
  margin-left: 0 !important;
  right: 0 !important;
}

#variante-consegna .prodottiprint-inputradiobutton {
  justify-content: flex-start;
}
#variante-consegna .prodottiprint-inputradiobutton div {
  height: auto;
}
#variante-consegna .prodottiprint-inputradiobutton.active, #variante-consegna .prodottiprint-inputradiobutton:hover {
  color: #000;
}
#variante-consegna .prodottiprint-inputradiobutton.active .prodottiprint-radiobuttonconsegna-weekday,
#variante-consegna .prodottiprint-inputradiobutton.active .prodottiprint-buttonconsegna-weekday, #variante-consegna .prodottiprint-inputradiobutton:hover .prodottiprint-radiobuttonconsegna-weekday,
#variante-consegna .prodottiprint-inputradiobutton:hover .prodottiprint-buttonconsegna-weekday {
  background-color: #44b1a6;
  color: #ffffff;
}

.input-group-text {
  display: block;
  color: #44b1a6;
  background-color: #ffffff;
  border: 0;
  margin-top: 1px;
}

.prodottiprint-quantitaconsegna .prodottiprint-gridquantitaconsegna {
  display: flex;
}
.prodottiprint-quantitaconsegna .prodottiprint-gridquantitaconsegna-container {
  overflow-y: hidden;
  overflow-x: visible;
  width: 100%;
}
.prodottiprint-quantitaconsegna .prodottiprint-gridquantitaconsegna-firstcolumn {
  width: calc(100px + 1rem);
  margin-top: 185px;
  border-right: 1px solid var(--light);
  padding-right: 1rem;
}
.prodottiprint-quantitaconsegna .prodottiprint-gridquantitaconsegna-formgroup {
  margin-bottom: unset;
}
.prodottiprint-quantitaconsegna .prodottiprint-gridquantitaconsegna-formradiogroup {
  display: block;
}
.prodottiprint-quantitaconsegna .prodottiprint-gridquantitaconsegna-row {
  display: grid;
  grid-column-gap: 1rem;
  margin-bottom: 1rem;
  width: 100%;
}
.prodottiprint-quantitaconsegna .prodottiprint-gridquantitaconsegna-row > * {
  min-width: 100px;
}

.prodottiprint-formato .input-group, .prodottiprint-formato .btn-group {
  margin-bottom: 1rem;
}
.prodottiprint-formato #min-max-base, .prodottiprint-formato #min-max-altezza {
  background-color: #FAFAFA;
  color: #000;
  font-size: 14px;
  border: 1px solid #ECEBEB;
  min-height: 51px;
  margin-top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 0.3rem 0.3rem 0;
  margin-left: -0.5rem;
}

.prodottiprint-formato-Button, .prodottiprint-formato-Select, .prodottiprint-formato-Input {
  border-bottom: 1px solid #ECEBEB;
}

.prodottiprint-inputlabel-action-aprichiuditoggler-icon {
  display: none;
}
.prodottiprint-inputlabel-action-aprichiuditoggler-icon-i {
  transform: rotate(90deg);
}
.prodottiprint-inputlabel-action-aprichiuditoggler-icon-i.fa-rotate-90 {
  transform: rotate(-90deg);
}
@media (max-width: 1199.98px) {
  .prodottiprint-inputlabel-action-aprichiuditoggler-icon {
    display: block;
  }
}

.prodottiprint-inputlabel-action-aprichiuditoggler-text {
  display: block;
}
@media (max-width: 1199.98px) {
  .prodottiprint-inputlabel-action-aprichiuditoggler-text {
    display: none;
  }
}

.prodottiprint-inputlabel-aprichiudi ~ .prodottiprint-inputcontrol-content .prodottiprint-helptext {
  margin: 0 0 1rem 0;
}
.prodottiprint-inputlabel-aprichiudi ~ .prodottiprint-inputcontrol-content .prodottiprint-inputcontrol-content-input {
  padding-bottom: 1.5rem;
}

.prodottiprint-quantita .prodottiprint-inputlabel-aprichiudi ~ .prodottiprint-inputcontrol-content .prodottiprint-inputcontrol-content-input {
  padding-bottom: 2rem;
}

.prodottiprint-inputlabel-content-text-title-label {
  flex-wrap: wrap;
}
.prodottiprint-inputlabel-content-text-title-label-value {
  display: none;
}

.prodottiprint-inputlabel-aprichiudi .prodottiprint-inputlabel-content-text-title-label-value {
  display: block;
}

.test-regola .regolina {
  background-color: #000000;
}

.prodottiprint-modal-custom {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 500px;
  margin: auto;
  z-index: 1;
  border-radius: 1.25rem;
  height: fit-content;
}
.prodottiprint-modal-custom .prodotti-print-confirm-title {
  font-weight: bold;
  font-size: 1.25rem;
}
.prodottiprint-modal-custom .prodotti-print-close-popup {
  position: absolute;
  top: 15px;
  right: 15px;
}

.prodottiprint-modal-custom.alert-success {
  background-color: rgba(233, 255, 230, 0.9);
  border: 1px solid #55f546;
}

.prodottiprint-modal-custom.alert-edit {
  background-color: #fff;
  border: #ECEBEB;
}

.prodottiprint-modal-custom.alert-danger, .prodottiprint-modal-custom.alert-error {
  background-color: rgba(246, 215, 217, 0.9);
  border: 1px solid #6e1c23;
}

.prodottiprint-singleposition {
  position: relative;
}
.prodottiprint-singleposition .prodotti-print-actions-footer {
  border-top: 1px solid #ccc;
}
.prodottiprint-singleposition .delete {
  color: #d0342c;
}
.prodottiprint-singleposition .btn-success {
  background-color: #33958b;
  border-color: #33958b;
}
.prodottiprint-singleposition .collapse .prodottiprint-radiobutton-media {
  display: none;
}
.prodottiprint-singleposition .collapse .carousel-cell {
  margin-bottom: 20px;
}
.prodottiprint-singleposition .prodottiprint-radiobutton-media {
  max-height: 100%;
  width: auto;
}
@media (max-width: 575.98px) {
  .prodottiprint-singleposition .prodottiprint-radiobutton-media {
    width: 100%;
    height: auto;
  }
}

.prodottiprint-inputplusmin .serigrafia-button {
  border: 2px solid #ecebeb;
  border-radius: 10px 0 0 10px;
  border-right: 0;
  background-color: #f4f4f4;
}
.prodottiprint-inputplusmin .serigrafia-button span {
  color: #000;
  font-size: 14px;
}
.prodottiprint-inputplusmin ::-webkit-input-placeholder {
  color: #cdcdcd;
}
.prodottiprint-inputplusmin ::-moz-placeholder {
  color: #cdcdcd;
}
.prodottiprint-inputplusmin ::placeholder {
  color: #cdcdcd;
}
.prodottiprint-inputplusmin ::-ms-input-placeholder {
  color: #cdcdcd;
}
.prodottiprint-inputplusmin .prodottiprint-multisubject-qt {
  -webkit-appearance: none;
}
.prodottiprint-inputplusmin .prodottiprint-multisubject-qt .serigrafia-button:nth-of-type(2) {
  border-right: 2px solid #ecebeb;
  border-left: 0;
  border-radius: 0 10px 10px 0;
}
.prodottiprint-inputplusmin .prodottiprint-multisubject-qt-input {
  width: 80px;
  transition: none;
}
@media (max-width: 575.98px) {
  .prodottiprint-inputplusmin .prodottiprint-multisubject-qt-input {
    width: 40px;
  }
}
.prodottiprint-inputplusmin .prodottiprint-multisubject-qt.selected {
  border: 2px solid #44b1a6;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.prodottiprint-inputplusmin .prodottiprint-multisubject-qt.selected .serigrafia-button {
  border: 0;
}
.prodottiprint-inputplusmin .prodottiprint-multisubject-qt.selected .prodottiprint-multisubject-qt-input {
  border: 0;
}
.prodottiprint-inputplusmin .fake-input-box.selected {
  border: 2px solid #44b1a6;
}
.prodottiprint-inputplusmin .is-invalid-border .fake-input-box.selected {
  border: 2px solid #D33543;
}
.prodottiprint-inputplusmin .danger {
  background: #f8d7da;
  border-color: #721c24;
}
.prodottiprint-inputplusmin input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.prodottiprint-inputplusmin input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.prodottiprint-inputplusmin input[type=number] {
  -moz-appearance: textfield;
}
.prodottiprint-inputplusmin .arrows .serigrafia-button {
  padding: 0;
  background-color: transparent;
  border: 0 !important;
  border-radius: 0 !important;
  line-height: 0;
  outline: none !important;
  box-shadow: none;
  margin: 0 !important;
}
.prodottiprint-inputplusmin .arrows .serigrafia-button span {
  color: #d0d0d0;
}
.prodottiprint-inputplusmin .in-grid.prodottiprint-multisubject-qt-input {
  height: 30px;
  background-color: transparent;
  border: 0;
  padding: 0;
  outline: none !important;
  box-shadow: none;
  width: 100%;
}
.prodottiprint-inputplusmin .fake-input-box {
  background-color: #ffffff;
  border: 2px solid #ecebeb;
  padding: 0rem 0.6rem;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.prodottiprint-inputplusmin .disabled-input .fake-input-box, .prodottiprint-inputplusmin .disabled-input .disabled-button {
  background-color: #efefef;
}
.prodottiprint-inputplusmin .disabled-input .input-wrapper input {
  background-color: #efefef;
  border-left: 0;
  border-right: 0;
}

#prodottiprint-tabs-taglia-colore .prodottiprint-inputplusmin .selected .input-wrapper .prodottiprint-multisubject-qt-input {
  border-right: 2px solid #44b1a6;
  border-radius: 0;
  border-left: 2px solid #44b1a6;
}
#prodottiprint-tabs-taglia-colore .prodottiprint-inputplusmin .prodottiprint-multisubject-qt.is-invalid-border.selected {
  border-color: #D33543;
}
#prodottiprint-tabs-taglia-colore .prodottiprint-inputplusmin .prodottiprint-multisubject-qt.is-invalid-border.selected .prodottiprint-multisubject-qt-input {
  border-right: 2px solid #D33543;
  border-radius: 0;
  border-left: 2px solid #D33543;
}

#prodottiprint-tabs-taglia-colore .serigrafia-button {
  border-radius: 30px 0 0 30px;
}
#prodottiprint-tabs-taglia-colore .serigrafia-button:nth-of-type(2) {
  border-radius: 0 30px 30px 0;
}
#prodottiprint-tabs-taglia-colore .prodottiprint-multisubject-qt.selected {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.prodottiprint-horizontal-list-input-single-box {
  margin-bottom: 10px;
  position: relative;
}
.prodottiprint-horizontal-list-input-single-box .prodotti-print-box-item img {
  width: 100%;
  max-width: 200px;
}
.prodottiprint-horizontal-list-input-single-box .prodotti-print-box-item:hover {
  border-color: #44b1a6;
}
.prodottiprint-horizontal-list-input-single-box .prodotti-print-box-item:hover .card-footer {
  transition: all 0.3s ease-in;
}
.prodottiprint-horizontal-list-input-single-box .prodotti-print-box-item.selected {
  transition: all 0.3s ease-in;
  border-color: #44b1a6;
}
.prodottiprint-horizontal-list-input-single-box .prodotti-print-box-item.selected .card-footer {
  border-color: #44b1a6;
  background-color: rgb(233, 255, 230);
}
.prodottiprint-horizontal-list-input-single-box .prodotti-print-box-item.selected .prodotti-print-card-custom {
  background-color: rgb(233, 255, 230);
}
.prodottiprint-horizontal-list-input-single-box .serigrafia-input.is-added {
  position: relative;
  padding: 0.5rem;
}
.prodottiprint-horizontal-list-input-single-box .is-added-icon-wrapper {
  display: block;
  position: absolute;
  top: -12px;
  right: -4px;
  color: #fff;
}
.prodottiprint-horizontal-list-input-single-box .is-added-icon-wrapper .icon-box {
  background-color: #44b1a6 !important;
  border: 1px solid #44b1a6;
  border-radius: 31px;
  width: 30px;
  height: 30px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.prodottiprint-horizontal-list-input-single-box .prodottiprint-radiobutton-media {
  height: 150px;
}
.prodottiprint-horizontal-list-input-single-box .prodottiprint-button-media {
  max-height: 100%;
  width: auto;
}
@media (max-width: 575.98px) {
  .prodottiprint-horizontal-list-input-single-box .prodottiprint-button-media {
    height: 50px;
  }
}

.prodottiprint-button-media-box {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prodottiprint-colorchoose {
  position: relative;
}
.prodottiprint-colorchoose .badge {
  background: #000;
  position: absolute;
  color: #fff;
  top: -5px;
  right: 0px;
  -webkit-border-radius: 31px;
  -moz-border-radius: 31px;
  border-radius: 31px;
  min-width: 15px;
  min-height: 15px;
  padding: 2px;
  font-size: 8px;
}
.prodottiprint-colorchoose .badge.not-available {
  background: #dd4444;
  width: 15px;
  height: 15px;
}
.prodottiprint-colorchoose .circle-color {
  width: 30px;
  height: 30px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  margin: 0 5px;
  font-size: 10px;
  cursor: pointer;
  border: 1px solid #e6e6e6;
  box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.1607843137), 0px 1px 2px rgba(0, 0, 0, 0.1607843137);
  background: 0% 0% no-repeat padding-box;
}
.prodottiprint-colorchoose .circle-color i {
  color: #555;
}
.prodottiprint-colorchoose .circle-color.selected {
  border: 1px solid #ffffff;
  box-shadow: inset 0px 1px 2px #44b1a6, 0px 1px 2px #44b1a6;
}
.prodottiprint-colorchoose .circle-color.tabs {
  width: 40px;
  height: 40px;
}

.prodottiprint-serigrafiagrid {
  position: relative;
  max-width: 100%;
}
.prodottiprint-serigrafiagrid .truncate-2-lines {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2em;
  max-height: 2.4em;
  max-width: 150px;
  white-space: initial;
}
.prodottiprint-serigrafiagrid .scroll-table-wrapper {
  overflow-x: auto;
}
.prodottiprint-serigrafiagrid .scroll-table-wrapper .fade-right {
  position: absolute;
  bottom: 5px;
  right: 0;
  width: 40px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to left, #f5f5f5, rgba(255, 255, 255, 0));
  transition: opacity 0.3s;
  opacity: 1;
}
.prodottiprint-serigrafiagrid .scroll-table-wrapper .fade-right.hidden {
  opacity: 0;
}
.prodottiprint-serigrafiagrid .table.grid-class {
  border-collapse: separate;
  border-spacing: 0;
  width: max-content;
  min-width: 100%;
  margin-bottom: 0;
}
.prodottiprint-serigrafiagrid .table.grid-class th:first-child, .prodottiprint-serigrafiagrid .table.grid-class td:first-child {
  position: sticky;
  left: 0px;
  background-color: #f9fafc;
  z-index: 2;
}
.prodottiprint-serigrafiagrid .table.grid-class .enableMaxWidth .prodottiprint-inputplusmin {
  max-width: 86px;
}
.prodottiprint-serigrafiagrid .table.grid-class .prodottiprint-inputplusmin .fake-input-box {
  height: 44px;
}
.prodottiprint-serigrafiagrid .badge {
  display: none;
}
.prodottiprint-serigrafiagrid .table.grid-class tr:first-child th {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.8rem;
}
.prodottiprint-serigrafiagrid .table.grid-class th {
  text-align: center;
}
.prodottiprint-serigrafiagrid .table.grid-class th,
.prodottiprint-serigrafiagrid .table.grid-class td {
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
}
.prodottiprint-serigrafiagrid .table.grid-class tr:last-child td:first-child {
  border-bottom-left-radius: 10px !important;
}
.prodottiprint-serigrafiagrid .table.grid-class tr:last-child td:last-child {
  border-bottom-right-radius: 10px !important;
}
.prodottiprint-serigrafiagrid .table.grid-class tr:first-child th:first-child {
  border-top-left-radius: 10px !important;
}
.prodottiprint-serigrafiagrid .table.grid-class tr:first-child th:last-child {
  border-top-right-radius: 10px !important;
}
.prodottiprint-serigrafiagrid .grid-class .prodottiprint-multisubject-qt {
  justify-content: center;
}
.prodottiprint-serigrafiagrid td.taglia-colore-combinazione {
  background: #f9fafc;
  padding: 0.3rem;
  /* width: 250px;
   .prodottiprint-multisubject-qt{
     width: 100%;
   }
   small
   {
     max-width: 250px;
     display: block;
     text-align: justify;
     text-wrap: wrap;
   }*/
}
.prodottiprint-serigrafiagrid .grid-class td {
  border: 0.5px solid #dcdcdc !important;
}
.prodottiprint-serigrafiagrid .grid-class th {
  border-top: 1px solid #dcdcdc !important;
  border-bottom: 0.5px solid #dcdcdc !important;
}
.prodottiprint-serigrafiagrid .grid-class th:first-child {
  border-left: 1px solid #dcdcdc !important;
}
.prodottiprint-serigrafiagrid .grid-class th:last-child {
  border-right: 1px solid #dcdcdc !important;
}
.prodottiprint-serigrafiagrid .grid-class .circle-color {
  width: 26px;
  height: 26px;
  font-size: 5px;
  margin: 0;
}
.prodottiprint-serigrafiagrid .grid-class .color-name {
  font-size: 0.875rem;
  font-weight: 500;
  margin-left: 4px;
}
.prodottiprint-serigrafiagrid .circle-color {
  cursor: inherit;
}

.prodottiprint-serigrafiagrid-popover-custom-box .popover {
  border: 0 !important;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 0;
}
.prodottiprint-serigrafiagrid-popover-custom-box .prodottiprint-serigrafiagrid-popover-taglia-colore-content .title {
  font-size: 14px;
}
.prodottiprint-serigrafiagrid-popover-custom-box .prodottiprint-serigrafiagrid-popover-taglia-colore-content .disponibilita h5 {
  font-size: 12px;
}
.prodottiprint-serigrafiagrid-popover-custom-box .prodottiprint-serigrafiagrid-popover-taglia-colore-content .disponibilita span {
  font-size: 12px;
  color: #44b1a6;
}
.prodottiprint-serigrafiagrid-popover-custom-box .prodottiprint-serigrafiagrid-popover-taglia-colore-content .disponibilita.poca-disponibilita span {
  font-size: 12px;
  color: #ff7f37;
}
.prodottiprint-serigrafiagrid-popover-custom-box .prodottiprint-serigrafiagrid-popover-taglia-colore-content .disponibilita.non-disponibile span {
  font-size: 12px;
  color: #bb0909;
}
.prodottiprint-serigrafiagrid-popover-custom-box .prodottiprint-serigrafiagrid-popover-taglia-colore-content .disp-futura ul {
  list-style: none;
}
.prodottiprint-serigrafiagrid-popover-custom-box .img-popover-box {
  max-height: 250px;
  width: 200px;
}
.prodottiprint-serigrafiagrid-popover-custom-box .img-popover-box .img-popover {
  max-height: 250px;
  max-width: 100%;
}

.prodottiprint-serigrafiatabs {
  /*
  #prodottiprint-tabs-taglia-colore .nav-tabs .nav-item {
    min-width: 115px;
  }
  */
}
.prodottiprint-serigrafiatabs .prodotti-print-posizioni-wrapper.hide-extra {
  height: 45px;
  overflow: hidden;
}
.prodottiprint-serigrafiatabs .prodottiprint-colorchoose.circle-color {
  margin-right: 10px;
}
.prodottiprint-serigrafiatabs .prodottiprint-circle-color-tab {
  display: block;
  width: 25px;
  height: 25px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  border: 1px solid #c9c9c9;
  background: 0% 0% no-repeat padding-box;
}
.prodottiprint-serigrafiatabs .icon-remove {
  font-size: 10px;
}
.prodottiprint-serigrafiatabs .prodottiprint-card-custom {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  margin-bottom: 15px;
}
.prodottiprint-serigrafiatabs #prodottiprint-tabs-taglia-colore .tab-content {
  -webkit-border-radius: 0 10px 10px 10px;
  -moz-border-radius: 0 10px 10px 10px;
  border-radius: 0 10px 10px 10px;
  border: 2px solid #ecebeb;
  margin: 0;
  padding: 16px;
  background: #fff;
}
@media (max-width: 575.98px) {
  .prodottiprint-serigrafiatabs #prodottiprint-tabs-taglia-colore .tab-content {
    padding: 5px;
  }
}
.prodottiprint-serigrafiatabs #prodottiprint-tabs-taglia-colore .nav-tabs {
  border-bottom: 0;
  background-color: #ecebeb;
  display: inline-flex;
  border-radius: 20px 20px 0 0;
}
.prodottiprint-serigrafiatabs #prodottiprint-tabs-taglia-colore .nav-tabs .nav-link {
  padding: 0.7rem;
}
.prodottiprint-serigrafiatabs .added-color:not(.active) .color-name {
  display: none;
}
.prodottiprint-serigrafiatabs #prodottiprint-tabs-taglia-colore li.nav-item:has(> a.active.added-color) {
  z-index: 2;
  max-width: inherit;
}
.prodottiprint-serigrafiatabs #prodottiprint-tabs-taglia-colore li.nav-item:has(> a.active.added-color) + .nav-item {
  margin-left: 0 !important;
}
.prodottiprint-serigrafiatabs #prodottiprint-tabs-taglia-colore li.nav-item:has(> a.active.added-color) + .nav-item {
  margin-left: 0 !important;
}
.prodottiprint-serigrafiatabs #prodottiprint-tabs-taglia-colore li.nav-item:has(> a.active.added-color) + .nav-item a.nav-link span.color-name {
  visibility: hidden !important;
}
.prodottiprint-serigrafiatabs .nav-tabs li:last-child .added-color .color-name {
  visibility: visible;
}
.prodottiprint-serigrafiatabs #prodottiprint-tabs-taglia-colore .nav-link {
  background-color: #ffffff;
  border: 2px solid;
  border-color: #ecebeb;
  border-radius: 20px 20px 0 0;
  position: relative;
  z-index: 1;
}
.prodottiprint-serigrafiatabs #prodottiprint-tabs-taglia-colore .nav-link:not(.active):before {
  background-color: #ecebeb;
}
.prodottiprint-serigrafiatabs #prodottiprint-tabs-taglia-colore .nav-link:not(.active):after {
  content: "";
  width: 1px;
  height: 20px;
  background: #555;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.prodottiprint-serigrafiatabs #prodottiprint-tabs-taglia-colore li.nav-item:has(+ .nav-item .active) .nav-link:after,
.prodottiprint-serigrafiatabs #prodottiprint-tabs-taglia-colore .nav-item:last-child .nav-link:not(.active):after {
  content: none;
}
.prodottiprint-serigrafiatabs #prodottiprint-tabs-taglia-colore .nav-link:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  background-color: #fff;
  height: 4px;
  z-index: 20;
}
.prodottiprint-serigrafiatabs #prodottiprint-tabs-taglia-colore .nav-link:not(.active) {
  background-color: #ecebeb;
  margin-bottom: 0;
}

.prodottiprint-positionscollapse .posizioni-stampa {
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  padding: 12px 10px;
  margin-bottom: 17px;
  position: relative;
}
.prodottiprint-positionscollapse .posizioni-stampa .fake-disabled {
  opacity: 0.65;
}
.prodottiprint-positionscollapse .title-help-tex-wraper {
  flex: 1;
}
.prodottiprint-positionscollapse .posizioni-stampa .collapse .prodottiprint-radiobutton-media {
  display: none;
}
.prodottiprint-positionscollapse .collapse .right-border {
  position: relative;
}
.prodottiprint-positionscollapse .collapse .carousel-cell {
  margin-bottom: 10px;
}
.prodottiprint-positionscollapse .posizioni-stampa .collapsed .circle-arrow span:before {
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}
.prodottiprint-positionscollapse .posizioni-stampa .not-collapsed .circle-arrow span:before {
  content: "\f106";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}
.prodottiprint-positionscollapse .title-box .step {
  font-size: 12px;
  width: fit-content;
  height: 20px;
  color: #ffffff;
  -webkit-border-radius: 31px;
  -moz-border-radius: 31px;
  border-radius: 5px;
  background-color: #44b1a6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 15px;
  padding: 3px 10px;
}
.prodottiprint-positionscollapse .completato-collapse {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -3px;
  text-align: center;
}
.prodottiprint-positionscollapse .completato-collapse span {
  background-color: #d8f2d4;
  padding: 0px 45px;
  display: inline-block;
  color: #1d1d1d;
  font-weight: 400;
  font-size: 12px;
  position: relative;
}
.prodottiprint-positionscollapse .completato-collapse span:after,
.prodottiprint-positionscollapse .completato-collapse span:before {
  width: 0;
  height: 0;
  border-bottom: 19px solid #ffffff;
  content: "";
  position: absolute;
  top: 0;
}
.prodottiprint-positionscollapse .completato-collapse span:after {
  border-left: 10px solid transparent;
  right: 0;
}
.prodottiprint-positionscollapse .completato-collapse span:before {
  border-right: 10px solid transparent;
  left: 0;
}
.prodottiprint-positionscollapse .completato-collapse.uncompleted span {
  background-color: #f2e7b7;
}
.prodottiprint-positionscollapse .arrow-box .circle-arrow {
  width: 42px;
  height: 42px;
  border-radius: 31px;
  border: 1px solid #ebebeb;
  color: #555;
  font-size: 20px;
  line-height: 41px;
  text-align: center;
}
.prodottiprint-positionscollapse .arrow-box .trash {
  cursor: pointer;
}
.prodottiprint-positionscollapse .posizione-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.prodottiprint-positionscollapse .prodottiprint-positionscollapse-collapse-box {
  border-top: 1px solid #f5f5f5;
  padding-top: 28px;
  margin-top: 15px;
}
.prodottiprint-positionscollapse .prodottiprint-positionscollapse-img-posizione {
  margin-right: 5px;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  padding: 10px;
  width: 90px;
  height: 90px;
}
.prodottiprint-positionscollapse .collapse .right-border:after {
  content: "";
  width: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  background: #ccc;
}
.prodottiprint-positionscollapse .collapse .right-border:last-child:after {
  content: none;
}

.toggle-height i {
  color: #CECECE;
  line-height: 0.4;
  position: relative;
  top: 8px;
}

.prodottiprint-positionstabs .prodotti-print-posizioni-wrapper {
  gap: 10px;
  transition: all 0.3s ease-in;
}
.prodottiprint-positionstabs .prodotti-print-posizioni-wrapper.hide-extra {
  height: 194px;
  overflow: hidden;
  padding-top: 12px;
}
@media (max-width: 575.98px) {
  .prodottiprint-positionstabs .prodotti-print-posizioni-wrapper.hide-extra {
    height: 240px;
  }
}
.prodottiprint-positionstabs #prodotti-print-tabs-dimensione-lavorazioni {
  /*.nav-tabs {
    li:nth-child(n+2){
      margin-left: -40px;
    }
  }*/
}
.prodottiprint-positionstabs #prodotti-print-tabs-dimensione-lavorazioni .nav-link:not(.active) {
  background-color: #ecebeb;
  margin-bottom: 0;
  border: 2px solid #ecebeb;
}
.prodottiprint-positionstabs #prodotti-print-tabs-dimensione-lavorazioni .added-position:not(.active) .position-name {
  width: 40px;
  text-overflow: ellipsis;
  display: none;
  white-space: nowrap;
}
.prodottiprint-positionstabs #prodotti-print-tabs-dimensione-lavorazioni li:last-child .added-position .position-name {
  visibility: visible;
  width: auto;
}
.prodottiprint-positionstabs .prodotti-print-img-lavorazione {
  display: block;
  width: 25px;
  height: 25px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  border: 1px solid #555;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.prodottiprint-positionstabs .prodotti-print-blocco {
  position: relative;
}
.prodottiprint-positionstabs .section-title {
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 20px;
}
.prodottiprint-positionstabs #prodotti-print-tabs-dimensione-lavorazioni .nav-tabs .nav-item {
  position: relative;
}
.prodottiprint-positionstabs #prodotti-print-tabs-dimensione-lavorazioni .tab-content {
  -webkit-border-radius: 0 10px 10px 10px;
  -moz-border-radius: 0 10px 10px 10px;
  border-radius: 0 10px 10px 10px;
  border: 1px solid #ecebeb;
  margin: 0;
  padding: 16px;
  background: #fff;
}
.prodottiprint-positionstabs #prodotti-print-tabs-dimensione-lavorazioni .nav-tabs {
  border-bottom: 0;
  background-color: #ecebeb;
  display: inline-flex;
  border-radius: 20px 20px 0 0;
}
.prodottiprint-positionstabs #prodotti-print-tabs-dimensione-lavorazioni .nav-link:not(.active):after {
  content: "";
  width: 1px;
  height: 20px;
  background: #555;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.prodottiprint-positionstabs #prodotti-print-tabs-dimensione-lavorazioni li.nav-item:has(+ .nav-item .active) .nav-link:after,
.prodottiprint-positionstabs #prodotti-print-tabs-dimensione-lavorazioni .nav-item:last-child .nav-link:not(.active):after {
  content: none;
}
.prodottiprint-positionstabs #prodotti-print-tabs-dimensione-lavorazioni .nav-tabs .nav-link {
  padding: 0.7rem;
  -webkit-border-radius: 15px 15px 0 0;
  -moz-border-radius: 15px 15px 0 0;
  border-radius: 15px 15px 0 0;
}
.prodottiprint-positionstabs .remove-tab-icon {
  position: absolute;
  right: 10px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  height: fit-content;
}

.prodottiprint-posizionistampa .prodottiprint-helptexticon {
  color: #000;
}
.prodottiprint-posizionistampa .help-text {
  background-color: #F7F7F7;
  padding: 1rem;
  border-radius: 0.3rem;
  margin: 0 0 1rem 0;
}
.prodottiprint-posizionistampa .help-text p {
  margin-bottom: 0;
}

.prodottiprint-serigrafiatabs .help-text {
  background-color: #F7F7F7;
  padding: 1rem;
  border-radius: 0.3rem;
  margin: 0 0 1rem 0;
}
.prodottiprint-serigrafiatabs .help-text p {
  margin-bottom: 0;
}

.prodottiprint-serigrafia {
  position: relative;
}
.prodottiprint-serigrafia .color-name {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 16px;
}
.prodottiprint-serigrafia .alert-qta-min {
  border: 1px solid #777;
  background-color: #f8f7f4;
  width: fit-content;
  display: block;
  border-radius: 5px;
  margin-bottom: 10px;
}

.prodottiprint-colorsize .btn-success {
  background-color: #33958b;
  border-color: #33958b;
}
.prodottiprint-colorsize .img-prodotto-wrapper {
  position: relative;
  padding: 15px;
}
.prodottiprint-colorsize .img-prodotto-wrapper .img-prodotto {
  height: 300px;
}
.prodottiprint-colorsize .img-prodotto-wrapper .img-prodotto img {
  width: auto;
  max-height: 100%;
  max-width: 100%;
}
@media (max-width: 575.98px) {
  .prodottiprint-colorsize .img-prodotto-wrapper .img-prodotto img {
    width: 100%;
  }
}
.prodottiprint-colorsize .img-prodotto-wrapper .zoom-icon {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
}
.prodottiprint-colorsize .taglia-qta-box {
  background-color: #f5f7f7;
  padding: 30px 20px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.prodottiprint-colorsize .taglia-qta-box ul {
  padding-left: 0;
}
.prodottiprint-colorsize .taglia-qta-box ul li {
  margin: 15px 0 5px;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 10px;
}
.prodottiprint-colorsize .taglia-qta-box ul li:first-child {
  margin-top: 0;
}
.prodottiprint-colorsize .taglia-qta-box ul li:last-child {
  margin-bottom: 0;
}
.prodottiprint-colorsize .taglia-qta-box h6 {
  font-size: 13px;
}
.prodottiprint-colorsize .giacenza-prod {
  display: flex;
  font-size: 13px;
  color: #a2a2a2;
  margin-left: 1rem;
}
.prodottiprint-colorsize .label-taglia {
  width: 50px;
  margin-right: 0.3rem;
}
.prodottiprint-colorsize .actions-footer {
  border-top: 1px solid #dedede;
}
.prodottiprint-colorsize .delete {
  color: #d0342c;
}

.prodottiprint-inputgroup-list .prodotti-print-fake-title {
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e6e6e6;
}
.prodottiprint-inputgroup-list .prodotti-print-list-items-wrapper .prodotti-print-items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.prodottiprint-inputgroup-list .prodotti-print-list-items-wrapper .vedi-tutti-box {
  cursor: pointer;
}
.prodottiprint-inputgroup-list .title-box h5 {
  font-size: 14px;
  font-weight: 500;
}
.prodottiprint-inputgroup-list .title-box .step {
  font-size: 12px;
  width: fit-content;
  height: 20px;
  color: #ffffff;
  -webkit-border-radius: 31px;
  -moz-border-radius: 31px;
  border-radius: 5px;
  background-color: #44b1a6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 15px;
  padding: 3px 10px;
}
.prodottiprint-inputgroup-list .title-box.disabledCol span {
  background-color: #b9b9b9;
}
.prodottiprint-inputgroup-list .disabledCol h5 {
  color: #b9b9b9;
}

.prodottiprint-inputcheckboxbutton .prodottiprint-checkbox-infobox-btn {
  background: unset;
  border: unset;
  margin: unset;
  padding: unset;
}

.prodottiprint-listselectedelements ul {
  list-style: none;
}
.prodottiprint-listselectedelements ul li:after {
  content: "-";
  margin-left: 5px;
  margin-right: 5px;
}
.prodottiprint-listselectedelements ul li:last-child:after {
  content: none !important;
}

.prodottiprint-radiobutton .serigrafia-input {
  border-color: #ECEBEB;
}
.prodottiprint-radiobutton .serigrafia-input .prodottiprint-radiobutton-text {
  color: #3f3f47;
}
@media (max-width: 575.98px) {
  .prodottiprint-radiobutton .serigrafia-input .prodottiprint-radiobutton-text {
    font-size: 10px;
  }
}
.prodottiprint-radiobutton .serigrafia-input.active {
  background: #ffffff !important;
}
.prodottiprint-radiobutton .serigrafia-input:hover {
  border-color: #44b1a6;
  background: #ffffff;
}
.prodottiprint-radiobutton .serigrafia-input:hover .prodottiprint-radiobutton-text {
  color: #3f3f47;
}

.prodottiprint-posizionistampa .posizioni-stampa.completed .prodottiprint-inputradiobutton.serigrafia-input.active {
  background-color: #ffffff !important;
  border-color: #44b1a6;
  /*.prodottiprint-radiobutton-text{
    color:#fff;
  }*/
}

.prodottiprint-posizionistampa .prodottiprint-positionstabs .posizioni-stampa.completed .prodottiprint-inputradiobutton.serigrafia-input { /*
&.active {
  &:before {
    content: "";
    display: block;
    position: absolute;
    top: -12px;
    right: -4px;
    background-color: #c2e6bd;
    font-size: 25px;
    width: 30px;
    height: 30px;
    border-radius: 31px;
    border: 1px solid #9dd995;
  }
  &:after {
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    content: "\f00c";
    display: block;
    position: absolute;
    top: -10px;
    right: 2px;
    color: #fff;
    font-size: 18px;
  }
}*/ }
.prodottiprint-posizionistampa .dimensioni-box {
  height: 100px;
  display: flex;
  align-items: center;
}
.prodottiprint-posizionistampa .dimensioni-box span {
  display: block;
  margin: auto;
  border: 2px dashed #44b1a6;
}
.prodottiprint-posizionistampa .serigrafia-input.active .dimensioni-box span {
  border-color: #fff;
}
.prodottiprint-posizionistampa .serigrafia-input:hover .dimensioni-box span {
  border-color: #fff;
}

.serigrafia-input, .prodottiprint-positionscollapse-img-posizione {
  position: relative;
}
.serigrafia-input .modal-img .zoom-icon, .prodottiprint-positionscollapse-img-posizione .modal-img .zoom-icon {
  position: absolute;
  z-index: 2;
  top: 2px;
  right: 2px;
}
.serigrafia-input .modal-img .zoom-icon i, .prodottiprint-positionscollapse-img-posizione .modal-img .zoom-icon i {
  color: #000;
}

@media (max-width: 575.98px) {
  .prodottiprint-horizontal-list-input-single-box .prodottiprint-button-text {
    padding: 0;
    font-size: 12px;
  }
}
.prodottiprint-horizontal-list-input-single-box .prodottiprint-inputcheckboxbutton {
  position: relative;
}

.prodottiprint-button-grid .prodottiprint-horizontal-list-input-single-box .prodottiprint-button-text {
  height: auto !important;
}
@media (max-width: 575.98px) {
  .prodottiprint-button-grid .prodottiprint-horizontal-list-input-single-box .prodottiprint-button-text {
    padding: 0;
    font-size: 12px;
  }
}
.prodottiprint-button-grid .prodottiprint-horizontal-list-input-single-box .serigrafia-input {
  border-color: #ECEBEB;
  box-shadow: none !important;
  height: 100%;
}
.prodottiprint-button-grid .prodottiprint-horizontal-list-input-single-box .serigrafia-input .prodottiprint-button-text {
  color: #3f3f47;
}
.prodottiprint-button-grid .prodottiprint-horizontal-list-input-single-box .serigrafia-input.active {
  background: #ffffff !important;
}
.prodottiprint-button-grid .prodottiprint-horizontal-list-input-single-box .serigrafia-input:hover {
  border-color: #44b1a6;
  background: #ffffff;
}
.prodottiprint-button-grid .prodottiprint-horizontal-list-input-single-box .serigrafia-input:hover .prodottiprint-button-text {
  color: #3f3f47;
}
.prodottiprint-button-grid .prodottiprint-horizontal-list-input-single-box .serigrafia-input.is-added {
  background: #ffffff !important;
  border-color: #44b1a6;
  /*.prodottiprint-button-text {
    color:#fff;
  }*/
}

.prodottiprint-radiobutton .serigrafia-input {
  border-color: #ECEBEB;
}
.prodottiprint-radiobutton .serigrafia-input .prodottiprint-radiobutton-text {
  color: #3f3f47;
}
.prodottiprint-radiobutton .serigrafia-input.active {
  background: #ffffff !important;
}
.prodottiprint-radiobutton .serigrafia-input:hover {
  border-color: #44b1a6;
  background: #ffffff;
}
.prodottiprint-radiobutton .serigrafia-input:hover .prodottiprint-radiobutton-text {
  color: #3f3f47;
}

.posizioni-stampa .prodottiprint-radiobutton.prodottiprint-radiobutton-disabled.no-hover:hover label {
  border: 2px solid #ECEBEB !important;
}

.prodottiprint-modal-img img {
  max-height: 500px;
}

.tooltip-custom-storefront-prodottiprint-colorchoose {
  text-transform: capitalize;
  font-size: 12px;
}

.tooltip-custom-storefront-prodottiprint-colorchoose-second-span {
  color: #dd4444;
  font-size: 12px;
}

.tooltip-custom-storefront-wrapper {
  line-height: 1.25rem;
}

.popover-future-stocks .popover-header {
  background: #44b1a6;
}
.popover-future-stocks .estimate_text {
  font-size: 8px;
}

.prodottiprint-formatoforme-box .singola-forma {
  margin-bottom: 15px;
}
.prodottiprint-formatoforme-box .singola-forma .forma img {
  max-height: 100%;
}
.prodottiprint-formatoforme-box .singola-forma .forma.circolare img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.prodottiprint-formatoforme-box .singola-forma .forma.ovale img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.prodottiprint-formatoforme-box .labelator > .preview > div > .preview-pro {
  margin-bottom: 40px;
}
.prodottiprint-formatoforme-box .labelator > .preview > div > .preview-pro .sticker-container {
  justify-content: center;
  display: flex;
}
.prodottiprint-formatoforme-box .labelator .preview {
  flex-direction: column;
  align-items: center;
  display: flex;
}
.prodottiprint-formatoforme-box .labelator .preview .preview-pro .sticker-wrapper {
  width: 100%;
  height: 180px;
  align-items: flex-end;
}
.prodottiprint-formatoforme-box .labelator .preview .preview-pro .sticker-wrapper .sizes {
  position: absolute;
  transform: rotate(-90deg);
  top: 45%;
  left: -52px;
  font-size: 13px;
}
.prodottiprint-formatoforme-box .labelator .bobroll {
  height: 190px;
  width: 250px;
}
.prodottiprint-formatoforme-box .preview-pro {
  width: 100%;
  position: relative;
  text-align: center;
  align-items: center;
  display: flex;
}
.prodottiprint-formatoforme-box .preview-pro span {
  position: absolute;
  text-align: center;
}
.prodottiprint-formatoforme-box .sticker-container {
  width: 100%;
  height: 100%;
  align-items: center;
  display: flex;
}
.prodottiprint-formatoforme-box .sticker-container > div {
  display: flex;
  position: absolute;
}
.prodottiprint-formatoforme-box .sticker-container .stk {
  height: 100%;
  position: relative;
  transition: all 0.4s ease-in-out;
  max-width: 100%;
  max-height: 100%;
  display: flex;
}
.prodottiprint-formatoforme-box .sticker-container .stk > div {
  position: relative;
  background-color: #44b1a6;
  transition: all 0.4s ease-in-out;
  border: 2px solid #44b1a6;
  width: 100%;
}
.prodottiprint-formatoforme-box .sticker-container .logo {
  position: absolute;
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMjYuOCAyNTUuMSI+PHBhdGggZD0iTTE0Mi42IDE0LjFsNzAgMjI2LjhoLTYxLjVsLTEwLjgtMzguMkg4MS45TDcxLjQgMjQxSDE0LjJMODEuOSAxNC4xaDYwLjd6bS0yNS41IDkyLjdsLTYuNi0zNC4zaC0uOGwtNi4yIDM0LjMtMTIuNCA2MC41aDQwLjZsLTE0LjYtNjAuNXoiIGZpbGw9IiMyMjIyMjEiLz48L3N2Zz4=) no-repeat 50%;
  opacity: 0.85;
}
.prodottiprint-formatoforme-box .preview-pro.ovale .sticker-container .stk > div {
  border-radius: 50% !important;
}
.prodottiprint-formatoforme-box .preview-pro.circolare .sticker-container .stk > div {
  border-radius: 50% !important;
}
.prodottiprint-formatoforme-box .rubg {
  background-position: 50%;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABAQMAAAAl21bKAAAAA1BMVEWen56xmYC2AAAACklEQVQI12NgAAAAAgAB4iG8MwAAAABJRU5ErkJggg==);
  background-repeat: repeat-x;
}
.prodottiprint-formatoforme-box .rul {
  width: 10px;
  height: 100%;
  background-repeat: repeat-y;
  border-top: 1px solid #9e9f9e;
  border-bottom: 1px solid #9e9f9e;
}
.prodottiprint-formatoforme-box .rul.lt {
  display: flex;
  align-items: center;
  left: -23px;
}
.prodottiprint-formatoforme-box .rul.lt > div {
  transform: rotate(-90deg);
  top: 50%;
  position: absolute;
  /*margin-left: -15px;*/
  margin-top: -12px;
}
.prodottiprint-formatoforme-box .rul.rt {
  right: -23px;
}
.prodottiprint-formatoforme-box .rul.rt > div {
  transform: rotate(-90deg);
  top: 50%;
  position: absolute;
  margin-left: -15px;
  margin-top: -12px;
  margin-left: 5px;
}
.prodottiprint-formatoforme-box .rul.tp {
  left: 0;
  bottom: -23px;
  width: 100%;
  height: 10px;
  border: 0;
  border-left: 1px solid #9e9f9e;
  border-right: 1px solid #9e9f9e;
  background-repeat: repeat-x;
}
.prodottiprint-formatoforme-box .rul.tp > div {
  width: 100%;
  margin-top: 12px;
  text-align: center;
  white-space: nowrap;
  font-size: 13px;
}
.prodottiprint-formatoforme-box .bobroll {
  width: 160px;
  height: 134px;
  max-width: 100%;
  position: relative;
  background-repeat: no-repeat;
  background-position: top;
  box-sizing: border-box;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPoAAAC+CAYAAAAcJRJHAAAAw3pUWHRSYXcgcHJvZmlsZSB0eXBlIGV4aWYAAHjabVBbEsMgCPznFD2CPFQ8jmmSmd6gxy8GzCRtd8YFWWcFYHu/dngMEApIrlpaKckgTRp1SzQ5+sGY5OADew8N73VYthDISmyR/aol3s86ngYeumX5YqTPEJa70CT89cuIPPDoaORrGLUwYnIBw6DHCKVpvY5wTjChfmCQ6L3tn3u17a3Z/mGijZGTMbN4AzwOA3dLsjGy2kPkarlEZXZiC/m3pwn4AACOWd0rh1XaAAABhGlDQ1BJQ0MgcHJvZmlsZQAAeJx9kT1Iw0AcxV9TiyKVgnYQcchQXbSLiuhWq1CECqFWaNXB5PoJTRqSFBdHwbXg4Mdi1cHFWVcHV0EQ/ABxdXFSdJES/5cUWsR4cNyPd/ced+8AoVFhqtkVA1TNMlKJuJjJrordrwigHyGMYVZmpj4nSUl4jq97+Ph6F+VZ3uf+HH25vMkAn0gcY7phEW8QT29aOud94jAryTnic+Jxgy5I/Mh1xeU3zkWHBZ4ZNtKpeeIwsVjsYKWDWclQiaeIIzlVo3wh43KO8xZntVJjrXvyFwbz2soy12kOI4FFLEGCCAU1lFGBhSitGikmUrQf9/APOX6JXAq5ymDkWEAVKmTHD/4Hv7s1C5MTblIwDgRebPtjBOjeBZp12/4+tu3mCeB/Bq60tr/aAGY+Sa+3tcgRENoGLq7bmrIHXO4Ag0+6bMiO5KcpFArA+xl9UxYYuAV619zeWvs4fQDS1FXyBjg4BEaLlL3u8e6ezt7+PdPq7wfzrHLanmOGMAAADXppVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+Cjx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IlhNUCBDb3JlIDQuNC4wLUV4aXYyIj4KIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+CiAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIgogICAgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIKICAgIHhtbG5zOkdJTVA9Imh0dHA6Ly93d3cuZ2ltcC5vcmcveG1wLyIKICAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIKICAgIHhtbG5zOnRpZmY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vdGlmZi8xLjAvIgogICAgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIgogICB4bXBNTTpEb2N1bWVudElEPSJnaW1wOmRvY2lkOmdpbXA6NDQ1YzllODAtNTUwMy00MjQzLTgxNWEtZmI2ZDhlMTE5MzA5IgogICB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjcwZTVjOTNhLWI5OTAtNDJhMC1iYmRlLTE0NTE0ZDhiZGQxNyIKICAgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOmJlNmYxYWYwLTFkZTAtNDNmMC1iNGUxLTYyODEyMjI3YTNiZiIKICAgR0lNUDpBUEk9IjIuMCIKICAgR0lNUDpQbGF0Zm9ybT0iTWFjIE9TIgogICBHSU1QOlRpbWVTdGFtcD0iMTY4NDQyNDcxNTUzMTkyNSIKICAgR0lNUDpWZXJzaW9uPSIyLjEwLjM0IgogICBkYzpGb3JtYXQ9ImltYWdlL3BuZyIKICAgdGlmZjpPcmllbnRhdGlvbj0iMSIKICAgeG1wOkNyZWF0b3JUb29sPSJHSU1QIDIuMTAiCiAgIHhtcDpNZXRhZGF0YURhdGU9IjIwMjM6MDU6MThUMTc6NDU6MTQrMDI6MDAiCiAgIHhtcDpNb2RpZnlEYXRlPSIyMDIzOjA1OjE4VDE3OjQ1OjE0KzAyOjAwIj4KICAgPHhtcE1NOkhpc3Rvcnk+CiAgICA8cmRmOlNlcT4KICAgICA8cmRmOmxpCiAgICAgIHN0RXZ0OmFjdGlvbj0ic2F2ZWQiCiAgICAgIHN0RXZ0OmNoYW5nZWQ9Ii8iCiAgICAgIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6Y2M0YWEzOWMtMmEzYi00MDkyLWI1MzQtYTZiZDczNGE4ZjE0IgogICAgICBzdEV2dDpzb2Z0d2FyZUFnZW50PSJHaW1wIDIuMTAgKE1hYyBPUykiCiAgICAgIHN0RXZ0OndoZW49IjIwMjMtMDUtMThUMTc6NDU6MTUrMDI6MDAiLz4KICAgIDwvcmRmOlNlcT4KICAgPC94bXBNTTpIaXN0b3J5PgogIDwvcmRmOkRlc2NyaXB0aW9uPgogPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgIAo8P3hwYWNrZXQgZW5kPSJ3Ij8+s+o9OQAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB+cFEg8tD06skb0AAA5LSURBVHja7d1vbBtpQsfx3zMz9thOHNeO08Zp2m7b3dO+6O5qYVWQFi0gVkJsiWdXWpCQeIfEiRN/7iQkkA6x/Fvew3ES3AmJNwikE6qariKOE+IQBxynXfYF6nWJaGjqxmnqjP9m4pnx84cXrU3a7d3ttk48SX8fydp006Tjsb+eZ8Z+ZgSIngLLy8tlABUAZQAlY8ysEKIAYN4YkwfgCiFcY4wLwL3/Y5EQIjLGRPe/7gG4Y4zpCCF8AC0ADQCb1Wp1O8n3X/ApQEfF1atXC8aYzxhjfkII8bwx5jyAc5ZlnbJtG47jwLZtCCFgWRaEEKM/P3wDAGPMx25KKRhjoLUe/VlKCaUUtNY1ADeEEGsAPjLGfBPAqud5HYZO9BhWVlbcwWBwSgjxQ8aYn7Es63XHcRbvB21c1xXpdBqu68K27QNZJqUUoihCHMeIoshIKYVSCkqpmlLqH4QQXzfGfCiEqFWr1YihEz3kvffeSyml5gG8LoT4Bdu2X3Mcx87lcnY+nxeO44y2xEljjIGUEr1ezwRBoJRSUin1z8aYvwHwT47jbF66dGnA0OlpjTtjjHlea/2rlmW9bdt2Np/PpwuFwmjofRgNh/6dTge9Xi9WSvWNMX8H4M+EENeXlpZChk5H2vLysm2MmRdCfFEI8fOO4xRnZ2etbDYLy7KO5H3WWqPf78P3fS2lbBljvqa1flcIsel5nmLodJQCdwB4AH7Ptu3nS6WSk8vl4DjOU7UelFIIggDNZlMqpf7bGPMOgCue50mGTofW1atX81rrPxBC/Fw2mz05OzsL13W5YgBEUQTf99Hv9zcAfE0I8c7S0lKXodOhcfnyZce27d8G8PmZmZnZY8eOIZVKccU8QhzH6HQ66Ha7TWPMl7XWf/jWW28NGDol2pUrVz4L4J3p6elKqVRCOp3mSvmEwbdaLfR6vU0Av+953l8wdEriMP0zxpivplKp1+bm5pDNZrlSHkO/30ej0cBgMPgWgF+qVqurDJ0SYXl5+bMAvnzs2DF7dnaWK2QMms0m2u22NMZ8rlqtfpWh0yQDTwP4kuM4v1ypVDhM34fh/ObmJqSUX7Ft+9cvXboUMXQ66Mgzxph/yWQyrywsLBzZ98EnTWuNer2OMAz/UwjxY9Vqtc/Q6UCsrKy4UspvTk1N/ej8/DxXyAG4c+cOgiD4D8dxfvyNN954YMvOl1jaj8gdKeXXc7ncoYt870y1w2Z+fh65XO5HpJRXV1ZWHvikkcOnJY2blPLXMpnMa0mNfBhxGIbY3d1FEASI43g0DB4Nd+9PWbVtG7lcDlNTU8jlcg9MZU1i7PV6/fUwDD8H4E85dKf92i+/aFnWt8+cOSOStk/ebrfR7XbR7/cRx/FoXvrej9k+HPDwRUFrPZxzDsdx4LoupqenUSqVEvcxXa01bt26pZVSr1ar1W8zdBqry5cvC9u2bywsLJxNynvkYRii0Wig2733yVHHcWBZ1hMdGBzOPhuedGJ6ehqzs7OYmZlJzGOxu7uLer1+q1wun3311Vc1h+40NrZtV13XTUTkSincuXMHzWYTqVQKruuObbg9HM7bto10Oo04jnHr1i1ks1lUKhXkcrmJ3/9cLodMJnPa9/0lAFd4MI7Gue/7x+VyeeLLEQQBrl+/jm63i1wuh1Qqta/71I7jIJvNQkqJtbU1bG1tJeLxmJ2dhTHmjzh0p3Hum5+1bXvtmWeemehy9Ho9rK+vI51OH9gppB4e1kdRhEKhgJMnT078oN3NmzdhjPlhbtFpXE/wn8xkMhNdBikl1tfXkclkJhL5cFifyWTQ6XQQBMHEH5dMJgOt9U8xdBrXE/zcpI8+b21tjc7qOmmu6+LmzZsPvF03Cfd3WwoMncZlcZLzyYUQ6Ha7iZnTPnyxkVJOdDkcx4ExZp6h07icm/TWS0qZuA+yTHqdaK0hhJAMncalM8mtlzEG+Xx+4lvQRw2dJ/3iB6DG0GlcoQ2GHyOdlBMnTmAwGCRifURRhPn5+YkdFByK4xjGmIih09j2ScMwnOgyZLNZzM3NTXw54jiGbdsolUoTf1zCMLz3UV8+RWlcQ2fHcdBqtSa+VT9+/Dj6/T6UUge+DqIoQjqdxnPPPTfx+fd7HwuGTmMzNTWFTmfi1xPE3NwcTp8+PQpvvw+IGWMwGAwQhiHK5TLOnz+fiJNsdDodTE1NAeA0VRoj13UhpYTv+5j0eeFmZmYwMzODRqOBVquFfr+PVCr1xBNa9sattR4dEygUCqhUKhPfJx/yfR/DM+zu7u4ydBqvcrmMWq2GfD6fiPPDzc3Njfbbt7a2EIYhwjAcTUoZRj98W27v23N7Tz6x97LJUsrRVNW5uTkUi8VEPQZxHKPX6+HixYtYX1/nFp3Gz3EcVCoV1Ot1nDp1KjFbuEwmgzNnzgC4N7Ot2+1iZ2cHURSN5pkDjz7xxHC2WiaTQS6XQ6FQQFKv3qqUwubmJl566aUHrnjD0GlfoioWi6jVajh9+nTiTgpp2zaKxeJoS/zwlnuvR23pk0prjdu3b+P8+fMfmxvP0GlfFAoFAECtVsPi4mJituyPsjfiw3opZqXUKPJKpfKx7/OoO+1r7KVSCbVaDVEUcYXskyiKUKvV8Oyzzz4ycm7Rad/l83k4joN6vY5SqTTa0tN4tNtttNttvPjii9933TJ02nfZbBaLi4uo1+vY2dnB8ePHeeXUJzQYDLC1tQUhBF555ZUfeB07hk4HIpVK4cyZM2i1WqjVag8cDKNPvxVvNps4d+4cFhcXP9FxBYZOB6pYLGJ6ehrb29tYW1tDuVxO1NlTk6zX62F7exvFYhEXL178VFejZeg0ka17pVJBFEXwfR++76NcLmNqaorXZ3uI1hpBEGB7exuFQgEvv/wy8vn8p/49DJ0mxnVdLCwsIAxDNJtNNBoNHDt2DPl8/qnfh5dSotvtot1uo1gsPnbgDJ0SI5PJYGFhAVpr+L6Per0+mubpum6i34MfJ6UUoihCs9kEcO/jxBcuXBjL/WfolBiWZWFubm40G8z3fURRBMdxUCwWJ3p21/2MOwxDtFotaK0xMzODF154Ablcbqy7MQydEkcIgXQ6jUqlMpoh1m630Wg0YFkWpqenUSgUYFnWofsk23DWW7vdHp0OulQq4cKFC8jlcvv2QuYsLy9bxhheyIGehAYg9uNSw5ZlwXVdnDhxAsYYSCkRRRG2trYQxzEsy0IqlRpd6TQpp3seRi2lRL/fRxAEkFLCGIOZmRmcPHlyNMPvIA5AOgD+RAjxs3yu0hM63mw2D+wMM8NZZcNpo7u7uzDGQAiBVCoF27aRSqWQTqfhui5c1923oLTWiKJodJNSjmbE5fN5FItFnDp1arQsk3ghcgDMnT179pkkXDOLaFzhKaVGB7d2dnbg+z52d3ehtR6dfGI49N97vfO9Xw/noO/9ejj0Ht4sy0IulxtdUTWTyYyCHl7zbT9GOo+1j+667uiUM0RHdb9/+CIwGAwgpcRgMBhtebXWD8S8N/rhddQtyxqNFBzHGZ2xZvhC8L2G70nAg3H0VNgbbzqdHtvZb5IS8g881sGnANHRx9CJGDoRMXQiYuhExNCJiKETEUMnIoZORAydiKETEUMnIoZORAydiBg6ETF0ImLoRMTQiRg6ETF0ImLoRMTQiYihExFDJyKGTkQMnYihcxUQMXQiYuhExNCJiKETEUMnIoZORAydiBg6EUMnIoZORAydiBg6ETF0ImLoRMTQiYihEzF0ImLoRMTQiYihExFDJyKGTkQMnYgYOhFDJyKGTkQMnYgYOhExdCJi6ETE0ImIoRMRQydi6ETE0ImIoRMRQycihk5EDJ2IGDoRMXQihk5EDJ2IGDoRMXQiYuhExNCJiKETEUMnYuhExNCJiKETEUMnIoZORAydiBg6ETF0ImLoRAydiBg6ETF0ImLoRMTQiYihExFDJyKGTsTQiYihExFDJyKGTkQMnYgYOhExdCJi6EQMnYgYOhExdCJi6ETE0ImIoRMRQycihk5EDJ2IoRMRQycihk5EiQrdGMO1QMQtOhEdVkopaK1jSwjBtUF0RMVxDCGEz6E70RHW7/dhjPkuh+5ER1QQBOj3+13P8z7k0J3oiLp9+zYA/DnAg3FER5KUEnfv3oVlWX8F8O01oiNpdXUVUsq/XFpaus4tOtER1Gw2cffuXV8I8ZvD/8fQiY6QMAxx7do1DeCnq9Vqm6ETHTFRFOGDDz4wSqkvVKvVD/Z+j6ETHZHI33//fTMYDH7XGPOlh7/vcBURHW6tVgvXrl2DlPJXtNZfefPNNw1DJzoihBBYXV3FxsZGaIypep73je/1dxk60SHU6XTw0UcfYXd391tCiF/0PG/9+/19hk50iEgpsba2ho2NDQghfsfzvHc/yc8xdKJDYmNjAzdu3IDWegXAb1Sr1f/5pD/L0IkSTGuNZrOJ1dVVxHH8jwC+UK1W/+vT/h6GTpQwQgiEYYhGo4EbN24oY8y/A/itarX6b4/7Oxk6UUIopRAEAdbW1tDpdHyt9d9blvV5IYS/tLT0RJNSGDrRhOOOogjr6+vY3t4OlFIfAvgigO94nheO699h6EQHxBgDYwyUUmg0GtjY2NBRFMVSylvGmHeFEMtxHHfefvvtsU8pZehE+xQ1cO+cbe12G77vIwgCE8exiuO4LoT4a2PM3wK443ne3f1eHoZO9ISiKEIQBNjZ2UEQBIiiCFEUIY5jSCk7AP5VCPGeMeY7ANY9z9s+6GV0hBDwfR+DwYCPGNF9WuvRzRgDrTWUUpBSQkqJwWAw+q/W2gD4XwAfCiHeN8Z8F8AtIUTN8zw/CffHAfCNRqPRbDQafHSJ/l8fQBfAzp7h+I4QYksIsaW17gEIhBAtz/PaSb8z/wcoOTAJmNkSXQAAAABJRU5ErkJggg==) no-repeat bottom left;
  background-size: 100% 100%;
}
.prodottiprint-formatoforme-box .bobroll .preview-pro {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  z-index: 1;
}
.prodottiprint-formatoforme-box .bobroll .preview-pro.fronte_retro .sticker-container.dir180 > div {
  flex-direction: row-reverse;
}
.prodottiprint-formatoforme-box .bobroll .sticker-wrapper {
  left: 0;
  bottom: 0;
  padding: 5%;
  position: absolute;
  /*height: 63.184357541899% !important;*/
  height: 75% !important;
  width: 65.4189944134% !important;
}
.prodottiprint-formatoforme-box .bobroll .sticker-container.alignsotto {
  display: flex;
  align-items: flex-end;
}
.prodottiprint-formatoforme-box .bobroll .sticker-container.alignsopra {
  display: flex;
  align-items: flex-start;
}
.prodottiprint-formatoforme-box .bobroll .sticker-container.aligncentro {
  display: flex;
  align-items: center;
}
.prodottiprint-formatoforme-box .bobroll .sticker-container div {
  transition: all 0.5s ease-in-out;
}
.prodottiprint-formatoforme-box .bobroll .forefront {
  display: none;
}
.prodottiprint-formatoforme-box .rul.siderul {
  position: absolute;
  bottom: 0;
  left: -15px;
  width: 10px;
  height: 142px;
}
.prodottiprint-formatoforme-box .rul.siderul > div {
  /*margin-left: -22px;*/
  left: -40px;
}
.prodottiprint-formatoforme-box .sticker-container.alignsotto .stk {
  align-self: flex-end;
  align-items: flex-end;
}
.prodottiprint-formatoforme-box .sticker-container.alignsopra .stk {
  align-self: flex-start;
  align-items: flex-start;
}
.prodottiprint-formatoforme-box .sticker-container.aligncentro .stk {
  align-self: center;
  align-items: center;
}
.prodottiprint-formatoforme-box .sticker-wrapper {
  padding: 0;
  height: 75.2%;
  width: 80%;
}
.prodottiprint-formatoforme-box .sideinterno .sticker-wrapper {
  top: 0.5%;
  width: 90%;
  height: 83% !important;
}
.prodottiprint-formatoforme-box .no-rulers .rul {
  display: none !important;
}
.prodottiprint-formatoforme-box .sticker-container.dir0 > div .logo {
  transform: rotate(0deg);
}
.prodottiprint-formatoforme-box .sticker-container.dir90 > div .logo {
  transform: rotate(90deg);
}
.prodottiprint-formatoforme-box .sticker-container.dir180 > div .logo {
  transform: rotate(180deg);
  justify-content: flex-end;
}
.prodottiprint-formatoforme-box .sticker-container.dir270 > div .logo {
  transform: rotate(270deg);
}
.prodottiprint-formatoforme-box .bobroll.sideinterno {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPoAAAC+CAYAAAAcJRJHAAAAw3pUWHRSYXcgcHJvZmlsZSB0eXBlIGV4aWYAAHjabVDBDcMgDPwzRUfAnAEzDmmI1A06fg2YKGl7EmfjQ4dt196vwz06ArHjmCWVlLyCC5dQNRE/UQeT58EDRzWN7nW3NROClqAR8yrJ3q86nQYzVM3ixUieJmx3obD5y5dRmAG9o57vZlTMCGEKZAbVRkhF8nWEc4IFmcd1Yrm3/XPPur096j8IoYHglQGeDaAfOFRNojJB9CEha86jwlhmupB/e1pwHwBsWdxSRNb4AAABhGlDQ1BJQ0MgcHJvZmlsZQAAeJx9kT1Iw0AcxV9TiyKVgnYQcchQXbSLiuhWq1CECqFWaNXB5PoJTRqSFBdHwbXg4Mdi1cHFWVcHV0EQ/ABxdXFSdJES/5cUWsR4cNyPd/ced+8AoVFhqtkVA1TNMlKJuJjJrordrwigHyGMYVZmpj4nSUl4jq97+Ph6F+VZ3uf+HH25vMkAn0gcY7phEW8QT29aOud94jAryTnic+Jxgy5I/Mh1xeU3zkWHBZ4ZNtKpeeIwsVjsYKWDWclQiaeIIzlVo3wh43KO8xZntVJjrXvyFwbz2soy12kOI4FFLEGCCAU1lFGBhSitGikmUrQf9/APOX6JXAq5ymDkWEAVKmTHD/4Hv7s1C5MTblIwDgRebPtjBOjeBZp12/4+tu3mCeB/Bq60tr/aAGY+Sa+3tcgRENoGLq7bmrIHXO4Ag0+6bMiO5KcpFArA+xl9UxYYuAV619zeWvs4fQDS1FXyBjg4BEaLlL3u8e6ezt7+PdPq7wfzrHLanmOGMAAADXppVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+Cjx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IlhNUCBDb3JlIDQuNC4wLUV4aXYyIj4KIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+CiAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIgogICAgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIKICAgIHhtbG5zOkdJTVA9Imh0dHA6Ly93d3cuZ2ltcC5vcmcveG1wLyIKICAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIKICAgIHhtbG5zOnRpZmY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vdGlmZi8xLjAvIgogICAgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIgogICB4bXBNTTpEb2N1bWVudElEPSJnaW1wOmRvY2lkOmdpbXA6N2Y1MzA4ZjgtY2VhNC00Yjg4LWIzNWItYmM5YzJkY2U2YjgxIgogICB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjUxYzgxM2ZjLWNmZmQtNDIxMi1iYWFiLTdiOGVjZmQzZDE5MyIKICAgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOjFiNjg1OWE0LWExMGItNGU2Ni04ZTA0LWY1ZmFlMzRkYzExZSIKICAgR0lNUDpBUEk9IjIuMCIKICAgR0lNUDpQbGF0Zm9ybT0iTWFjIE9TIgogICBHSU1QOlRpbWVTdGFtcD0iMTY4NDQyNDc0MTI4NDIxMyIKICAgR0lNUDpWZXJzaW9uPSIyLjEwLjM0IgogICBkYzpGb3JtYXQ9ImltYWdlL3BuZyIKICAgdGlmZjpPcmllbnRhdGlvbj0iMSIKICAgeG1wOkNyZWF0b3JUb29sPSJHSU1QIDIuMTAiCiAgIHhtcDpNZXRhZGF0YURhdGU9IjIwMjM6MDU6MThUMTc6NDU6NDArMDI6MDAiCiAgIHhtcDpNb2RpZnlEYXRlPSIyMDIzOjA1OjE4VDE3OjQ1OjQwKzAyOjAwIj4KICAgPHhtcE1NOkhpc3Rvcnk+CiAgICA8cmRmOlNlcT4KICAgICA8cmRmOmxpCiAgICAgIHN0RXZ0OmFjdGlvbj0ic2F2ZWQiCiAgICAgIHN0RXZ0OmNoYW5nZWQ9Ii8iCiAgICAgIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6ZWJiN2IzMTktNWZiZi00NThiLWI1ZjMtMDJkZTliMzczMjIxIgogICAgICBzdEV2dDpzb2Z0d2FyZUFnZW50PSJHaW1wIDIuMTAgKE1hYyBPUykiCiAgICAgIHN0RXZ0OndoZW49IjIwMjMtMDUtMThUMTc6NDU6NDErMDI6MDAiLz4KICAgIDwvcmRmOlNlcT4KICAgPC94bXBNTTpIaXN0b3J5PgogIDwvcmRmOkRlc2NyaXB0aW9uPgogPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgIAo8P3hwYWNrZXQgZW5kPSJ3Ij8+FUrCHQAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB+cFEg8tKZyhFEAAABGVSURBVHja7d1bbBzXfQbw78zM3rlL7ZLLi0TSsi6+inRtCAxQB2jSFHABmbsSUCQtkKYoem9QwEVf+lLkITGKFgXSS1q0AfpUFGmRGAbXsqCkD06COjbsFrJEy5Yp8X5dkcu9c2Zn58zpg7VbypZtKdrLUPx+AAHKkujR2fnmf2bmXASIDoBMJtMPYBhAP4CEUqpPCNELYEgpFQUQEEIElFIBAIFbf60mhKgppWq3vi8D2FRKFYUQOQB5AFsANlKp1LaX//0ik8k8C+Ahngr0gNAAjAE4rpQ6DuCYpmmjuq7DMAzoug4hBDRNgxCi+euPfgGAUupjX1JKKKXgum7z147jQEoJ13VXAMwJIeYBXFNK/RjAbDqdLnoh6P8RiUS+EgwGeYqQ5zVCKKWEaZqo1WpwXReapjWDbBgGAoEA/H4/AoEAdF3vyLFJKVGr1WDbNmq1mnIcR0gpIaVckVL+SAjxQ6XUJSHESiqVqnU86I899thXhoaGeBaRZymlYNs2CoUCNjc3UalUoOs6QqEQotEoDMNoXgS8eOyO46BcLqtqtSqllI6U8idKqe8BeM0wjI0zZ87U23kMBk8h8irXdWGaJlZXV5HL5QAAkUgEvb29iMfjng32nXohPp8PiURCJBIJQylluK77XLFYfK5cLttSSjOTybwE4DtCiPenpqYsVnR64Ct3vV7H0tIStre34bou+vr6EAqFoGnaA31By+VyruM4eaXU913XfVEIsZFOp2VLKrpSSvD0Ii8EPJfLYXFxEZZlIR6PY2hoCIbx4Hc6NU1DJBJBJBLRpJR91Wr1D3d2dn5XSvnB9PT0NwBMp9Nph1132reklFhcXMTNmzehaRr6+voQCAQObHvouo5YLIZYLGbUarUnc7ncD0zTXMtkMt8XQnxjamqqxKDTvqrgKysrWFlZQTAYxODgIHw+Hxtmj0AggMOHD8O27SPFYvGFUqn0tenp6X90Xfeb586du6eHdxqbkzptc3MTb7zxBrLZLIaGhjAwMMCQfwq/349kMonR0dFENBr9C03Tlqanp/+AFZ08yTRNzM7OolKpIJlMIhQKsVHuMfCDg4OIxWLDW1tb/5zJZL4K4HdSqdTs3VR0PoyjttvY2MBbb70FpRTGxsYY8vsQCoUwNjaGeDz+eSHE1Uwm83vsulPX78WvX7+Oubk5jIyMoK+vj43SIolEAiMjI4ZhGN/NZDL/8uqrrwYYdOo413Vx6dIlbG9vY3R0FH6/n43Shu786OgoAoHA7zuO87NMJhNi0KmjIb98+TKklBgZGXlgB7t4gaZpGBkZQU9PzzMAXrtw4UKAQaeOdNdnZmZQr9ex30Zc7p2ptt8MDQ0hHA5/znGcVy5cuHDbg3Y+daeWW19fh2maOHz4sGfDDACWZWF3dxfVahW2bTd7Ig2NKau6riMcDiMSiSAcDt82ldWLYV9fX/8Vy7L+GMDfM+jUFpVKBfPz8xgbG/NcGAqFAkqlEkzThG3bzXnpe4fZfvSYXdeF67rI5/PNsfeNabA9PT1IJBKeGqYrhMDw8LBYXl7+diaTeSuVSr3JoFPLK+W7776LwcFBz9yTW5aFra0tlEofjhw1DAOapiEcDt/Tz9F1vTmopzHtNJfLIZvNoqenB319fYjFYp65Zx8YGNDW19f/8/XXX3/42WefdRl0apmdnR0opTzxjlxKic3NTezs7MDn8yEQCLSsh9Hozuu6Dr/fD9u2sby8jFAohOHh4Xu+iLRDOBxGMBgcy+VyUwCmOWCGWnbyz83Nob+/v+vHUq1W8f7776NUKiEcDsPn87X1NsIwDIRCITiOg/n5eWSzWU98Jn19fVBKfYtdd2oZ0zRhWRa6vSRZuVzG0tIS/H5/x5aQ2ht4Xdexvb2Ner2OI0eOdPU5RSgUgmEYp86fP/8MX69RS5RKpa532R3HwdLSEoLBYMdDvrdnEwwGUSwWUa1Wu/65BINBuK77JQadWlbRu/30OZvNNld17bZAIIDFxcXbXtd1w63bll6tcRUiuh+WZXV1qqkQAqVSyTPTXRuZchynq8dhGAaUUkOs6NSSk9o0za5XL8dxPFe0ut0mrutCCOEw6NSyytHN6qWUQjQa7XoFvVPXudsXPwArDDq1TGMYabcMDg6iXq97oi1qtRqGhoa69lBw72eilLL5Hp1a1n23LKurxxAKhZBMJrt+HLZtQ9d1JBKJrn8ulmVB0zTOXqPWdZ2DwSDy+XzXq/rAwABM04SUsuNtUKvV4Pf7cfLkya4PA258FkopBp1ap7+/H8Vi1/cTRDKZxNjYWDN47X4g1th0wrIs9Pf34/jx454Y618sFhGJRABwZBy1UCwWQ61WQy6X6/qSUbfWRsfW1hby+TxM04TP5/uwG9uCEDZ2VG08E+jt7cXw8HDX78kbcrkcEokE/H4/dnd3GXRqbWU7ceIE3n77bUSjUU8sHZVMJpv37dlsFpZlwbKs5qSURugbr+X2vp7bu/jE3m2THcdpTlVNJpOIx+Oe+hxs20a5XMbk5CSWlpZY0an1AoEAJiYmcPnyZYyOjnqmwgWDQTz00EMAPpzZViqVUKlUUKvVGnubA7jzwhON2WrBYBDhcBi9vb2e3b1VSomNjQ089dRTt+14w6BTW7rNx48fx9zcHMbGxjy3Xpyu64jH481K/NHKvdedKr1Xua6L1dVVHD9+/GNz4xl0aovGMlLz8/MYGRnxTGW/k70h3q/DwaWUzZAPDw9/7PcZdGpr2HVdx+zsLIaHhw/05ontVKvVsLGxgZMnT37iYpwGOGCG2mhwcBDBYBBXrlxBPB5Hb28vG6WFCoUCCoUCJiYmPrVt+R6d2q63txenT59GtVrF2tqaZ4ap7mf1eh2rq6uoVqs4ffr0Z15A2XWnjgiFQpicnMTq6irm5+dvexhG917Fd3Z2cOzYMYyMjNzVcwVWdOoYIQRGR0cxOTkJIQTm5+ebq7PSZyuXy1hYWAAATE5OYnR09K4fHrKiU1eq+/j4eHMN+IWFBfT39yMSiXDrpo9wXRfVahXb29vo7e3F008/jWg0es8/x2hcaYk6raenBxMTEyiVSlhcXMTi4iIOHTqEaDTqmZViusVxHJRKJRQKBcTj8Z874Kzo5BmxWAwTExOQUmJhYaG5XHIikUAgEPD0O/hWklKiVqthZ2cHwIeThE6dOtWSfz+DTp6h6zpOnDiBY8eOwTRNzM/PY3t7G5qmIR6Pd3V113aG27Is5PN5uK6LWCyG8fFxhMPhlt7GMOjkOZqmIRKJYHx8HFJKmKaJlZUVrK2tNbv8vb290DRt3912Nma9FQqF5nLQiUQCp06dQjgcbtuFjANmyPNVvqenB48//nhzWmipVEI2m0WxWIQQAj6fD+FwuBkUr4S/sUebaZqoVqtwHAdKKcRiMRw5cqQ5w68TDyBZ0WlfVfrG1NBkMtlcWMK2beTzeeTzeZTLZWia1twU0e/3IxAIIBAItC1QruuiVqs1vxzHac6Ii0ajiMfjGB0dbR5LNy5EDDrtW41dUYLBIGKxGI4ePdpc7aVxAbAsC5VKBblcDru7u3Bdt7n4RKPrv3e/873fN+ag7/2+0fVufDV2Zm3sqBoMBpuBbuz59tEZcd3AoNMDoxEon8/3sddzjfA2uv+O46Berzcrr+u6t4V5b+gb+6jv7SkYhtFcsWbv//uTjolBJ+rgRUAIAb/f37LVb7wS5M+87eEpQHQAnm+wCYgYdCJi0IlovwSdA2aIWNGJiEEnIgadiBh0IupQ0PkwjogVnYgYdCJi0ImIQSciBp2IGHQiYtCJiEEnOlBB54AZIlZ0ImLQiYhBJyIGnYgYdCJi0ImIQSciBp3oQAWdA2aIWNGJiEEnov0R9Mbe0UTEik5EDDoRMehExKATEYNORPcZdD5yJ2JFJyIGnYgYdCJi0ImIQSciBp2IGHQiYtCJDlTQOWCGiBWdiBh0ImLQiYhBJyIGnYgYdCJi0Ino/4PO9+hErOhExKATEYNORAw6ETHoRNSqoPOpO9FBqOjcTZWIXXciYtCJiEEnIgadiBh0ImLQiYhBJ6Jm0PkSnYgVnYgYdCJi0ImIQSeiTgWdk1qIWNGJiEEnov0QdPbbiVjRiYhBJyIGnYgYdCJi0ImIQSciBp2IGHSiAxV0DpghYkUnIgadiBh0ImLQiYhBJyIGnYgYdCJi0IkOVNA5YIbowaZY0YkOSEVXbAYi3qMTEe/RiYgVnYhY0YmoM0Hnwzi6b9y/j113esAppSCEgFKsGV78bFzXdbibKrWmYmgaXNdlQ3gw6ABsVnRqCV3XIaVkQ3iMlBJCiF0GnVrC7/fDtm02hMc4jgOl1A6DTi0Ler1eZ0N4zK3PZNsQQuiXL19mi9B9SyQSbASPqdVq0DRtxUilUl9ic9D9mp6e/gXLsi6xJbzDdV3Yto10Or3Crju1yg3LsviKzUOKxSKUUpcBvkenFkmn0xXXdRer1SobwyPy+Tw0Tfsxg06tdv7mzZtsBW9V9NcYdGq1i4VCga3gAUopVKtVCCEuMejUUpqm/W+lUlEcIeeNbnu9Xp9NpVLLDDq11NTU1KaU8s1sNsvG6LLl5WUIIf6ueRFmk1ArCSG+ubKywqfvXeS6LsrlsgRwgUGndt0bvm6aZp3DYbtnbW0NUsqfpVKpRQad2iKdTpeUUn917do1lvQuVfOVlRWplPrTvf+dQad2+E6hUKibpsmW6LCtrS3Ytr1gGMYVBp3aKpVKZZVSL87MzPBevYMcx8Hs7GwdQOrMmTN1Bp064W92d3ez+XyeLdEhi4uLkFJejMVi1z76eww6tauq7wohvnb16lXJ6avtVy6Xsba2VlZK/cYXvvAFxaBTx/j9/v+SUv7gypUr7MK3Ub1exzvvvCOVUr+WTqfvONmAQae2ee655xSA3yyXy+8uLy+zQdpkZmYGUsrvplKpH33Sn2HQqd1d+LqU8osLCwvlzc1NNkiLzc7OolQq/beU8k8+7c8x6NR2586d21ZKff7atWsWw946169fx/r6+v8IIX713LlzkkGnrkun01cAPPvBBx+YDHtrQr66uvqmEOKXp6amPnMRAC7oTh31yiuvPKmU+snIyEjfiRMn2CD3yHVdzMzMIJfLvWoYxpeff/753bv5eww6dSPsA0qplw8dOvSL4+Pj0HWdjXIXdnd3ceXKFViW9ddCiD+fmpq661cZDDp1xcWLFw3btv/W5/N9/dFHH0V/fz8b5RMopbC+vo4bN27sKqW+mkqlXr7Xn8GgU1dlMpkvAvjXZDL58MmTJ+H3+9kojXAKgXK5jPfeew/VavWiUurXz549W/y5fhabk7ptenraEEL8E4Dfevjhh/2HDx+Gz+c70G1imiYWFxeRzWZXlVIvpNPpl+7rosHTjLzi5Zdf7tc07Xuapv3S0aNHfcPDwweqwiulYNs25ubmsLW1lVdKfRvAX6ZSKee+ewc8vchjXXmhlBoF8G+6rn8uGo0GHnnkEYRCIWjag/k2WEqJQqGAGzduwLKsolLqH5RSL6bTaatltwE8tcijgdeEEP1KqT8D8Ed+vz8cj8f1sbGxByL0ruuiUChgeXkZlUql5jjOslLqBSHET1OpVKXl9/s8pcjrzp8/H5BSHhVC/LZS6ut+vz8UDof1gYEBDAwMwDAMCOHtU1kpBcuysLm5iVwup0zTlFLKawC+BeCnrutunj17tm0zfxh02ldeeukl3TCMo0KIJ5RSXxZCnA0EAj2RSERFIhERi8UQjUYRDAa7epyVSgXlchnlctmtVqva7u4ubNueFUL8u1LqhwDm0+n0VqeOh0GnfW96evoRIcQTAJ5QSj0G4BlN0570+XxofBmGAZ/PByEEdF2HEAKapt3TYB2lFFzX/dhXvV5HvV6H4zio1+uo1WoVAG8IIa4CuC6EeB/A1VQq1bVtbBh0emDv8ZVSI5qmxVzXDd8614WmaQNKqcMAEgBiSqkeIcTd3vA7AIq3vtSt8BeEEOsAbiqlygDynazUd+v/ADGRgv8Lgfr6AAAAAElFTkSuQmCC) no-repeat bottom left;
  background-size: 100% 100%;
}
.prodottiprint-formatoforme-box .bobroll.sideinterno .forefront {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 9999;
}
.prodottiprint-formatoforme-box .preview .content {
  display: flex;
  justify-content: center;
}
.prodottiprint-formatoforme-box .sub-type-verso .v-auto-align-item {
  height: auto;
}
.prodottiprint-formatoforme-box .sub-type-verso label {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.prodottiprint-formatoforme-box .sub-type-avvolgimento .v-auto-align-item {
  height: auto;
}
.prodottiprint-formatoforme-box .sub-type-avvolgimento .sticker-container .stk > div .prodottiprint-formatoforme-box .sub-type-verso .sticker-container .stk > div {
  border-width: 1px;
  border-radius: 2px;
}
.prodottiprint-formatoforme-box .sub-type-avvolgimento label {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.prodottiprint-formatoforme-box .logo {
  background-image: url(https://www.vg7printdemo.it/cms/images/preview_placeholder.png) !important;
  background-size: contain !important;
}
.prodottiprint-formatoforme-box .svg-changer {
  height: 100px;
}

.label-full-preview {
  position: relative;
  right: 0;
  width: 100%;
}

.prodottiprint-valuesformato .etichette-formgroup .input-group-prepend {
  border: 2px solid #ecebeb;
  border-right: 0;
  border-radius: 0.25rem 0 0 0.25rem;
}
.prodottiprint-valuesformato .etichette-formgroup .input-group-append {
  border: 2px solid #ecebeb;
  border-left: 0;
  border-radius: 0 0.25rem 0.25rem 0;
  background-color: #ddd;
}
.prodottiprint-valuesformato .etichette-formgroup .input-group-append .input-group-text {
  background-color: #f7f7f7;
}
.prodottiprint-valuesformato .etichette-formgroup .form-control {
  border-left: 0;
}
.prodottiprint-valuesformato .etichette-formgroup .no-border-x-is-valid.is-valid,
.prodottiprint-valuesformato .etichette-formgroup .no-border-x-is-valid.is-invalid {
  border-left: 0;
  border-right: 0;
}
.prodottiprint-valuesformato .valid-input.etichette-formgroup .input-group-prepend,
.prodottiprint-valuesformato .valid-input.etichette-formgroup .input-group-append {
  border-color: #a5cb2c;
}
.prodottiprint-valuesformato .valid-input.false.etichette-formgroup .input-group-prepend,
.prodottiprint-valuesformato .valid-input.false.etichette-formgroup .input-group-append {
  border-color: #d33543;
}

.prodottiprint-inputcontrol-content-input .hide-disabled-element .prodottiprint-radiobutton-disabled {
  display: none;
}

#dettagli-calcolo-modal .modal-header {
  display: flex;
  align-items: center;
  background-color: #213033 !important;
}
#dettagli-calcolo-modal .modal-header .prodottiprint-dettaglicalcolo-title {
  font-weight: 400;
  font-size: 1rem;
}
#dettagli-calcolo-modal .modal-header .prodottiprint-dettaglicalcolo-buttonclose {
  background-color: transparent;
}
#dettagli-calcolo-modal .modal-body h6.tecnici {
  font-size: 1.3125rem;
}
#dettagli-calcolo-modal .modal-body h6.economici {
  font-size: 1.3125rem;
}
#dettagli-calcolo-modal .modal-body table tr.legenda td {
  background-color: #d8ddde;
  font-weight: bold;
}
#dettagli-calcolo-modal .modal-body table td.header, #dettagli-calcolo-modal .modal-body table td.header + td.value {
  background-color: #d8ddde;
}
#dettagli-calcolo-modal .modal-body .with-border-right::after {
  content: "";
  width: 3px;
  height: 100%;
  background: #ECEBEB;
  position: absolute;
  top: 0;
  right: 0;
}

.prodottiprint-gridflyeralarm {
  display: flex;
}

.prodottiprint-gridflyeralarm-container {
  overflow-y: hidden;
  overflow-x: visible;
  width: 100%;
}

.prodottiprint-gridflyeralarm-firstcolumn {
  width: calc(100px + 1rem);
  padding-right: 1rem;
}

.prodottiprint-gridflyeralarm-formgroup {
  margin-bottom: unset;
}

.prodottiprint-gridflyeralarm-formradiogroup {
  display: block;
}

.prodottiprint-gridflyeralarm-row {
  display: grid;
  grid-column-gap: 1rem;
  margin-bottom: 1rem;
  width: 100%;
}

.prodottiprint-gridflyeralarm-row > * {
  min-width: 100px;
}

.prodottiprint-flyeralarm .shippings-box {
  background-color: #e8f4ff;
  border: 1px solid #92deff;
  /*.single-shipping:not(:first-child) {
    background: #000;
  }*/
}

/* ----------- Ex style.scss ----------- */
.b-avatar,
.dropdown-title {
  text-transform: none;
}

.grid-view table tbody tr td {
  cursor: pointer;
}
.grid-view .form-check-input {
  margin-left: 0px;
}

#vg7_global_search {
  min-width: 500px;
}

#documento-form #topbar .col-sm-2 ul {
  margin-top: 4px;
}
#documento-form #document-content {
  background: #fff;
  border: none;
}
#documento-form #document-content .card {
  border: none;
}
#documento-form #document-content #collapseDettagli {
  border: none;
}
#documento-form #totali-tab a {
  padding: 15px;
  color: #fff;
}
#documento-form .col-sm-10 > div {
  /*@include tabs_container;*/
}

#vg7_global_search {
  min-width: 500px;
}

#top-nav .navbar-brand {
  padding: 0px;
}
#top-nav .navbar-brand img {
  height: 36px;
}

#main_container #dati-anagrafica .client-avatar {
  width: 124px;
}
#main_container #dati-anagrafica .lista-aziende {
  line-height: 16px;
}
#main_container #dati-anagrafica .tickets div.bl {
  text-align: right;
  background: #e2e2e2;
}
#main_container #dati-anagrafica .tickets div {
  min-height: 40px;
}
#main_container .pagination {
  justify-content: flex-end;
}
#main_container .pagination .page-item a {
  color: #384456;
  background: none;
  border: none;
}
#main_container .pagination .page-item.active a {
  background: #44b1a6;
  border-radius: 4px;
  color: #fff;
}
#main_container .edit-table-pen {
  position: relative;
  display: block;
}
#main_container .edit-table-pen .fa-pen {
  width: 12px;
  height: 12px;
  display: block;
  color: #ccc;
}
#main_container .edit-table-block {
  top: 10px;
  right: 3px;
  position: absolute;
  font-size: 12px;
}
#main_container main .jumbotron {
  padding: 10px;
  border-radius: 0;
}
#main_container .second-fixed-black {
  width: auto;
  min-width: 1000px;
  height: 54px;
  color: #fff;
  margin: 0;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  z-index: 1010;
  margin-bottom: 15px;
  padding-right: 7px;
  padding-left: 7px;
  font-size: 18px;
  position: fixed;
  top: 52px;
}
#main_container .second-fixed-black .icona-help {
  margin-left: 5px;
  margin-right: auto;
  background: #0a8ee8;
  width: 22px;
  height: 22px;
  border-radius: 11px;
  font-size: 10px;
  text-align: center;
  line-height: 22px;
  cursor: pointer;
  display: inline-block;
}
#main_container .second-fixed-black .row {
  margin-right: 0px;
}
#main_container .second-fixed-black #breadcrumb {
  display: inline-block;
  color: #7e818f;
}
#main_container .second-fixed-black #breadcrumb a {
  color: #fff;
}
#main_container .second-fixed-black .btn {
  color: #ffffff;
  background-color: #221e1f;
  border-color: #221e1f;
}
#main_container .second-fixed-black .btn:hover {
  color: #221e1f;
  background-color: #ffafb8;
  border-color: #ffafb8;
}
#main_container .second-fixed-black .btn .fas, #main_container .second-fixed-black .btn .fab, #main_container .second-fixed-black .btn .fa {
  color: #E2001A;
}
#main_container .second-fixed-black #yw0 {
  color: #ffffff;
  background-color: #221e1f;
  border-color: #221e1f;
}
#main_container .second-fixed-black #yw0:hover {
  color: #221e1f;
  background-color: #ffafb8;
  border-color: #ffafb8;
}
#main_container .second-fixed-black #yw0 .fas, #main_container .second-fixed-black #yw0 .fab, #main_container .second-fixed-black #yw0 .fa {
  color: #E2001A;
}
#main_container .second-fixed-black a, #main_container .second-fixed-black button {
  margin: 0px 3px;
}
#main_container .second-fixed-black nav {
  margin-right: auto;
  padding: 0rem 1rem;
}
#main_container .second-fixed-black nav ol.breadcrumb {
  font-size: 14px;
  color: #858796;
}
#main_container .second-fixed-black nav ol.breadcrumb a {
  color: #858796;
}
#main_container .second-fixed-black nav ol.breadcrumb li.active {
  color: #fff;
}
#main_container .second-fixed-black .btn-floating {
  width: 35px;
  height: 35px;
}
#main_container .second-fixed-black .btn-floating i {
  font-size: 10px;
  line-height: 37px;
}
#main_container .second-fixed-black div.legenda {
  display: inline-block;
}
#main_container .second-fixed-black ~ div {
  position: relative;
  z-index: 10;
}
#main_container .second-fixed-black .md-form {
  display: inline-block;
}
#main_container .second-fixed-black .jumbotron {
  background: none;
  border-radius: 0px;
}
#main_container .second-fixed-black > div:first-child {
  margin-right: auto;
}
#main_container .second-fixed-black > b:first-child {
  margin-right: auto;
}
#main_container .second-fixed-black > h1 {
  margin-right: auto;
  font-size: 18px;
}
#main_container .second-fixed-black #breadcrumb {
  margin-right: auto;
}
#main_container fieldset > legend:not(.no-second-fixed-bar) {
  width: auto;
  min-width: 1000px;
  height: 54px;
  color: #fff;
  margin: 0;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  z-index: 1010;
  margin-bottom: 15px;
  padding-right: 7px;
  padding-left: 7px;
  font-size: 18px;
  position: fixed;
  top: 52px;
}
#main_container fieldset > legend:not(.no-second-fixed-bar) .icona-help {
  margin-left: 5px;
  margin-right: auto;
  background: #0a8ee8;
  width: 22px;
  height: 22px;
  border-radius: 11px;
  font-size: 10px;
  text-align: center;
  line-height: 22px;
  cursor: pointer;
  display: inline-block;
}
#main_container fieldset > legend:not(.no-second-fixed-bar) .row {
  margin-right: 0px;
}
#main_container fieldset > legend:not(.no-second-fixed-bar) #breadcrumb {
  display: inline-block;
  color: #7e818f;
}
#main_container fieldset > legend:not(.no-second-fixed-bar) #breadcrumb a {
  color: #fff;
}
#main_container fieldset > legend:not(.no-second-fixed-bar) .btn {
  color: #ffffff;
  background-color: #221e1f;
  border-color: #221e1f;
}
#main_container fieldset > legend:not(.no-second-fixed-bar) .btn:hover {
  color: #221e1f;
  background-color: #ffafb8;
  border-color: #ffafb8;
}
#main_container fieldset > legend:not(.no-second-fixed-bar) .btn .fas, #main_container fieldset > legend:not(.no-second-fixed-bar) .btn .fab, #main_container fieldset > legend:not(.no-second-fixed-bar) .btn .fa {
  color: #E2001A;
}
#main_container fieldset > legend:not(.no-second-fixed-bar) #yw0 {
  color: #ffffff;
  background-color: #221e1f;
  border-color: #221e1f;
}
#main_container fieldset > legend:not(.no-second-fixed-bar) #yw0:hover {
  color: #221e1f;
  background-color: #ffafb8;
  border-color: #ffafb8;
}
#main_container fieldset > legend:not(.no-second-fixed-bar) #yw0 .fas, #main_container fieldset > legend:not(.no-second-fixed-bar) #yw0 .fab, #main_container fieldset > legend:not(.no-second-fixed-bar) #yw0 .fa {
  color: #E2001A;
}
#main_container fieldset > legend:not(.no-second-fixed-bar) a, #main_container fieldset > legend:not(.no-second-fixed-bar) button {
  margin: 0px 3px;
}
#main_container fieldset > legend:not(.no-second-fixed-bar) nav {
  margin-right: auto;
  padding: 0rem 1rem;
}
#main_container fieldset > legend:not(.no-second-fixed-bar) nav ol.breadcrumb {
  font-size: 14px;
  color: #858796;
}
#main_container fieldset > legend:not(.no-second-fixed-bar) nav ol.breadcrumb a {
  color: #858796;
}
#main_container fieldset > legend:not(.no-second-fixed-bar) nav ol.breadcrumb li.active {
  color: #fff;
}
#main_container fieldset > legend:not(.no-second-fixed-bar) .btn-floating {
  width: 35px;
  height: 35px;
}
#main_container fieldset > legend:not(.no-second-fixed-bar) .btn-floating i {
  font-size: 10px;
  line-height: 37px;
}
#main_container fieldset > legend:not(.no-second-fixed-bar) div.legenda {
  display: inline-block;
}
#main_container fieldset > legend:not(.no-second-fixed-bar) ~ div {
  position: relative;
  z-index: 10;
}
#main_container fieldset > legend:not(.no-second-fixed-bar) .md-form {
  display: inline-block;
}
#main_container fieldset > legend:not(.no-second-fixed-bar) .jumbotron {
  background: none;
  border-radius: 0px;
}
#main_container fieldset > legend:not(.no-second-fixed-bar) > div:first-child {
  margin-right: auto;
}
#main_container fieldset > legend:not(.no-second-fixed-bar) > b:first-child {
  margin-right: auto;
}
#main_container fieldset > legend:not(.no-second-fixed-bar) > h1 {
  margin-right: auto;
  font-size: 18px;
}
#main_container fieldset > legend:not(.no-second-fixed-bar) #breadcrumb {
  margin-right: auto;
}
#main_container .sticky-bar > legend:not(.no-second-fixed-bar) {
  width: auto;
  min-width: 1000px;
  height: 54px;
  color: #fff;
  margin: 0;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  z-index: 1010;
  margin-bottom: 15px;
  padding-right: 7px;
  padding-left: 7px;
  font-size: 18px;
  position: fixed;
  top: 52px;
  justify-content: flex-start;
}
#main_container .sticky-bar > legend:not(.no-second-fixed-bar) .icona-help {
  margin-left: 5px;
  margin-right: auto;
  background: #0a8ee8;
  width: 22px;
  height: 22px;
  border-radius: 11px;
  font-size: 10px;
  text-align: center;
  line-height: 22px;
  cursor: pointer;
  display: inline-block;
}
#main_container .sticky-bar > legend:not(.no-second-fixed-bar) .row {
  margin-right: 0px;
}
#main_container .sticky-bar > legend:not(.no-second-fixed-bar) #breadcrumb {
  display: inline-block;
  color: #7e818f;
}
#main_container .sticky-bar > legend:not(.no-second-fixed-bar) #breadcrumb a {
  color: #fff;
}
#main_container .sticky-bar > legend:not(.no-second-fixed-bar) .btn {
  color: #ffffff;
  background-color: #221e1f;
  border-color: #221e1f;
}
#main_container .sticky-bar > legend:not(.no-second-fixed-bar) .btn:hover {
  color: #221e1f;
  background-color: #ffafb8;
  border-color: #ffafb8;
}
#main_container .sticky-bar > legend:not(.no-second-fixed-bar) .btn .fas, #main_container .sticky-bar > legend:not(.no-second-fixed-bar) .btn .fab, #main_container .sticky-bar > legend:not(.no-second-fixed-bar) .btn .fa {
  color: #E2001A;
}
#main_container .sticky-bar > legend:not(.no-second-fixed-bar) #yw0 {
  color: #ffffff;
  background-color: #221e1f;
  border-color: #221e1f;
}
#main_container .sticky-bar > legend:not(.no-second-fixed-bar) #yw0:hover {
  color: #221e1f;
  background-color: #ffafb8;
  border-color: #ffafb8;
}
#main_container .sticky-bar > legend:not(.no-second-fixed-bar) #yw0 .fas, #main_container .sticky-bar > legend:not(.no-second-fixed-bar) #yw0 .fab, #main_container .sticky-bar > legend:not(.no-second-fixed-bar) #yw0 .fa {
  color: #E2001A;
}
#main_container .sticky-bar > legend:not(.no-second-fixed-bar) a, #main_container .sticky-bar > legend:not(.no-second-fixed-bar) button {
  margin: 0px 3px;
}
#main_container .sticky-bar > legend:not(.no-second-fixed-bar) nav {
  margin-right: auto;
  padding: 0rem 1rem;
}
#main_container .sticky-bar > legend:not(.no-second-fixed-bar) nav ol.breadcrumb {
  font-size: 14px;
  color: #858796;
}
#main_container .sticky-bar > legend:not(.no-second-fixed-bar) nav ol.breadcrumb a {
  color: #858796;
}
#main_container .sticky-bar > legend:not(.no-second-fixed-bar) nav ol.breadcrumb li.active {
  color: #fff;
}
#main_container .sticky-bar > legend:not(.no-second-fixed-bar) .btn-floating {
  width: 35px;
  height: 35px;
}
#main_container .sticky-bar > legend:not(.no-second-fixed-bar) .btn-floating i {
  font-size: 10px;
  line-height: 37px;
}
#main_container .sticky-bar > legend:not(.no-second-fixed-bar) div.legenda {
  display: inline-block;
}
#main_container .sticky-bar > legend:not(.no-second-fixed-bar) ~ div {
  position: relative;
  z-index: 10;
}
#main_container .sticky-bar > legend:not(.no-second-fixed-bar) .md-form {
  display: inline-block;
}
#main_container .sticky-bar > legend:not(.no-second-fixed-bar) .jumbotron {
  background: none;
  border-radius: 0px;
}
#main_container .sticky-bar > legend:not(.no-second-fixed-bar) > div:first-child {
  margin-right: auto;
}
#main_container .sticky-bar > legend:not(.no-second-fixed-bar) > b:first-child {
  margin-right: auto;
}
#main_container .sticky-bar > legend:not(.no-second-fixed-bar) > h1 {
  margin-right: auto;
  font-size: 18px;
}
#main_container .sticky-bar > legend:not(.no-second-fixed-bar) #breadcrumb {
  margin-right: auto;
}
#main_container .sticky-bar > legend:not(.no-second-fixed-bar) .pull-right {
  margin-left: auto;
}
#main_container .navbar-nav .circle-icons {
  border-left: 1px solid #ccc;
  padding: 0 16px;
  display: flex;
  align-items: center;
}
#main_container .navbar-nav .circle-icons a {
  width: 46px;
  height: 46px;
  line-height: 70px;
  font-size: 14px;
  border-radius: 23px;
  margin-left: 10px;
  display: inline-block;
  text-align: center;
  line-height: 48px;
  position: relative;
}
#main_container .navbar-nav .circle-icons a span.counter {
  width: 16px;
  height: 16px;
  text-align: center;
  line-height: 16px;
  border-radius: 8px;
  background: #44b1a6;
  font-size: 9px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  font-weight: bold;
  color: #fff;
}
#main_container .navbar-nav .black-icons a {
  background: #333333;
  color: #fff;
}
#main_container .navbar-nav .alert-icons a {
  background: #ebebeb;
  color: #333;
}

.form-group.highlighted {
  background: #fff7f7;
}

select::-ms-expand {
  display: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}

.v-select {
  position: relative;
  font-family: inherit;
}

.v-select,
.v-select * {
  box-sizing: border-box;
}

/* KeyFrames */
@-webkit-keyframes vSelectSpinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes vSelectSpinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Dropdown Default Transition */
.vs__fade-enter-active,
.vs__fade-leave-active {
  pointer-events: none;
  transition: opacity 0.15s cubic-bezier(1, 0.5, 0.8, 1);
}

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

/** Component States */
/*
 * Disabled
 *
 * When the component is disabled, all interaction
 * should be prevented. Here we modify the bg color,
 * and change the cursor displayed on the interactive
 * components.
 */
.vs--disabled .vs__dropdown-toggle,
.vs--disabled .vs__clear,
.vs--disabled .vs__search,
.vs--disabled .vs__selected,
.vs--disabled .vs__open-indicator {
  cursor: not-allowed;
  background-color: rgb(248, 248, 248);
}

/*
 *  RTL - Right to Left Support
 *
 *  Because we're using a flexbox layout, the `dir="rtl"`
 *  HTML attribute does most of the work for us by
 *  rearranging the child elements visually.
 */
.v-select[dir=rtl] .vs__actions {
  padding: 0 3px 0 6px;
}
.v-select[dir=rtl] .vs__clear {
  margin-left: 6px;
  margin-right: 0;
}
.v-select[dir=rtl] .vs__deselect {
  margin-left: 0;
  margin-right: 2px;
}
.v-select[dir=rtl] .vs__dropdown-menu {
  text-align: right;
}

/**
    Dropdown Toggle

    The dropdown toggle is the primary wrapper of the component. It
    has two direct descendants: .vs__selected-options, and .vs__actions.

    .vs__selected-options holds the .vs__selected's as well as the
    main search input.

    .vs__actions holds the clear button and dropdown toggle.
 */
.vs__dropdown-toggle {
  appearance: none;
  display: flex;
  padding: 0 0 4px 0;
  background: none;
  border: 1px solid rgba(60, 60, 60, 0.26);
  border-radius: 4px;
  white-space: normal;
}

.vs__selected-options {
  display: flex;
  flex-basis: 100%;
  flex-grow: 1;
  flex-wrap: wrap;
  padding: 0 2px;
  position: relative;
}

.vs__actions {
  display: flex;
  align-items: center;
  padding: 4px 6px 0 3px;
}

/* Dropdown Toggle States */
.vs--searchable .vs__dropdown-toggle {
  cursor: text;
}

.vs--unsearchable .vs__dropdown-toggle {
  cursor: pointer;
}

.vs--open .vs__dropdown-toggle {
  border-bottom-color: transparent;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.vs__open-indicator {
  fill: rgba(60, 60, 60, 0.5);
  transform: scale(1);
  transition: transform 150ms cubic-bezier(1, -0.115, 0.975, 0.855);
  transition-timing-function: cubic-bezier(1, -0.115, 0.975, 0.855);
}

.vs--open .vs__open-indicator {
  transform: rotate(180deg) scale(1);
}

.vs--loading .vs__open-indicator {
  opacity: 0;
}

/* Clear Button */
.vs__clear {
  fill: rgba(60, 60, 60, 0.5);
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  margin-right: 8px;
}

/* Dropdown Menu */
.vs__dropdown-menu {
  display: block;
  box-sizing: border-box;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  z-index: 1000;
  padding: 5px 0;
  margin: 0;
  width: 100%;
  max-height: 350px;
  min-width: 160px;
  overflow-y: auto;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(60, 60, 60, 0.26);
  border-top-style: none;
  border-radius: 0 0 4px 4px;
  text-align: left;
  list-style: none;
  background: #fff;
}

.vs__no-options {
  text-align: center;
}

/* List Items */
.vs__dropdown-option {
  line-height: 1.42857143; /* Normalize line height */
  display: block;
  padding: 3px 20px;
  clear: both;
  color: #333; /* Overrides most CSS frameworks */
  white-space: nowrap;
}
.vs__dropdown-option:hover {
  cursor: pointer;
}

.vs__dropdown-option--highlight {
  background: var(--primary);
  color: #fff;
}

.vs__dropdown-option--disabled {
  background: inherit;
  color: rgba(60, 60, 60, 0.5);
}
.vs__dropdown-option--disabled:hover {
  cursor: inherit;
}

/* Selected Tags */
.vs__selected {
  display: flex;
  align-items: center;
  background-color: #f0f0f0;
  border: 1px solid rgba(60, 60, 60, 0.26);
  border-radius: 4px;
  color: #333;
  line-height: 1.4;
  margin: 4px 2px 0px 2px;
  padding: 0 0.25em;
  z-index: 0;
}

.vs__deselect {
  display: inline-flex;
  appearance: none;
  margin-left: 4px;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: none;
  fill: rgba(60, 60, 60, 0.5);
  text-shadow: 0 1px 0 #fff;
}

/* States */
.vs--single .vs__selected {
  background-color: transparent;
  border-color: transparent;
}
.vs--single.vs--open .vs__selected {
  position: absolute;
  opacity: 0.4;
}
.vs--single.vs--searching .vs__selected {
  display: none;
}

/* Search Input */
/**
 * Super weird bug... If this declaration is grouped
 * below, the cancel button will still appear in chrome.
 * If it's up here on it's own, it'll hide it.
 */
.vs__search::-webkit-search-cancel-button {
  display: none;
}

.vs__search::-webkit-search-decoration,
.vs__search::-webkit-search-results-button,
.vs__search::-webkit-search-results-decoration,
.vs__search::-ms-clear {
  display: none;
}

.vs__search,
.vs__search:focus {
  appearance: none;
  line-height: 1.4;
  font-size: 1em;
  border: 1px solid transparent;
  border-left: none;
  outline: none;
  margin: 4px 0 0 0;
  padding: 0 7px;
  background: none;
  box-shadow: none;
  width: 0;
  max-width: 100%;
  flex-grow: 1;
  z-index: 1;
}

.vs__search::placeholder {
  color: inherit;
}

/**
    States
 */
.vs--unsearchable .vs__search {
  opacity: 1;
}
.vs--unsearchable:not(.vs--disabled) .vs__search:hover {
  cursor: pointer;
}

.vs--single.vs--searching:not(.vs--open):not(.vs--loading) .vs__search {
  opacity: 0.2;
}

/* Loading Spinner */
.vs__spinner {
  align-self: center;
  opacity: 0;
  font-size: 5px;
  text-indent: -9999em;
  overflow: hidden;
  border-top: 0.9em solid rgba(100, 100, 100, 0.1);
  border-right: 0.9em solid rgba(100, 100, 100, 0.1);
  border-bottom: 0.9em solid rgba(100, 100, 100, 0.1);
  border-left: 0.9em solid rgba(60, 60, 60, 0.45);
  transform: translateZ(0);
  animation: vSelectSpinner 1.1s infinite linear;
  transition: opacity 0.1s;
}

.vs__spinner,
.vs__spinner:after {
  border-radius: 50%;
  width: 5em;
  height: 5em;
}

/* Loading Spinner States */
.vs--loading .vs__spinner {
  opacity: 1;
}

.search-select-input-wrapper {
  position: relative;
}
.search-select-input-wrapper > i {
  position: absolute;
  color: var(--primary);
  z-index: 4;
  top: 7.5px;
  right: 7.5px;
}
.search-select-input-wrapper .search-select-input {
  min-width: 500px;
  height: 30px;
  padding: 0 !important;
  border: none !important;
  position: relative;
  background-color: white;
  border-radius: 15px;
  z-index: 2;
}
.search-select-input-wrapper .search-select-input ul {
  position: absolute;
  background-color: white;
  top: 0;
  right: 0;
  min-width: 500px;
  padding-left: 0;
  padding-top: 30px;
  border-radius: 15px;
  z-index: -1;
}
.search-select-input-wrapper .vs__search {
  border: none !important;
  padding-right: 25px !important;
}
.search-select-input-wrapper .vs__search::placeholder {
  color: var(--gray);
  font-size: 0.75rem;
}
.search-select-input-wrapper .vs__actions {
  /* padding: 7.5px 7.5px 0 0 ; */
  display: none;
}
.search-select-input-wrapper .vs__dropdown-toggle {
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}
/*# sourceMappingURL=vg7.css.map */
