@import url(https://fonts.googleapis.com/css?family=Open+Sans|Raleway:300,400,500,700,900&display=swap);
@import url(https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&display=swap);
@charset "UTF-8";
@keyframes passing-through {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  30%, 70% {
    opacity: 1;
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px);
  }
}
@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.1);
  }
  20% {
    transform: scale(1);
  }
}
.dropzone, .dropzone * {
  box-sizing: border-box;
}

.dropzone {
  min-height: 150px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: white;
  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: white;
}
.dropzone .dz-preview.dz-image-preview .dz-details {
  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 {
  transform: scale(1.05, 1.05);
  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 {
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}
.dropzone .dz-preview.dz-error .dz-error-mark {
  opacity: 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;
  transition: all 0.2s linear;
}
.dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  transition: opacity 0.4s ease-in;
}
.dropzone .dz-preview:not(.dz-processing) .dz-progress {
  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;
  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;
  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: white;
}
.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;
}

/*!
 * Bootstrap v4.6.2 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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

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

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

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

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

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

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

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

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

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

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

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

dt {
  font-weight: 700;
}

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

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: #0056b3;
  text-decoration: underline;
}

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.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  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-weight: 500;
  line-height: 1.2;
}

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

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

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

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

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

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

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

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

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

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

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

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

small,
.small {
  font-size: 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.25rem;
}

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

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

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

.figure {
  display: inline-block;
}

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

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

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

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

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

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

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

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

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

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

.col {
  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: #212529;
}
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

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

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

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

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

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

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #b8daff;
}
.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #7abaff;
}

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

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

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

.table-success,
.table-success > th,
.table-success > td {
  background-color: #c3e6cb;
}
.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #8fd19e;
}

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

.table-info,
.table-info > th,
.table-info > td {
  background-color: #bee5eb;
}
.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: #86cfda;
}

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

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

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

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

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

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

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

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c8ca;
}
.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #95999c;
}

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

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

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

.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
}
.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

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

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

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

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

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

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

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

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

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

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

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

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  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: #6c757d;
}

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

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

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

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

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

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #28a745;
}
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #34ce57;
  background-color: #34ce57;
}
.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(40, 167, 69, 0.25);
}
.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #28a745;
}

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

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

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

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

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #dc3545;
}
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #e4606d;
  background-color: #e4606d;
}
.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(220, 53, 69, 0.25);
}
.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #dc3545;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 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: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  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) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #212529;
  text-decoration: none;
}
.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 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: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}
.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0062cc;
  border-color: #005cbf;
}
.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(38, 143, 255, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}
.btn-secondary:focus, .btn-secondary.focus {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}
.btn-secondary.disabled, .btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}
.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(130, 138, 145, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}
.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(72, 180, 97, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}
.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}
.btn-info.disabled, .btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}
.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(58, 176, 195, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}
.btn-warning:focus, .btn-warning.focus {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}
.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}
.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}
.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}
.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}
.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(225, 83, 97, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}
.btn-light:focus, .btn-light.focus {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}
.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}
.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(216, 217, 219, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}
.btn-dark:focus, .btn-dark.focus {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}
.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}
.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(82, 88, 93, 0.5);
}

.btn-outline-primary {
  color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #007bff;
  background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.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(0, 123, 255, 0.5);
}

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

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

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

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

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

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

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

.btn-link {
  font-weight: 400;
  color: #007bff;
  text-decoration: none;
}
.btn-link:hover {
  color: #0056b3;
  text-decoration: underline;
}
.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
}
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

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

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

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

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

.fade {
  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: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #e9ecef;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #007bff;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

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

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

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

.btn-group,
.btn-group-vertical {
  position: relative;
  display: 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: -1px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

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

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

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

.btn-group-vertical {
  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: -1px;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

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

.input-group {
  position: relative;
  display: 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: -1px;
}
.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}
.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}
.input-group > .form-control:not(: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: -1px;
}

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

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

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

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

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

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

.input-group-sm > .form-control,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  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.5rem;
  padding-left: 1.5rem;
  -webkit-print-color-adjust: exact;
          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.25rem;
  opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #007bff;
  background-color: #007bff;
}
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #80bdff;
}
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}
.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}
.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}
.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: 1px solid #adb5bd;
}
.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  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='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #007bff;
  background-color: #007bff;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 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.25rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  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: #fff;
  transform: translateX(0.75rem);
}
.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

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

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

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

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

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

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

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

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

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

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

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

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #007bff;
}

.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.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  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.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: 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: #fff;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%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: #fff;
}
.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  color: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.card-group > .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-group {
    display: 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: 0.75rem;
}
@media (min-width: 576px) {
  .card-columns {
    -moz-column-count: 3;
         column-count: 3;
    -moz-column-gap: 1.25rem;
         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: -1px;
}

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

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

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

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #007bff;
  background-color: #fff;
  border: 1px solid #dee2e6;
}
.page-link:hover {
  z-index: 2;
  color: #0056b3;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

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

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  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.875rem;
  line-height: 1.5;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  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: #fff;
  background-color: #007bff;
}
a.badge-primary:hover, a.badge-primary:focus {
  color: #fff;
  background-color: #0062cc;
}
a.badge-primary:focus, a.badge-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

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

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

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

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

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

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

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

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

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

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

.alert-heading {
  color: inherit;
}

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

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

.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}
.alert-primary hr {
  border-top-color: #9fcdff;
}
.alert-primary .alert-link {
  color: #002752;
}

.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}
.alert-secondary hr {
  border-top-color: #c8cbcf;
}
.alert-secondary .alert-link {
  color: #202326;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.alert-success hr {
  border-top-color: #b1dfbb;
}
.alert-success .alert-link {
  color: #0b2e13;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}
.alert-info hr {
  border-top-color: #abdde5;
}
.alert-info .alert-link {
  color: #062c33;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
.alert-warning hr {
  border-top-color: #ffe8a1;
}
.alert-warning .alert-link {
  color: #533f03;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.alert-danger hr {
  border-top-color: #f1b0b7;
}
.alert-danger .alert-link {
  color: #491217;
}

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}
.alert-light hr {
  border-top-color: #ececf6;
}
.alert-light .alert-link {
  color: #686868;
}

.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}
.alert-dark hr {
  border-top-color: #b9bbbe;
}
.alert-dark .alert-link {
  color: #040505;
}

@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.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #007bff;
  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: #495057;
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}
.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
  border-top-left-radius: 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: #6c757d;
  pointer-events: none;
  background-color: #fff;
}
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

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

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

.list-group-item-primary {
  color: #004085;
  background-color: #b8daff;
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #004085;
  background-color: #9fcdff;
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #004085;
  border-color: #004085;
}

.list-group-item-secondary {
  color: #383d41;
  background-color: #d6d8db;
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #383d41;
  background-color: #c8cbcf;
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #383d41;
  border-color: #383d41;
}

.list-group-item-success {
  color: #155724;
  background-color: #c3e6cb;
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #155724;
  background-color: #b1dfbb;
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #155724;
  border-color: #155724;
}

.list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #0c5460;
  background-color: #abdde5;
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #0c5460;
  border-color: #0c5460;
}

.list-group-item-warning {
  color: #856404;
  background-color: #ffeeba;
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #856404;
  background-color: #ffe8a1;
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #856404;
  border-color: #856404;
}

.list-group-item-danger {
  color: #721c24;
  background-color: #f5c6cb;
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #721c24;
  background-color: #f1b0b7;
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #721c24;
  border-color: #721c24;
}

.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #818182;
  background-color: #ececf6;
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}

.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #1b1e21;
  background-color: #b9bbbe;
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}

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

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

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: #6c757d;
  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: -moz-min-content;
  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: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

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

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

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

.modal-body {
  position: relative;
  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: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

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

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: -moz-min-content;
    height: min-content;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

.carousel {
  position: relative;
}

.carousel.pointer-event {
  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: #fff;
  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: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

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

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

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: 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='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

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

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: 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: #fff;
  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: #fff;
  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: #007bff !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.border-primary {
  border-color: #007bff !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.d-flex {
  display: 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 {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

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

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          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 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

.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: #fff !important;
}

.text-primary {
  color: #007bff !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text-break {
  word-break: break-word !important;
  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: 1px solid #adb5bd;
    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: 1px solid #000;
  }

  .table {
    border-collapse: collapse !important;
  }
  .table td,
.table th {
    background-color: #fff !important;
  }

  .table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6 !important;
  }

  .table-dark {
    color: inherit;
  }
  .table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
    border-color: #dee2e6;
  }

  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}
.swal2-popup.swal2-toast {
  flex-direction: row;
  align-items: center;
  width: auto;
  padding: 0.625em;
  overflow-y: hidden;
  background: #fff;
  box-shadow: 0 0 0.625em #d9d9d9;
}

.swal2-popup.swal2-toast .swal2-header {
  flex-direction: row;
  padding: 0;
}

.swal2-popup.swal2-toast .swal2-title {
  flex-grow: 1;
  justify-content: flex-start;
  margin: 0 0.6em;
  font-size: 1em;
}

.swal2-popup.swal2-toast .swal2-footer {
  margin: 0.5em 0 0;
  padding: 0.5em 0 0;
  font-size: 0.8em;
}

.swal2-popup.swal2-toast .swal2-close {
  position: static;
  width: 0.8em;
  height: 0.8em;
  line-height: 0.8;
}

.swal2-popup.swal2-toast .swal2-content {
  justify-content: flex-start;
  padding: 0;
  font-size: 1em;
}

.swal2-popup.swal2-toast .swal2-icon {
  width: 2em;
  min-width: 2em;
  height: 2em;
  margin: 0;
}

.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content {
  display: flex;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .swal2-popup.swal2-toast .swal2-icon .swal2-icon-content {
    font-size: 0.25em;
  }
}
.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring {
  width: 2em;
  height: 2em;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line] {
  top: 0.875em;
  width: 1.375em;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
  left: 0.3125em;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
  right: 0.3125em;
}

.swal2-popup.swal2-toast .swal2-actions {
  flex-basis: auto !important;
  width: auto;
  height: auto;
  margin: 0 0.3125em;
}

.swal2-popup.swal2-toast .swal2-styled {
  margin: 0 0.3125em;
  padding: 0.3125em 0.625em;
  font-size: 1em;
}

.swal2-popup.swal2-toast .swal2-styled:focus {
  box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgba(50, 100, 150, 0.4);
}

.swal2-popup.swal2-toast .swal2-success {
  border-color: #a5dc86;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line] {
  position: absolute;
  width: 1.6em;
  height: 3em;
  transform: rotate(45deg);
  border-radius: 50%;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left] {
  top: -0.8em;
  left: -0.5em;
  transform: rotate(-45deg);
  transform-origin: 2em 2em;
  border-radius: 4em 0 0 4em;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right] {
  top: -0.25em;
  left: 0.9375em;
  transform-origin: 0 1.5em;
  border-radius: 0 4em 4em 0;
}

.swal2-popup.swal2-toast .swal2-success .swal2-success-ring {
  width: 2em;
  height: 2em;
}

.swal2-popup.swal2-toast .swal2-success .swal2-success-fix {
  top: 0;
  left: 0.4375em;
  width: 0.4375em;
  height: 2.6875em;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line] {
  height: 0.3125em;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip] {
  top: 1.125em;
  left: 0.1875em;
  width: 0.75em;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long] {
  top: 0.9375em;
  right: 0.1875em;
  width: 1.375em;
}

.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-tip {
  animation: swal2-toast-animate-success-line-tip 0.75s;
}

.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-long {
  animation: swal2-toast-animate-success-line-long 0.75s;
}

.swal2-popup.swal2-toast.swal2-show {
  animation: swal2-toast-show 0.5s;
}

.swal2-popup.swal2-toast.swal2-hide {
  animation: swal2-toast-hide 0.1s forwards;
}

.swal2-container {
  display: flex;
  position: fixed;
  z-index: 1060;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0.625em;
  overflow-x: hidden;
  transition: background-color 0.1s;
  -webkit-overflow-scrolling: touch;
}

.swal2-container.swal2-backdrop-show, .swal2-container.swal2-noanimation {
  background: rgba(0, 0, 0, 0.4);
}

.swal2-container.swal2-backdrop-hide {
  background: transparent !important;
}

.swal2-container.swal2-top {
  align-items: flex-start;
}

.swal2-container.swal2-top-start, .swal2-container.swal2-top-left {
  align-items: flex-start;
  justify-content: flex-start;
}

.swal2-container.swal2-top-end, .swal2-container.swal2-top-right {
  align-items: flex-start;
  justify-content: flex-end;
}

.swal2-container.swal2-center {
  align-items: center;
}

.swal2-container.swal2-center-start, .swal2-container.swal2-center-left {
  align-items: center;
  justify-content: flex-start;
}

.swal2-container.swal2-center-end, .swal2-container.swal2-center-right {
  align-items: center;
  justify-content: flex-end;
}

.swal2-container.swal2-bottom {
  align-items: flex-end;
}

.swal2-container.swal2-bottom-start, .swal2-container.swal2-bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}

.swal2-container.swal2-bottom-end, .swal2-container.swal2-bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}

.swal2-container.swal2-bottom > :first-child, .swal2-container.swal2-bottom-start > :first-child, .swal2-container.swal2-bottom-left > :first-child, .swal2-container.swal2-bottom-end > :first-child, .swal2-container.swal2-bottom-right > :first-child {
  margin-top: auto;
}

.swal2-container.swal2-grow-fullscreen > .swal2-modal {
  display: flex !important;
  flex: 1;
  align-self: stretch;
  justify-content: center;
}

.swal2-container.swal2-grow-row > .swal2-modal {
  display: flex !important;
  flex: 1;
  align-content: center;
  justify-content: center;
}

.swal2-container.swal2-grow-column {
  flex: 1;
  flex-direction: column;
}

.swal2-container.swal2-grow-column.swal2-top, .swal2-container.swal2-grow-column.swal2-center, .swal2-container.swal2-grow-column.swal2-bottom {
  align-items: center;
}

.swal2-container.swal2-grow-column.swal2-top-start, .swal2-container.swal2-grow-column.swal2-center-start, .swal2-container.swal2-grow-column.swal2-bottom-start, .swal2-container.swal2-grow-column.swal2-top-left, .swal2-container.swal2-grow-column.swal2-center-left, .swal2-container.swal2-grow-column.swal2-bottom-left {
  align-items: flex-start;
}

.swal2-container.swal2-grow-column.swal2-top-end, .swal2-container.swal2-grow-column.swal2-center-end, .swal2-container.swal2-grow-column.swal2-bottom-end, .swal2-container.swal2-grow-column.swal2-top-right, .swal2-container.swal2-grow-column.swal2-center-right, .swal2-container.swal2-grow-column.swal2-bottom-right {
  align-items: flex-end;
}

.swal2-container.swal2-grow-column > .swal2-modal {
  display: flex !important;
  flex: 1;
  align-content: center;
  justify-content: center;
}

.swal2-container.swal2-no-transition {
  transition: none !important;
}

.swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen) > .swal2-modal {
  margin: auto;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .swal2-container .swal2-modal {
    margin: 0 !important;
  }
}
.swal2-popup {
  display: none;
  position: relative;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;
  width: 32em;
  max-width: 100%;
  padding: 1.25em;
  border: none;
  border-radius: 0.3125em;
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
}

.swal2-popup:focus {
  outline: none;
}

.swal2-popup.swal2-loading {
  overflow-y: hidden;
}

.swal2-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.8em;
}

.swal2-title {
  position: relative;
  max-width: 100%;
  margin: 0 0 0.4em;
  padding: 0;
  color: #595959;
  font-size: 1.875em;
  font-weight: 600;
  text-align: center;
  text-transform: none;
  word-wrap: break-word;
}

.swal2-actions {
  display: flex;
  z-index: 1;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 1.25em auto 0;
}

.swal2-actions:not(.swal2-loading) .swal2-styled[disabled] {
  opacity: 0.4;
}

.swal2-actions:not(.swal2-loading) .swal2-styled:hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}

.swal2-actions:not(.swal2-loading) .swal2-styled:active {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.swal2-actions.swal2-loading .swal2-styled.swal2-confirm {
  box-sizing: border-box;
  width: 2.5em;
  height: 2.5em;
  margin: 0.46875em;
  padding: 0;
  animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
  border: 0.25em solid transparent;
  border-radius: 100%;
  border-color: transparent;
  background-color: transparent !important;
  color: transparent !important;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.swal2-actions.swal2-loading .swal2-styled.swal2-cancel {
  margin-right: 30px;
  margin-left: 30px;
}

.swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 5px;
  animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
  border: 3px solid #999999;
  border-radius: 50%;
  border-right-color: transparent;
  box-shadow: 1px 1px 1px #fff;
}

.swal2-styled {
  margin: 0.3125em;
  padding: 0.625em 2em;
  box-shadow: none;
  font-weight: 500;
}

.swal2-styled:not([disabled]) {
  cursor: pointer;
}

.swal2-styled.swal2-confirm {
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: #3085d6;
  color: #fff;
  font-size: 1.0625em;
}

.swal2-styled.swal2-cancel {
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: #aaa;
  color: #fff;
  font-size: 1.0625em;
}

.swal2-styled:focus {
  outline: none;
  box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgba(50, 100, 150, 0.4);
}

.swal2-styled::-moz-focus-inner {
  border: 0;
}

.swal2-footer {
  justify-content: center;
  margin: 1.25em 0 0;
  padding: 1em 0 0;
  border-top: 1px solid #eee;
  color: #545454;
  font-size: 1em;
}

.swal2-timer-progress-bar-container {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0.25em;
  overflow: hidden;
  border-bottom-right-radius: 0.3125em;
  border-bottom-left-radius: 0.3125em;
}

.swal2-timer-progress-bar {
  width: 100%;
  height: 0.25em;
  background: rgba(0, 0, 0, 0.2);
}

.swal2-image {
  max-width: 100%;
  margin: 1.25em auto;
}

.swal2-close {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  align-items: center;
  justify-content: center;
  width: 1.2em;
  height: 1.2em;
  padding: 0;
  overflow: hidden;
  transition: color 0.1s ease-out;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #cccccc;
  font-family: serif;
  font-size: 2.5em;
  line-height: 1.2;
  cursor: pointer;
}

.swal2-close:hover {
  transform: none;
  background: transparent;
  color: #f27474;
}

.swal2-close::-moz-focus-inner {
  border: 0;
}

.swal2-content {
  z-index: 1;
  justify-content: center;
  margin: 0;
  padding: 0 1.6em;
  color: #545454;
  font-size: 1.125em;
  font-weight: normal;
  line-height: normal;
  text-align: center;
  word-wrap: break-word;
}

.swal2-input,
.swal2-file,
.swal2-textarea,
.swal2-select,
.swal2-radio,
.swal2-checkbox {
  margin: 1em auto;
}

.swal2-input,
.swal2-file,
.swal2-textarea {
  box-sizing: border-box;
  width: 100%;
  transition: border-color 0.3s, box-shadow 0.3s;
  border: 1px solid #d9d9d9;
  border-radius: 0.1875em;
  background: inherit;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06);
  color: inherit;
  font-size: 1.125em;
}

.swal2-input.swal2-inputerror,
.swal2-file.swal2-inputerror,
.swal2-textarea.swal2-inputerror {
  border-color: #f27474 !important;
  box-shadow: 0 0 2px #f27474 !important;
}

.swal2-input:focus,
.swal2-file:focus,
.swal2-textarea:focus {
  border: 1px solid #b4dbed;
  outline: none;
  box-shadow: 0 0 3px #c4e6f5;
}

.swal2-input::-moz-placeholder, .swal2-file::-moz-placeholder, .swal2-textarea::-moz-placeholder {
  color: #cccccc;
}

.swal2-input::placeholder,
.swal2-file::placeholder,
.swal2-textarea::placeholder {
  color: #cccccc;
}

.swal2-range {
  margin: 1em auto;
  background: #fff;
}

.swal2-range input {
  width: 80%;
}

.swal2-range output {
  width: 20%;
  color: inherit;
  font-weight: 600;
  text-align: center;
}

.swal2-range input,
.swal2-range output {
  height: 2.625em;
  padding: 0;
  font-size: 1.125em;
  line-height: 2.625em;
}

.swal2-input {
  height: 2.625em;
  padding: 0 0.75em;
}

.swal2-input[type=number] {
  max-width: 10em;
}

.swal2-file {
  background: inherit;
  font-size: 1.125em;
}

.swal2-textarea {
  height: 6.75em;
  padding: 0.75em;
}

.swal2-select {
  min-width: 50%;
  max-width: 100%;
  padding: 0.375em 0.625em;
  background: inherit;
  color: inherit;
  font-size: 1.125em;
}

.swal2-radio,
.swal2-checkbox {
  align-items: center;
  justify-content: center;
  background: #fff;
  color: inherit;
}

.swal2-radio label,
.swal2-checkbox label {
  margin: 0 0.6em;
  font-size: 1.125em;
}

.swal2-radio input,
.swal2-checkbox input {
  margin: 0 0.4em;
}

.swal2-validation-message {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.625em;
  overflow: hidden;
  background: #f0f0f0;
  color: #666666;
  font-size: 1em;
  font-weight: 300;
}

.swal2-validation-message::before {
  content: "!";
  display: inline-block;
  width: 1.5em;
  min-width: 1.5em;
  height: 1.5em;
  margin: 0 0.625em;
  border-radius: 50%;
  background-color: #f27474;
  color: #fff;
  font-weight: 600;
  line-height: 1.5em;
  text-align: center;
}

.swal2-icon {
  position: relative;
  box-sizing: content-box;
  justify-content: center;
  width: 5em;
  height: 5em;
  margin: 1.25em auto 1.875em;
  border: 0.25em solid transparent;
  border-radius: 50%;
  font-family: inherit;
  line-height: 5em;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.swal2-icon .swal2-icon-content {
  display: flex;
  align-items: center;
  font-size: 3.75em;
}

.swal2-icon.swal2-error {
  border-color: #f27474;
  color: #f27474;
}

.swal2-icon.swal2-error .swal2-x-mark {
  position: relative;
  flex-grow: 1;
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line] {
  display: block;
  position: absolute;
  top: 2.3125em;
  width: 2.9375em;
  height: 0.3125em;
  border-radius: 0.125em;
  background-color: #f27474;
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
  left: 1.0625em;
  transform: rotate(45deg);
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
  right: 1em;
  transform: rotate(-45deg);
}

.swal2-icon.swal2-error.swal2-icon-show {
  animation: swal2-animate-error-icon 0.5s;
}

.swal2-icon.swal2-error.swal2-icon-show .swal2-x-mark {
  animation: swal2-animate-error-x-mark 0.5s;
}

.swal2-icon.swal2-warning {
  border-color: #facea8;
  color: #f8bb86;
}

.swal2-icon.swal2-info {
  border-color: #9de0f6;
  color: #3fc3ee;
}

.swal2-icon.swal2-question {
  border-color: #c9dae1;
  color: #87adbd;
}

.swal2-icon.swal2-success {
  border-color: #a5dc86;
  color: #a5dc86;
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line] {
  position: absolute;
  width: 3.75em;
  height: 7.5em;
  transform: rotate(45deg);
  border-radius: 50%;
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left] {
  top: -0.4375em;
  left: -2.0635em;
  transform: rotate(-45deg);
  transform-origin: 3.75em 3.75em;
  border-radius: 7.5em 0 0 7.5em;
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right] {
  top: -0.6875em;
  left: 1.875em;
  transform: rotate(-45deg);
  transform-origin: 0 3.75em;
  border-radius: 0 7.5em 7.5em 0;
}

.swal2-icon.swal2-success .swal2-success-ring {
  position: absolute;
  z-index: 2;
  top: -0.25em;
  left: -0.25em;
  box-sizing: content-box;
  width: 100%;
  height: 100%;
  border: 0.25em solid rgba(165, 220, 134, 0.3);
  border-radius: 50%;
}

.swal2-icon.swal2-success .swal2-success-fix {
  position: absolute;
  z-index: 1;
  top: 0.5em;
  left: 1.625em;
  width: 0.4375em;
  height: 5.625em;
  transform: rotate(-45deg);
}

.swal2-icon.swal2-success [class^=swal2-success-line] {
  display: block;
  position: absolute;
  z-index: 2;
  height: 0.3125em;
  border-radius: 0.125em;
  background-color: #a5dc86;
}

.swal2-icon.swal2-success [class^=swal2-success-line][class$=tip] {
  top: 2.875em;
  left: 0.8125em;
  width: 1.5625em;
  transform: rotate(45deg);
}

.swal2-icon.swal2-success [class^=swal2-success-line][class$=long] {
  top: 2.375em;
  right: 0.5em;
  width: 2.9375em;
  transform: rotate(-45deg);
}

.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-tip {
  animation: swal2-animate-success-line-tip 0.75s;
}

.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-long {
  animation: swal2-animate-success-line-long 0.75s;
}

.swal2-icon.swal2-success.swal2-icon-show .swal2-success-circular-line-right {
  animation: swal2-rotate-success-circular-line 4.25s ease-in;
}

.swal2-progress-steps {
  align-items: center;
  margin: 0 0 1.25em;
  padding: 0;
  background: inherit;
  font-weight: 600;
}

.swal2-progress-steps li {
  display: inline-block;
  position: relative;
}

.swal2-progress-steps .swal2-progress-step {
  z-index: 20;
  width: 2em;
  height: 2em;
  border-radius: 2em;
  background: #3085d6;
  color: #fff;
  line-height: 2em;
  text-align: center;
}

.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step {
  background: #3085d6;
}

.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step {
  background: #add8e6;
  color: #fff;
}

.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step-line {
  background: #add8e6;
}

.swal2-progress-steps .swal2-progress-step-line {
  z-index: 10;
  width: 2.5em;
  height: 0.4em;
  margin: 0 -1px;
  background: #3085d6;
}

[class^=swal2] {
  -webkit-tap-highlight-color: transparent;
}

.swal2-show {
  animation: swal2-show 0.3s;
}

.swal2-hide {
  animation: swal2-hide 0.15s forwards;
}

.swal2-noanimation {
  transition: none;
}

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

.swal2-rtl .swal2-close {
  right: auto;
  left: 0;
}

.swal2-rtl .swal2-timer-progress-bar {
  right: 0;
  left: auto;
}

@supports (-ms-accelerator: true) {
  .swal2-range input {
    width: 100% !important;
  }

  .swal2-range output {
    display: none;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .swal2-range input {
    width: 100% !important;
  }

  .swal2-range output {
    display: none;
  }
}
@-moz-document url-prefix() {
  .swal2-close:focus {
    outline: 2px solid rgba(50, 100, 150, 0.4);
  }
}
@keyframes swal2-toast-show {
  0% {
    transform: translateY(-0.625em) rotateZ(2deg);
  }
  33% {
    transform: translateY(0) rotateZ(-2deg);
  }
  66% {
    transform: translateY(0.3125em) rotateZ(2deg);
  }
  100% {
    transform: translateY(0) rotateZ(0deg);
  }
}
@keyframes swal2-toast-hide {
  100% {
    transform: rotateZ(1deg);
    opacity: 0;
  }
}
@keyframes swal2-toast-animate-success-line-tip {
  0% {
    top: 0.5625em;
    left: 0.0625em;
    width: 0;
  }
  54% {
    top: 0.125em;
    left: 0.125em;
    width: 0;
  }
  70% {
    top: 0.625em;
    left: -0.25em;
    width: 1.625em;
  }
  84% {
    top: 1.0625em;
    left: 0.75em;
    width: 0.5em;
  }
  100% {
    top: 1.125em;
    left: 0.1875em;
    width: 0.75em;
  }
}
@keyframes swal2-toast-animate-success-line-long {
  0% {
    top: 1.625em;
    right: 1.375em;
    width: 0;
  }
  65% {
    top: 1.25em;
    right: 0.9375em;
    width: 0;
  }
  84% {
    top: 0.9375em;
    right: 0;
    width: 1.125em;
  }
  100% {
    top: 0.9375em;
    right: 0.1875em;
    width: 1.375em;
  }
}
@keyframes swal2-show {
  0% {
    transform: scale(0.7);
  }
  45% {
    transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes swal2-hide {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.5);
    opacity: 0;
  }
}
@keyframes swal2-animate-success-line-tip {
  0% {
    top: 1.1875em;
    left: 0.0625em;
    width: 0;
  }
  54% {
    top: 1.0625em;
    left: 0.125em;
    width: 0;
  }
  70% {
    top: 2.1875em;
    left: -0.375em;
    width: 3.125em;
  }
  84% {
    top: 3em;
    left: 1.3125em;
    width: 1.0625em;
  }
  100% {
    top: 2.8125em;
    left: 0.8125em;
    width: 1.5625em;
  }
}
@keyframes swal2-animate-success-line-long {
  0% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  65% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  84% {
    top: 2.1875em;
    right: 0;
    width: 3.4375em;
  }
  100% {
    top: 2.375em;
    right: 0.5em;
    width: 2.9375em;
  }
}
@keyframes swal2-rotate-success-circular-line {
  0% {
    transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
  }
}
@keyframes swal2-animate-error-x-mark {
  0% {
    margin-top: 1.625em;
    transform: scale(0.4);
    opacity: 0;
  }
  50% {
    margin-top: 1.625em;
    transform: scale(0.4);
    opacity: 0;
  }
  80% {
    margin-top: -0.375em;
    transform: scale(1.15);
  }
  100% {
    margin-top: 0;
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes swal2-animate-error-icon {
  0% {
    transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}
@keyframes swal2-rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
  overflow: hidden;
}

body.swal2-height-auto {
  height: auto !important;
}

body.swal2-no-backdrop .swal2-container {
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  max-width: calc(100% - 0.625em * 2);
  background-color: transparent !important;
}

body.swal2-no-backdrop .swal2-container > .swal2-modal {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

body.swal2-no-backdrop .swal2-container.swal2-top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

body.swal2-no-backdrop .swal2-container.swal2-top-start, body.swal2-no-backdrop .swal2-container.swal2-top-left {
  top: 0;
  left: 0;
}

body.swal2-no-backdrop .swal2-container.swal2-top-end, body.swal2-no-backdrop .swal2-container.swal2-top-right {
  top: 0;
  right: 0;
}

body.swal2-no-backdrop .swal2-container.swal2-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

body.swal2-no-backdrop .swal2-container.swal2-center-start, body.swal2-no-backdrop .swal2-container.swal2-center-left {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

body.swal2-no-backdrop .swal2-container.swal2-center-end, body.swal2-no-backdrop .swal2-container.swal2-center-right {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

body.swal2-no-backdrop .swal2-container.swal2-bottom {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

body.swal2-no-backdrop .swal2-container.swal2-bottom-start, body.swal2-no-backdrop .swal2-container.swal2-bottom-left {
  bottom: 0;
  left: 0;
}

body.swal2-no-backdrop .swal2-container.swal2-bottom-end, body.swal2-no-backdrop .swal2-container.swal2-bottom-right {
  right: 0;
  bottom: 0;
}

@media print {
  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
    overflow-y: scroll !important;
  }

  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) > [aria-hidden=true] {
    display: none;
  }

  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container {
    position: static !important;
  }
}
body.swal2-toast-shown .swal2-container {
  background-color: transparent;
}

body.swal2-toast-shown .swal2-container.swal2-top {
  top: 0;
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translateX(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-top-end, body.swal2-toast-shown .swal2-container.swal2-top-right {
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
}

body.swal2-toast-shown .swal2-container.swal2-top-start, body.swal2-toast-shown .swal2-container.swal2-top-left {
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
}

body.swal2-toast-shown .swal2-container.swal2-center-start, body.swal2-toast-shown .swal2-container.swal2-center-left {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  transform: translateY(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-center {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translate(-50%, -50%);
}

body.swal2-toast-shown .swal2-container.swal2-center-end, body.swal2-toast-shown .swal2-container.swal2-center-right {
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  transform: translateY(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-bottom-start, body.swal2-toast-shown .swal2-container.swal2-bottom-left {
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
}

body.swal2-toast-shown .swal2-container.swal2-bottom {
  top: auto;
  right: auto;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-bottom-end, body.swal2-toast-shown .swal2-container.swal2-bottom-right {
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
}

body.swal2-toast-column .swal2-toast {
  flex-direction: column;
  align-items: stretch;
}

body.swal2-toast-column .swal2-toast .swal2-actions {
  flex: 1;
  align-self: stretch;
  height: 2.2em;
  margin-top: 0.3125em;
}

body.swal2-toast-column .swal2-toast .swal2-loading {
  justify-content: center;
}

body.swal2-toast-column .swal2-toast .swal2-input {
  height: 2em;
  margin: 0.3125em auto;
  font-size: 1em;
}

body.swal2-toast-column .swal2-toast .swal2-validation-message {
  font-size: 1em;
}

.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;
  -moz-user-select: none;
       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 {
  background-color: transparent;
  border: none;
  font-size: 1em;
}
.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;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  list-style: none;
  padding: 0;
}
.select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}
.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  margin-left: 5px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 18px;
  vertical-align: bottom;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all;
}
.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;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-results__option--selectable {
  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;
  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--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
  padding-right: 0px;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}
.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}
.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative;
}
.select2-container--default .select2-selection--multiple.select2-selection--clearable {
  padding-right: 25px;
}
.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  font-weight: bold;
  height: 20px;
  margin-right: 10px;
  margin-top: 5px;
  position: absolute;
  right: 0;
  padding: 1px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
  padding-left: 20px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-right: 1px solid #aaa;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #999;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 0;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: #f1f1f1;
  color: #333;
  outline: none;
}
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-left: 1px solid #aaa;
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__clear {
  float: left;
  margin-left: 10px;
  margin-right: auto;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}
.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}
.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}
.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}
.select2-container--default .select2-results__option--group {
  padding: 0;
}
.select2-container--default .select2-results__option--disabled {
  color: #999;
}
.select2-container--default .select2-results__option--selected {
  background-color: #ddd;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #5897fb;
  color: white;
}
.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  outline: 0;
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}
.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}
.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}
.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
}
.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}
.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #dee2e6;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}
.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #dee2e6;
  border-radius: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  left: 1px;
  right: auto;
}
.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}
.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  cursor: text;
  outline: 0;
  padding-bottom: 5px;
  padding-right: 5px;
}
.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}
.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  color: #888;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
  outline: none;
}
.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}
.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}
.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #dee2e6;
  outline: 0;
}
.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}
.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}
.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}
.select2-container--classic .select2-dropdown--below {
  border-top: none;
}
.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--classic .select2-results__option--group {
  padding: 0;
}
.select2-container--classic .select2-results__option--disabled {
  color: grey;
}
.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #3875d7;
  color: white;
}
.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}
.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

.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;
  }
}
/*
 * Image replacement (does not work on buttons/inputs)
 */
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

@keyframes draw {
  0% {
    stroke-dasharray: 0 790;
    opacity: 1;
  }
  100% {
    stroke-dasharray: 790 0;
    opacity: 1;
  }
}
@-o-viewport {
  width: device-width;
  zoom: 1;
  /* stylelint-disable-line */
}
@viewport {
  width: device-width;
  zoom: 1;
  /* stylelint-disable-line */
}
::-moz-selection {
  background: rgba(0, 0, 0, 0.9);
  text-shadow: none;
  color: #fff;
}
::selection {
  background: rgba(0, 0, 0, 0.9);
  text-shadow: none;
  color: #fff;
}

html {
  height: 100%;
  overflow-y: scroll;
  line-height: 1.4;
  box-sizing: border-box;
}

html,
button,
input,
optgroup,
select,
textarea {
  font-family: "Roboto", sans-serif !important;
  color: #4d4d4f;
  outline-color: #9c63ff;
  -webkit-font-smoothing: antialiased;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100% !important;
  font-family: "Roboto", sans-serif !important;
  background-color: #fff;
  padding-top: 70px;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

html {
  min-height: 100%;
  overflow-y: scroll;
  line-height: 1.4;
  box-sizing: border-box;
}

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

p {
  font-size: 14px;
  line-height: 1.71;
}

a {
  color: #000;
  text-decoration: none;
  transition: all 0.2s ease-out;
}
a:hover, a:focus {
  color: #1a1a1a;
}
a:active {
  /* stylelint-disable-line */
}
img {
  max-width: 100%;
  font-style: italic;
  /* fancy broken image alt text */
}

ul,
ol {
  padding: 0;
  list-style-position: inside;
  list-style: none;
}

.o-list {
  width: 100%;
}
.o-list--item {
  width: 100%;
  padding: 20px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-bottom: 1px solid #f1f1f1;
  text-decoration: none;
  font-weight: bold;
  color: #4d4d4f;
  font-family: "Roboto", sans-serif;
}
.o-list--item:hover {
  cursor: pointer;
  text-decoration: none;
  background-color: #fafafa;
  color: #4d4d4f;
}
.o-list--item-title {
  font-size: 16px;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
  min-height: 3em;
}

.js-thumb {
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}

.o-badges {
  font-size: 13px;
  background-color: transparent;
  border: 1px solid #f0f0f0;
  color: #444;
  padding: 5px 10px;
  display: inline-block;
  margin-bottom: 5px;
  border-radius: 15px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  text-transform: lowercase;
}
.o-badges--border-color-dark {
  border: 1px solid #333;
}
.o-badges--border-radius-rect {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}

.pagination {
  flex-wrap: wrap;
}
.pagination .page-link {
  color: #9c63ff;
}
.pagination .page-item {
  height: 37px;
}
.pagination .page-item.active .page-link {
  background-color: #2995db;
  border-color: #2995db;
  padding-bottom: 10px;
}
.pagination .page-item.disabled .page-link {
  padding-bottom: 11px;
}

.o-grid {
  display: flex;
}
.o-grid--align-end {
  justify-content: flex-end;
}
.o-grid--align-center {
  align-items: center;
}
.o-grid__item {
  width: 100%;
}

.o-row {
  display: flex;
  align-items: center;
}
.o-row--inline {
  justify-content: space-between;
}
.o-row--top {
  align-items: baseline;
}

.o-margin--bottom-0 {
  margin-bottom: 0;
}
.o-margin--bottom-10 {
  margin-bottom: 10px;
}
.o-margin--bottom-20 {
  margin-bottom: 20px;
}
.o-margin--bottom-30 {
  margin-bottom: 30px;
}
.o-margin--bottom-40 {
  margin-bottom: 40px;
}
.o-margin--bottom-50 {
  margin-bottom: 50px;
}
.o-margin--top-10 {
  margin-top: 10px;
}
.o-margin--top-20 {
  margin-top: 20px;
}
.o-margin--top-30 {
  margin-top: 30px;
}
.o-margin--top-40 {
  margin-top: 40px;
}
.o-margin--top-50 {
  margin-top: 50px;
}
.o-margin--left-10 {
  margin-left: 10px;
}
.o-margin--left-20 {
  margin-left: 20px;
}
.o-margin--left-30 {
  margin-left: 30px;
}
.o-margin--left-40 {
  margin-left: 40px;
}
.o-margin--left-50 {
  margin-left: 50px;
}
.o-margin--right-10 {
  margin-right: 10px;
}
.o-margin--right-20 {
  margin-right: 20px;
}
.o-margin--right-30 {
  margin-right: 30px;
}
.o-margin--right-40 {
  margin-right: 40px;
}
.o-margin--right-50 {
  margin-right: 50px;
}

.o-padding--bottom-0 {
  padding-bottom: 0;
}
.o-padding--bottom-10 {
  padding-bottom: 10px;
}
.o-padding--bottom-20 {
  padding-bottom: 20px;
}
.o-padding--bottom-30 {
  padding-bottom: 30px;
}
.o-padding--bottom-40 {
  padding-bottom: 40px;
}
.o-padding--bottom-50 {
  padding-bottom: 50px;
}
.o-padding--top-10 {
  padding-top: 10px;
}
.o-padding--top-20 {
  padding-top: 20px;
}
.o-padding--top-30 {
  padding-top: 30px;
}
.o-padding--top-40 {
  padding-top: 40px;
}
.o-padding--top-50 {
  padding-top: 50px;
}
.o-padding--left-10 {
  padding-left: 10px;
}
.o-padding--left-20 {
  padding-left: 20px;
}
.o-padding--left-30 {
  padding-left: 30px;
}
.o-padding--left-40 {
  padding-left: 40px;
}
.o-padding--left-50 {
  padding-left: 50px;
}
.o-padding--right-10 {
  padding-right: 10px;
}
.o-padding--right-20 {
  padding-right: 20px;
}
.o-padding--right-30 {
  padding-right: 30px;
}
.o-padding--right-40 {
  padding-right: 40px;
}
.o-padding--right-50 {
  padding-right: 50px;
}

.o-btn {
  vertical-align: middle;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease-out;
  border: none;
  border-radius: 5px;
  line-height: 1;
  outline: none;
  padding: 15px 30px;
  font-weight: 600;
  position: relative;
  display: inline-block;
  white-space: nowrap;
  /* &:hover,
  &:focus,
  &:active {
    color: $white;
    &:before {
      width: calc(100% + 9px);
      height: calc(100% + 9px);
      border-radius: 30px;
    }
  } */
}
.o-btn, .o-btn:hover, .o-btn:focus, .o-btn:active {
  text-decoration: none;
  outline: none;
}
.o-btn:disabled {
  background-color: #f5f5f5;
  color: #878787;
  border: none;
  pointer-events: none;
}
.o-btn--block {
  display: block;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .o-btn--full-sm {
    width: 100%;
  }
}
.o-btn--large {
  padding: 15px 65px;
}
.o-btn--full {
  width: 90%;
}
.o-btn--block {
  display: block;
  width: 100%;
}
.o-btn--danger {
  background-color: transparent;
}
.o-btn--danger, .o-btn--danger:hover, .o-btn--danger:focus, .o-btn--danger:active {
  color: red;
}
.o-btn--secondary {
  background-color: #fff;
  color: #9c63ff;
  border: 2px solid #9c63ff;
}
.o-btn--secondary:hover {
  color: #000;
  background-color: #9c63ff;
}
.o-btn--secondary:disabled {
  background-color: #fff;
  color: #a5a9aa;
  border-color: #a5a9aa;
  cursor: default;
}
.o-btn--secondary-disabled {
  border: 2px solid #a5a9aa;
  background-color: #fff;
  color: #a5a9aa;
  border-color: #a5a9aa;
  cursor: default;
}
.o-btn--secondary-xs {
  text-transform: lowercase;
  padding: 8px;
  font-weight: 400;
}
.o-btn--pink {
  background-color: #ff51a0;
  color: #fff;
  border: 1px solid #ff51a0;
}
.o-btn--pink:visited, .o-btn--pink:active, .o-btn--pink:focus {
  background-color: #ff51a0;
  color: #fff;
  border: 1px solid #ff51a0;
  outline: none;
  box-shadow: none;
}
.o-btn--pink:hover {
  background-color: #fff;
  color: #ff51a0;
}
.o-btn--save {
  width: 95%;
  margin: 0 auto;
}
.o-btn--subscribed {
  display: flex;
}
.o-btn--subscribed:after {
  content: "";
  background-color: #9c63ff;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cg data-name='Icon feather-log-out' fill='none' stroke='%238273e8' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath data-name='Caminho 3' d='M6.333 17H2.778A1.778 1.778 0 011 15.222V2.778A1.778 1.778 0 012.778 1h3.555'/%3E%3Cpath data-name='Caminho 4' d='M12.556 13.445L17 9.001l-4.444-4.445'/%3E%3Cpath data-name='Caminho 5' d='M17 9H6.333'/%3E%3C/g%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cg data-name='Icon feather-log-out' fill='none' stroke='%238273e8' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath data-name='Caminho 3' d='M6.333 17H2.778A1.778 1.778 0 011 15.222V2.778A1.778 1.778 0 012.778 1h3.555'/%3E%3Cpath data-name='Caminho 4' d='M12.556 13.445L17 9.001l-4.444-4.445'/%3E%3Cpath data-name='Caminho 5' d='M17 9H6.333'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: 16px;
  height: 16px;
  margin-left: 10px;
}
.o-btn--subscribed:hover:after {
  background-color: #000;
}
.o-btn--menu {
  background-color: #9c63ff;
  color: #fff;
  border: 1px solid #9c63ff;
}
.o-btn--filter {
  background-color: #000;
  color: #fff;
  transition: 0.2s linear;
  border: 2px solid #000;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 1;
}
@media (min-width: 1025px) {
  .o-btn--filter {
    display: none;
  }
}
.o-btn--clear {
  background-color: #fff;
  color: #000;
  transition: 0.2s linear;
  border: 2px solid #000;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 12px;
  line-height: 1;
}
@media (min-width: 1025px) {
  .o-btn--clear {
    display: none;
  }
}
.o-btn--brand {
  background-color: #000;
  color: #fff;
  transition: 0.2s linear;
  border: 2px solid #000;
}
.o-btn--brand:hover {
  background-color: #9c63ff;
  cursor: pointer;
  color: #000;
  border-color: #9c63ff;
}
.o-btn--brand:disabled {
  background-color: #fff;
  color: #a5a9aa;
  border-color: #a5a9aa;
  background-color: #f0f0f0;
  cursor: default;
}
.o-btn--brand-disabled {
  background-color: #fff;
  color: #a5a9aa;
  border-color: #a5a9aa;
  background-color: #f0f0f0;
  cursor: default;
}
.o-btn--brand-outline {
  box-shadow: inset 0 0 0 2px #000;
  color: #000;
}
.o-btn--brand-outline:hover {
  background-color: #000;
  color: #fff;
}
.o-btn--xs {
  font-size: 13px;
  font-weight: 400;
  padding: 8px;
  text-transform: lowercase;
}
@media only screen and (max-width: 1024px) {
  .o-btn--full-sm {
    width: 100%;
  }
}
.o-btn--dark {
  background-color: #a8293f;
  color: #fff;
  flex: 1;
}
.o-btn--dark:hover {
  background-color: #fff;
  color: #f2384f;
}
.o-btn--yellow {
  background-color: #fff;
  color: #f3a71e;
  flex: 1;
}
.o-btn--yellow:hover {
  background-color: #f3a71e;
  color: #fff;
}
.o-btn--projects {
  border: 1px solid #f3a71e;
  background-color: #f3a71e;
  color: #fff;
  flex: 1;
}
.o-btn--projects:hover {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.o-btn--lightgreen {
  background-color: #fff;
  color: #1bc9ac;
  flex: 1;
}
.o-btn--lightgreen:hover {
  background-color: #1bc9ac;
  color: #fff;
}
.o-btn--width-200 {
  max-width: 200px;
  width: 100%;
}
.o-btn--min-w-220 {
  min-width: 220px;
}
.o-btn--delete {
  background-color: #ff3126;
  color: #fff;
  border: 1px solid #ff3126;
  width: 50px;
  padding: 15px;
}
.o-btn--delete:hover {
  background-color: #ff190d;
}
.o-btn--green {
  background-color: green;
  color: #fff;
}
.o-btn--green:visited {
  color: #fff;
}
.o-btn--social {
  background-color: transparent;
  border: 1px solid #f56b0f;
}
.o-btn--social .fa {
  color: #f56b0f;
}
.o-btn--social:hover {
  background-color: #f56b0f;
}
.o-btn--social:hover .fa {
  color: #fff;
}
.o-btn--low {
  padding: 12px 30px;
}
@media (max-width: 1023px) {
  .o-btn--desk {
    display: none;
  }
}
.o-btn--secondary-opacity {
  background-color: rgba(156, 99, 255, 0.4);
  color: #fff;
}
.o-btn--transparent {
  background-color: transparent;
  box-shadow: none;
  color: #9c63ff;
  position: relative;
  overflow: hidden;
}
.o-btn--transparent:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #9c63ff;
  left: -100%;
  top: 0;
  position: absolute;
  z-index: -1;
  transition: 0.2s ease-out;
}
.o-btn--transparent:after {
  background-color: #9c63ff;
  transition: 0.2s ease-out;
}
.o-btn--transparent:hover {
  color: #fff;
  box-shadow: none;
}
.o-btn--transparent:hover:before {
  left: 0;
}
.o-btn--transparent:hover:after {
  background-color: #fff;
}
.o-btn--border-primary {
  border: 1px solid #9c63ff;
}
.o-btn--download {
  padding-left: 50px;
}
.o-btn--download span {
  position: relative;
  line-height: 1.3;
}
.o-btn--download span:after {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cg data-name='Icon feather-download' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath data-name='Caminho 2092' d='M15 10.33v3.11A1.56 1.56 0 0113.44 15H2.56A1.56 1.56 0 011 13.44v-3.1'/%3E%3Cpath data-name='Caminho 2093' d='M4.11 6.44L8 10.34l3.89-3.9'/%3E%3Cpath data-name='Caminho 2094' d='M8 10.33V1'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
}

.o-btn-arrow {
  position: absolute;
  bottom: -55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 8px;
  width: 30px;
  height: 20px;
  z-index: 10;
  outline: none;
  transition: 0.2s ease-out;
  padding: 0;
  transform: translateX(-50%);
}
.o-btn-arrow:before {
  content: "";
  width: 25px;
  height: 20px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 20'%3E%3Cpath d='M9.311.276a1 1 0 011.379 1.448L3.019 9H23a1 1 0 110 2H3.051l7.639 7.276a1 1 0 11-1.379 1.448l-8.725-8.31A2 2 0 01.6 8.569z' fill='%23fff'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 20'%3E%3Cpath d='M9.311.276a1 1 0 011.379 1.448L3.019 9H23a1 1 0 110 2H3.051l7.639 7.276a1 1 0 11-1.379 1.448l-8.725-8.31A2 2 0 01.6 8.569z' fill='%23fff'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #000;
}
.o-btn-arrow--white:before {
  background-color: #fff;
}
.o-btn-arrow--purple:before {
  background-color: #9c63ff;
}
.o-btn-arrow:focus, .o-btn-arrow:active {
  outline: 0;
}
.o-btn-arrow.slick-disabled {
  opacity: 0.6;
  cursor: initial;
}
.o-btn-arrow--prev {
  left: calc(50% - 40px);
  padding-right: 2px;
}
.o-btn-arrow--next {
  left: calc(50% + 40px);
  padding-left: 2px;
}
.o-btn-arrow--next:before {
  transform: rotateZ(180deg);
}

.dropdown {
  bottom: 0;
  left: 0;
  margin-bottom: 0 !important;
  padding: 0;
}
.dropdown .dropdown-toggle {
  width: 100%;
}
.dropdown-item {
  text-transform: capitalize !important;
}

.o-hr {
  display: block;
  border: 0;
  border-top: 1px solid #999999;
  margin: 40px 0 20px;
}

.o-input--faq {
  width: 100%;
  border: none;
  height: 40px;
  padding-left: 20px;
  margin-bottom: 20px;
  border: 2px solid #9c63ff;
  border-radius: 8px;
  outline: none;
}
.o-input--file input[type=file] {
  display: none;
}
.o-input--file label {
  width: 100%;
  height: 97px;
  border: 1px solid #ccc;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  background-color: #ccc;
  color: #696969;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 3.5;
  cursor: pointer;
  margin-bottom: 10px;
  box-sizing: border-box;
}
.o-input--container {
  width: 200px;
  margin: 30px auto;
  text-align: center;
  position: relative;
}
.o-input--thumb {
  width: 150px;
  height: 150px;
}
.o-input--fixed {
  position: absolute;
  right: 0;
  bottom: 0;
}
.o-input--link {
  border: 1px solid #878787;
  border-radius: 4px;
  position: relative;
  padding: 8px 8px 8px 40px;
  display: block;
  height: 32px;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  outline: none;
}
.o-input--link p {
  margin: 0;
  font-size: 14px;
  color: #383838;
  line-height: 14px;
  white-space: nowrap;
}
.o-input--link::before {
  position: absolute;
  content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'><defs><style>.a{fill:rgb(56,56,56);}.b{fill:none;}</style></defs><g transform='translate(-525 -344)'><path class='a' d='M10.206,5.793a4.748,4.748,0,0,1,.011,6.706l-.011.012-2.1,2.1A4.75,4.75,0,0,1,1.389,7.893l1.16-1.16a.5.5,0,0,1,.853.331,5.758,5.758,0,0,0,.3,1.648.5.5,0,0,1-.118.519l-.409.409a2.25,2.25,0,1,0,3.162,3.2l2.1-2.1a2.249,2.249,0,0,0,0-3.182,2.341,2.341,0,0,0-.323-.268A.5.5,0,0,1,7.9,6.9a1.245,1.245,0,0,1,.366-.931l.658-.658a.5.5,0,0,1,.643-.054,4.765,4.765,0,0,1,.641.537Zm4.4-4.4a4.755,4.755,0,0,0-6.717,0l-2.1,2.1L5.782,3.5a4.751,4.751,0,0,0,.653,7.243.5.5,0,0,0,.643-.054l.658-.658A1.245,1.245,0,0,0,8.1,9.1a.5.5,0,0,0-.217-.394,2.341,2.341,0,0,1-.323-.268,2.249,2.249,0,0,1,0-3.182l2.1-2.1a2.25,2.25,0,1,1,3.162,3.2l-.409.409a.5.5,0,0,0-.118.519,5.758,5.758,0,0,1,.3,1.648.5.5,0,0,0,.853.331l1.16-1.16a4.755,4.755,0,0,0,0-6.717Z' transform='translate(533.001 352)'/><rect class='b' width='16' height='16' transform='translate(533 352)'/></g><rect class='b' width='8' height='32' transform='translate(24)'/><rect class='b' width='8' height='32'/><rect class='b' width='32' height='8'/><rect class='b' width='32' height='8' transform='translate(0 24)'/></svg>");
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  background-color: #ccc;
}
.o-input--cover {
  width: 60px;
  height: 60px;
}
.o-input--cover input[type=file] {
  display: none;
}
.o-input--cover label {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: #cccdde;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 120%;
  cursor: pointer;
  margin-bottom: 10px;
  box-sizing: border-box;
}
.o-input--text {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  line-height: 120%;
  width: 100%;
  border: 1px solid #ccc;
  outline-color: #ccc;
  padding: 8px 5px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}
.o-input--textarea {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  line-height: 120%;
  width: 100%;
  height: 120px;
  border: 1px solid #ccc;
  outline-color: #ccc;
  padding: 8px 5px;
  border-radius: 5px;
}

.o-input-select {
  font-size: 14px;
  width: 100%;
  display: block;
  border: 1px solid #ccc;
  padding: 10px 5px;
  border-radius: 5px;
  margin: 0;
  outline: none;
}
.o-input-select--small-height {
  padding: 7px 5px;
}

input[type=select]:focus {
  width: 100%;
  display: block;
  border: 1px solid #ccc;
  padding: 8px 5px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  margin: 0;
}

.o-label {
  display: inline-block;
  color: #f56b0f;
  font-size: 12px;
  font-family: "Roboto", sans-serif;
}
.o-label--button {
  border: 1px solid #9c63ff;
  color: #9c63ff;
  padding: 5px 15px;
}
@media (max-width: 768px) {
  .o-label--button {
    text-align: center;
    max-width: 120px;
  }
}
.o-label--rounded {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
@media (max-width: 1023px) {
  .o-label {
    display: block;
    width: 100%;
  }
}
.o-label--thin {
  font-weight: 300;
}
.o-label--radio {
  position: relative;
  overflow: hidden;
  padding-left: 30px;
}
.o-label--radio::before, .o-label--radio::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}
.o-label--radio::before {
  width: 18px;
  height: 18px;
  border: 1px solid #f1f3f6;
  background-color: #fff;
}
.o-label--radio::after {
  background-color: #e34326;
  width: 10px;
  height: 10px;
  margin: 4px 0 0 4px;
  opacity: 0;
  transition: opacity 0.2s;
}
.o-label--radio input {
  position: absolute;
  left: -30px;
}
.o-label--radio.is-active::after {
  opacity: 1;
}
.o-form-inline .o-label + .o-label {
  margin-top: 10px;
}
@media (min-width: 1023px) {
  .o-form-inline .o-label + .o-label {
    margin-top: 0;
    margin-left: 38px;
  }
}
.o-label-donation {
  display: inline-block;
  position: relative;
  border: 1px solid #9c63ff;
  text-align: center;
  margin-right: 16px;
  cursor: pointer;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border-radius: 4px;
  box-sizing: border-box;
  width: 100px;
  height: 40px;
}
.o-label-donation input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.o-label-donation .checkmark {
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 40px;
  background-color: transparent;
  color: #9c63ff;
  z-index: 0;
  line-height: 40px;
}
.o-label-donation .checkmark span {
  font-size: 16px;
  font-weight: 900;
}
.o-label-donation:hover {
  background-color: #9c63ff;
}
.o-label-donation:hover p {
  color: #FFF;
}
.o-label-donation input:checked ~ .checkmark {
  background-color: #9c63ff;
  color: #FFF;
}
.o-label-payment-type {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 0;
}
.o-label-payment-type svg {
  margin: 0 0 0 10px;
  width: 30px;
  height: 20px;
}
.o-label-payment-type p {
  text-align: left;
  margin: 0;
  padding: 0;
}
.o-label-text {
  position: relative;
  max-width: 150px;
}
.o-label-text:before {
  position: absolute;
  content: "R$";
  left: 0;
  top: 4px;
  width: 40px;
  height: 38px;
  border: 1px solid #9c63ff;
  border-radius: 4px 0 0 4px;
  background-color: #F5F5F5;
  z-index: 1;
  color: #9c63ff;
  font-size: 14px;
  font-weight: 600;
  line-height: 38px;
  text-align: center;
}
.o-label-text input[type=radio] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.o-label-text input[type=text] {
  border: none;
  outline: none;
  padding-left: 50px;
  box-sizing: border-box;
  position: relative;
  border: 1px solid #9c63ff;
  border-radius: 4px;
}
.o-label-alert {
  color: red;
  font-size: 12px;
}
.o-label--card {
  border: 1px solid #f56b0f;
  color: #f56b0f;
  background-color: rgba(245, 107, 15, 0.1);
  font-size: 12px;
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 12px;
}

.o-link {
  font-size: 16px;
  color: #878787;
  display: flex;
  justify-content: center;
  align-items: center;
}
.o-link:hover {
  color: #9c63ff;
  text-decoration: none;
}
.o-link svg {
  max-width: 20px;
  max-height: 20px;
  margin: 0 10px;
  stroke: #9c63ff;
}
.o-link--white:hover {
  color: #fff;
}
.o-link--white svg {
  stroke: #fff;
}
.o-link--small svg {
  max-width: 15px;
  max-height: 15px;
}

.o-custom-select {
  position: relative;
  display: inline-block;
  background-color: #f0f0f0;
}
.o-custom-select::after {
  position: absolute;
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  top: 12px;
  right: 15px;
  pointer-events: none;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 451.8 451.8'%3E%3Cpath fill='%2305194e' d='M226 354.7c-8.2 0-16.3-3-22.4-9.3L9.3 151.2A31.6 31.6 0 1154 106.4l172 172 171.8-172a31.6 31.6 0 0144.8 44.8L248.3 345.4a31.5 31.5 0 01-22.4 9.3z'/%3E%3C/svg%3E");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.o-custom-select .o-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 9px 45px 10px 13px;
  color: #f56b0f;
  font-size: 14px;
  background-color: transparent;
  border-radius: 0;
  border-color: #f56b0f;
  outline: none;
  text-transform: uppercase;
}
@media (min-width: 767px) {
  .o-custom-select .o-select {
    width: 210px;
  }
}
.o-custom-select + .o-custom-select {
  margin-left: 6px;
}

.o-checkbox {
  position: relative;
  margin: 0 20px;
}
.o-checkbox > input:not(:checked), .o-checkbox > input:checked {
  position: absolute;
  left: -9999px;
}
.o-checkbox > input:not(:checked) + label, .o-checkbox > input:checked + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 300;
  color: inherit;
}
.o-checkbox > input:not(:checked) + label:before, .o-checkbox > input:checked + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: #ffffff;
  border: 1px solid #383838;
  border-radius: 3px;
}
.o-checkbox > input:not(:checked) + label:after, .o-checkbox > input:checked + label:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 1px;
  left: 1px;
  background-color: #383838;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Ctitle%3Ebackground%3C/title%3E%3Crect fill='none' id='canvas_background' height='402' width='582' y='-1' x='-1'/%3E%3C/g%3E%3Cg%3E%3Ctitle%3ELayer 1%3C/title%3E%3Cpath fill='%23ffffff' id='svg_1' fill-rule='evenodd' d='m21.652,3.211c-0.293,-0.295 -0.77,-0.295 -1.061,0l-11.181,11.129c-0.293,0.297 -0.771,0.297 -1.062,0l-4.899,-4.989c-0.145,-0.148 -0.335,-0.221 -0.526,-0.222c-0.193,-0.001 -0.389,0.072 -0.536,0.222l-2.165,1.946c-0.144,0.148 -0.222,0.333 -0.222,0.526c0,0.194 0.078,0.397 0.223,0.544l4.94,5.184c0.292,0.296 0.771,0.776 1.062,1.07l2.124,2.141c0.292,0.293 0.769,0.293 1.062,0l14.366,-14.34c0.293,-0.294 0.293,-0.777 0,-1.071l-2.125,-2.14z' clip-rule='evenodd'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.2s, transform 0.2s;
}
.o-checkbox > input:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.o-checkbox > input:checked + label:after {
  opacity: 1;
  transform: scale(1);
}

.o-ttl {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
}
.o-ttl--title {
  color: #333;
  font-size: 20px;
  font-weight: bold;
}
.o-ttl--title-big {
  font-size: 30px;
}
.o-ttl--subtitle {
  color: #333;
  font-size: 16px;
  font-weight: normal;
  text-transform: inherit;
}
.o-ttl--text {
  color: #4d4d4f;
  font-size: 14px;
}
.o-ttl--lineheight-1 {
  line-height: 1;
}
.o-ttl--lineheight-1-2 {
  line-height: 1.2;
}
.o-ttl--lineheight-1-3 {
  line-height: 1.3;
}
.o-ttl--lineheight-2 {
  line-height: 1.5;
}
.o-ttl--color-brand {
  color: #9c63ff;
}
.o-ttl--color-gray {
  color: #4d4d4f;
}
.o-ttl--color-white {
  color: #fff;
}
.o-ttl--color-yellow {
  color: #f9c55d;
}
.o-ttl--uppercase {
  text-transform: uppercase;
}
.o-ttl--weight-bold {
  font-weight: bold;
}
.o-ttl--link {
  color: #9c63ff;
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid #9c63ff;
}
.o-ttl--link:hover, .o-ttl--link:visited {
  color: #7c30ff;
  text-decoration: none;
}
.o-ttl--size-10 {
  font-size: 10px;
}
.o-ttl--size-11 {
  font-size: 11px;
}
.o-ttl--size-12 {
  font-size: 12px;
}
.o-ttl--size-13 {
  font-size: 13px;
}
.o-ttl--size-14 {
  font-size: 14px;
}
.o-ttl--size-15 {
  font-size: 15px;
}
.o-ttl--size-16 {
  font-size: 16px;
}
.o-ttl--size-18 {
  font-size: 18px;
}
.o-ttl--size-20 {
  font-size: 20px;
}
.o-ttl--size-24 {
  font-size: 24px;
}
.o-ttl--size-25 {
  font-size: 25px;
}

.o-textarea {
  font-size: 0.8125rem;
  font-style: italic;
  line-height: 2;
  border: 1px solid #d0d0d0;
  padding: 11px 15px;
  display: block;
  width: 100%;
  height: 150px;
  outline: none;
}
.o-textarea.error {
  border: 1px solid #e34326;
}

.tab {
  display: none;
}
.tab.active {
  display: block;
}

.fa-icon--report {
  margin-right: 10px;
  font-size: 20px;
}
.fa-icon--report-pending {
  color: #ccc;
}
.fa-icon--report-ok {
  color: #28a745;
}

.o-nav {
  background-color: #9c63ff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  box-sizing: border-box;
  position: fixed;
  z-index: 10;
  top: 0;
}
.o-nav button {
  margin-bottom: 0;
}

.o-menu {
  padding: 10px;
  box-sizing: border-box;
  position: fixed;
  z-index: 99;
  right: -360px;
  top: 66px;
  width: 360px;
  min-height: 380px;
  background-color: #fdfdfd;
  display: flex;
  flex-flow: row wrap;
  transition: right 0.2s linear;
}
.o-menu--opened {
  right: 0;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 1px 2px #CCCCCC;
}
.o-menu .o-row {
  width: 100%;
  justify-content: space-between;
}
.o-menu .o-row a {
  width: 100%;
  margin: 0 5px;
}

.o-flex {
  display: flex;
}
.o-flex--fww {
  flex-wrap: wrap;
}
.o-flex--gap-5 {
  gap: 5px;
}
.o-flex--gap-10 {
  gap: 10px;
}
.o-flex--gap-15 {
  gap: 15px;
}
.o-flex--gap-20 {
  gap: 20px;
}
.o-flex--fd-c {
  flex-direction: column;
}
.o-flex--jc-ct {
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .o-flex--jc-ct-mob {
    justify-content: center;
  }
}
.o-flex--jc-sa {
  justify-content: space-around;
}
.o-flex--jc-sb {
  justify-content: space-between;
}
.o-flex--jc-fs {
  justify-content: flex-start;
}
.o-flex--jc-fe {
  justify-content: flex-end;
}
.o-flex--ai-ct {
  align-items: center;
}
.o-flex--fdc {
  flex-direction: column;
}
.o-flex--fdr {
  flex-direction: row;
}
.o-flex--jcc {
  justify-content: center;
}
.o-flex--jca {
  justify-content: space-around;
}
.o-flex--jcb {
  justify-content: space-between;
}
.o-flex--jcs {
  justify-content: flex-start;
}
.o-flex--jce {
  justify-content: flex-end;
}
@media only screen and (max-width: 1024px) {
  .o-flex--jcc-m {
    justify-content: center;
  }
}
.o-flex--aic {
  align-items: center;
}
.o-flex--aifs {
  align-items: flex-start;
}

.o-percent {
  display: flex;
  align-items: center;
  gap: 10px;
}
.o-percent > span:nth-child(1) {
  width: 100px;
  height: 6px;
  border: 1px solid #9c63ff;
  position: relative;
}
.o-percent > span:nth-child(1):before {
  content: "";
  background-color: #9c63ff;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.o-percent > span:nth-child(2) {
  color: #9c63ff;
  font-size: 14px;
  font-weight: 400;
}
.o-percent[data-0] > span:nth-child(1):before {
  width: 0%;
}
.o-percent[data-1] > span:nth-child(1):before {
  width: 1%;
}
.o-percent[data-2] > span:nth-child(1):before {
  width: 2%;
}
.o-percent[data-3] > span:nth-child(1):before {
  width: 3%;
}
.o-percent[data-4] > span:nth-child(1):before {
  width: 4%;
}
.o-percent[data-5] > span:nth-child(1):before {
  width: 5%;
}
.o-percent[data-6] > span:nth-child(1):before {
  width: 6%;
}
.o-percent[data-7] > span:nth-child(1):before {
  width: 7%;
}
.o-percent[data-8] > span:nth-child(1):before {
  width: 8%;
}
.o-percent[data-9] > span:nth-child(1):before {
  width: 9%;
}
.o-percent[data-10] > span:nth-child(1):before {
  width: 10%;
}
.o-percent[data-11] > span:nth-child(1):before {
  width: 11%;
}
.o-percent[data-12] > span:nth-child(1):before {
  width: 12%;
}
.o-percent[data-13] > span:nth-child(1):before {
  width: 13%;
}
.o-percent[data-14] > span:nth-child(1):before {
  width: 14%;
}
.o-percent[data-15] > span:nth-child(1):before {
  width: 15%;
}
.o-percent[data-16] > span:nth-child(1):before {
  width: 16%;
}
.o-percent[data-17] > span:nth-child(1):before {
  width: 17%;
}
.o-percent[data-18] > span:nth-child(1):before {
  width: 18%;
}
.o-percent[data-19] > span:nth-child(1):before {
  width: 19%;
}
.o-percent[data-20] > span:nth-child(1):before {
  width: 20%;
}
.o-percent[data-21] > span:nth-child(1):before {
  width: 21%;
}
.o-percent[data-22] > span:nth-child(1):before {
  width: 22%;
}
.o-percent[data-23] > span:nth-child(1):before {
  width: 23%;
}
.o-percent[data-24] > span:nth-child(1):before {
  width: 24%;
}
.o-percent[data-25] > span:nth-child(1):before {
  width: 25%;
}
.o-percent[data-26] > span:nth-child(1):before {
  width: 26%;
}
.o-percent[data-27] > span:nth-child(1):before {
  width: 27%;
}
.o-percent[data-28] > span:nth-child(1):before {
  width: 28%;
}
.o-percent[data-29] > span:nth-child(1):before {
  width: 29%;
}
.o-percent[data-30] > span:nth-child(1):before {
  width: 30%;
}
.o-percent[data-31] > span:nth-child(1):before {
  width: 31%;
}
.o-percent[data-32] > span:nth-child(1):before {
  width: 32%;
}
.o-percent[data-33] > span:nth-child(1):before {
  width: 33%;
}
.o-percent[data-34] > span:nth-child(1):before {
  width: 34%;
}
.o-percent[data-35] > span:nth-child(1):before {
  width: 35%;
}
.o-percent[data-36] > span:nth-child(1):before {
  width: 36%;
}
.o-percent[data-37] > span:nth-child(1):before {
  width: 37%;
}
.o-percent[data-38] > span:nth-child(1):before {
  width: 38%;
}
.o-percent[data-39] > span:nth-child(1):before {
  width: 39%;
}
.o-percent[data-40] > span:nth-child(1):before {
  width: 40%;
}
.o-percent[data-41] > span:nth-child(1):before {
  width: 41%;
}
.o-percent[data-42] > span:nth-child(1):before {
  width: 42%;
}
.o-percent[data-43] > span:nth-child(1):before {
  width: 43%;
}
.o-percent[data-44] > span:nth-child(1):before {
  width: 44%;
}
.o-percent[data-45] > span:nth-child(1):before {
  width: 45%;
}
.o-percent[data-46] > span:nth-child(1):before {
  width: 46%;
}
.o-percent[data-47] > span:nth-child(1):before {
  width: 47%;
}
.o-percent[data-48] > span:nth-child(1):before {
  width: 48%;
}
.o-percent[data-49] > span:nth-child(1):before {
  width: 49%;
}
.o-percent[data-50] > span:nth-child(1):before {
  width: 50%;
}
.o-percent[data-51] > span:nth-child(1):before {
  width: 51%;
}
.o-percent[data-52] > span:nth-child(1):before {
  width: 52%;
}
.o-percent[data-53] > span:nth-child(1):before {
  width: 53%;
}
.o-percent[data-54] > span:nth-child(1):before {
  width: 54%;
}
.o-percent[data-55] > span:nth-child(1):before {
  width: 55%;
}
.o-percent[data-56] > span:nth-child(1):before {
  width: 56%;
}
.o-percent[data-57] > span:nth-child(1):before {
  width: 57%;
}
.o-percent[data-58] > span:nth-child(1):before {
  width: 58%;
}
.o-percent[data-59] > span:nth-child(1):before {
  width: 59%;
}
.o-percent[data-60] > span:nth-child(1):before {
  width: 60%;
}
.o-percent[data-61] > span:nth-child(1):before {
  width: 61%;
}
.o-percent[data-62] > span:nth-child(1):before {
  width: 62%;
}
.o-percent[data-63] > span:nth-child(1):before {
  width: 63%;
}
.o-percent[data-64] > span:nth-child(1):before {
  width: 64%;
}
.o-percent[data-65] > span:nth-child(1):before {
  width: 65%;
}
.o-percent[data-66] > span:nth-child(1):before {
  width: 66%;
}
.o-percent[data-67] > span:nth-child(1):before {
  width: 67%;
}
.o-percent[data-68] > span:nth-child(1):before {
  width: 68%;
}
.o-percent[data-69] > span:nth-child(1):before {
  width: 69%;
}
.o-percent[data-70] > span:nth-child(1):before {
  width: 70%;
}
.o-percent[data-71] > span:nth-child(1):before {
  width: 71%;
}
.o-percent[data-72] > span:nth-child(1):before {
  width: 72%;
}
.o-percent[data-73] > span:nth-child(1):before {
  width: 73%;
}
.o-percent[data-74] > span:nth-child(1):before {
  width: 74%;
}
.o-percent[data-75] > span:nth-child(1):before {
  width: 75%;
}
.o-percent[data-76] > span:nth-child(1):before {
  width: 76%;
}
.o-percent[data-77] > span:nth-child(1):before {
  width: 77%;
}
.o-percent[data-78] > span:nth-child(1):before {
  width: 78%;
}
.o-percent[data-79] > span:nth-child(1):before {
  width: 79%;
}
.o-percent[data-80] > span:nth-child(1):before {
  width: 80%;
}
.o-percent[data-81] > span:nth-child(1):before {
  width: 81%;
}
.o-percent[data-82] > span:nth-child(1):before {
  width: 82%;
}
.o-percent[data-83] > span:nth-child(1):before {
  width: 83%;
}
.o-percent[data-84] > span:nth-child(1):before {
  width: 84%;
}
.o-percent[data-85] > span:nth-child(1):before {
  width: 85%;
}
.o-percent[data-86] > span:nth-child(1):before {
  width: 86%;
}
.o-percent[data-87] > span:nth-child(1):before {
  width: 87%;
}
.o-percent[data-88] > span:nth-child(1):before {
  width: 88%;
}
.o-percent[data-89] > span:nth-child(1):before {
  width: 89%;
}
.o-percent[data-90] > span:nth-child(1):before {
  width: 90%;
}
.o-percent[data-91] > span:nth-child(1):before {
  width: 91%;
}
.o-percent[data-92] > span:nth-child(1):before {
  width: 92%;
}
.o-percent[data-93] > span:nth-child(1):before {
  width: 93%;
}
.o-percent[data-94] > span:nth-child(1):before {
  width: 94%;
}
.o-percent[data-95] > span:nth-child(1):before {
  width: 95%;
}
.o-percent[data-96] > span:nth-child(1):before {
  width: 96%;
}
.o-percent[data-97] > span:nth-child(1):before {
  width: 97%;
}
.o-percent[data-98] > span:nth-child(1):before {
  width: 98%;
}
.o-percent[data-99] > span:nth-child(1):before {
  width: 99%;
}
.o-percent[data-100] > span:nth-child(1):before {
  width: 100%;
}
.o-percent--colored[data-0] > span:nth-child(1) {
  border-color: #fc6220;
}
.o-percent--colored[data-0] > span:nth-child(1):before {
  background-color: #fc6220;
}
.o-percent--colored[data-0] > span:nth-child(2) {
  color: #fc6220;
}
.o-percent--colored[data-1] > span:nth-child(1) {
  border-color: #fc6220;
}
.o-percent--colored[data-1] > span:nth-child(1):before {
  background-color: #fc6220;
}
.o-percent--colored[data-1] > span:nth-child(2) {
  color: #fc6220;
}
.o-percent--colored[data-2] > span:nth-child(1) {
  border-color: #fc6220;
}
.o-percent--colored[data-2] > span:nth-child(1):before {
  background-color: #fc6220;
}
.o-percent--colored[data-2] > span:nth-child(2) {
  color: #fc6220;
}
.o-percent--colored[data-3] > span:nth-child(1) {
  border-color: #fc6220;
}
.o-percent--colored[data-3] > span:nth-child(1):before {
  background-color: #fc6220;
}
.o-percent--colored[data-3] > span:nth-child(2) {
  color: #fc6220;
}
.o-percent--colored[data-4] > span:nth-child(1) {
  border-color: #fc6220;
}
.o-percent--colored[data-4] > span:nth-child(1):before {
  background-color: #fc6220;
}
.o-percent--colored[data-4] > span:nth-child(2) {
  color: #fc6220;
}
.o-percent--colored[data-5] > span:nth-child(1) {
  border-color: #fc6220;
}
.o-percent--colored[data-5] > span:nth-child(1):before {
  background-color: #fc6220;
}
.o-percent--colored[data-5] > span:nth-child(2) {
  color: #fc6220;
}
.o-percent--colored[data-6] > span:nth-child(1) {
  border-color: #fc6220;
}
.o-percent--colored[data-6] > span:nth-child(1):before {
  background-color: #fc6220;
}
.o-percent--colored[data-6] > span:nth-child(2) {
  color: #fc6220;
}
.o-percent--colored[data-7] > span:nth-child(1) {
  border-color: #fc6220;
}
.o-percent--colored[data-7] > span:nth-child(1):before {
  background-color: #fc6220;
}
.o-percent--colored[data-7] > span:nth-child(2) {
  color: #fc6220;
}
.o-percent--colored[data-8] > span:nth-child(1) {
  border-color: #fc6220;
}
.o-percent--colored[data-8] > span:nth-child(1):before {
  background-color: #fc6220;
}
.o-percent--colored[data-8] > span:nth-child(2) {
  color: #fc6220;
}
.o-percent--colored[data-9] > span:nth-child(1) {
  border-color: #fc6220;
}
.o-percent--colored[data-9] > span:nth-child(1):before {
  background-color: #fc6220;
}
.o-percent--colored[data-9] > span:nth-child(2) {
  color: #fc6220;
}
.o-percent--colored[data-10] > span:nth-child(1) {
  border-color: #fc6220;
}
.o-percent--colored[data-10] > span:nth-child(1):before {
  background-color: #fc6220;
}
.o-percent--colored[data-10] > span:nth-child(2) {
  color: #fc6220;
}
.o-percent--colored[data-11] > span:nth-child(1) {
  border-color: #fc6220;
}
.o-percent--colored[data-11] > span:nth-child(1):before {
  background-color: #fc6220;
}
.o-percent--colored[data-11] > span:nth-child(2) {
  color: #fc6220;
}
.o-percent--colored[data-12] > span:nth-child(1) {
  border-color: #fc6220;
}
.o-percent--colored[data-12] > span:nth-child(1):before {
  background-color: #fc6220;
}
.o-percent--colored[data-12] > span:nth-child(2) {
  color: #fc6220;
}
.o-percent--colored[data-13] > span:nth-child(1) {
  border-color: #fc6220;
}
.o-percent--colored[data-13] > span:nth-child(1):before {
  background-color: #fc6220;
}
.o-percent--colored[data-13] > span:nth-child(2) {
  color: #fc6220;
}
.o-percent--colored[data-14] > span:nth-child(1) {
  border-color: #fc6220;
}
.o-percent--colored[data-14] > span:nth-child(1):before {
  background-color: #fc6220;
}
.o-percent--colored[data-14] > span:nth-child(2) {
  color: #fc6220;
}
.o-percent--colored[data-15] > span:nth-child(1) {
  border-color: #fc6220;
}
.o-percent--colored[data-15] > span:nth-child(1):before {
  background-color: #fc6220;
}
.o-percent--colored[data-15] > span:nth-child(2) {
  color: #fc6220;
}
.o-percent--colored[data-16] > span:nth-child(1) {
  border-color: #fc6220;
}
.o-percent--colored[data-16] > span:nth-child(1):before {
  background-color: #fc6220;
}
.o-percent--colored[data-16] > span:nth-child(2) {
  color: #fc6220;
}
.o-percent--colored[data-17] > span:nth-child(1) {
  border-color: #fc6220;
}
.o-percent--colored[data-17] > span:nth-child(1):before {
  background-color: #fc6220;
}
.o-percent--colored[data-17] > span:nth-child(2) {
  color: #fc6220;
}
.o-percent--colored[data-18] > span:nth-child(1) {
  border-color: #fc6220;
}
.o-percent--colored[data-18] > span:nth-child(1):before {
  background-color: #fc6220;
}
.o-percent--colored[data-18] > span:nth-child(2) {
  color: #fc6220;
}
.o-percent--colored[data-19] > span:nth-child(1) {
  border-color: #fc6220;
}
.o-percent--colored[data-19] > span:nth-child(1):before {
  background-color: #fc6220;
}
.o-percent--colored[data-19] > span:nth-child(2) {
  color: #fc6220;
}
.o-percent--colored[data-20] > span:nth-child(1) {
  border-color: #fc6220;
}
.o-percent--colored[data-20] > span:nth-child(1):before {
  background-color: #fc6220;
}
.o-percent--colored[data-20] > span:nth-child(2) {
  color: #fc6220;
}
.o-percent--colored[data-21] > span:nth-child(1) {
  border-color: #fc6220;
}
.o-percent--colored[data-21] > span:nth-child(1):before {
  background-color: #fc6220;
}
.o-percent--colored[data-21] > span:nth-child(2) {
  color: #fc6220;
}
.o-percent--colored[data-22] > span:nth-child(1) {
  border-color: #fc6220;
}
.o-percent--colored[data-22] > span:nth-child(1):before {
  background-color: #fc6220;
}
.o-percent--colored[data-22] > span:nth-child(2) {
  color: #fc6220;
}
.o-percent--colored[data-23] > span:nth-child(1) {
  border-color: #fc6220;
}
.o-percent--colored[data-23] > span:nth-child(1):before {
  background-color: #fc6220;
}
.o-percent--colored[data-23] > span:nth-child(2) {
  color: #fc6220;
}
.o-percent--colored[data-24] > span:nth-child(1) {
  border-color: #fc6220;
}
.o-percent--colored[data-24] > span:nth-child(1):before {
  background-color: #fc6220;
}
.o-percent--colored[data-24] > span:nth-child(2) {
  color: #fc6220;
}
.o-percent--colored[data-25] > span:nth-child(1) {
  border-color: #fc6220;
}
.o-percent--colored[data-25] > span:nth-child(1):before {
  background-color: #fc6220;
}
.o-percent--colored[data-25] > span:nth-child(2) {
  color: #fc6220;
}
.o-percent--colored[data-26] > span:nth-child(1) {
  border-color: #fc6220;
}
.o-percent--colored[data-26] > span:nth-child(1):before {
  background-color: #fc6220;
}
.o-percent--colored[data-26] > span:nth-child(2) {
  color: #fc6220;
}
.o-percent--colored[data-27] > span:nth-child(1) {
  border-color: #fc6220;
}
.o-percent--colored[data-27] > span:nth-child(1):before {
  background-color: #fc6220;
}
.o-percent--colored[data-27] > span:nth-child(2) {
  color: #fc6220;
}
.o-percent--colored[data-28] > span:nth-child(1) {
  border-color: #fc6220;
}
.o-percent--colored[data-28] > span:nth-child(1):before {
  background-color: #fc6220;
}
.o-percent--colored[data-28] > span:nth-child(2) {
  color: #fc6220;
}
.o-percent--colored[data-29] > span:nth-child(1) {
  border-color: #fc6220;
}
.o-percent--colored[data-29] > span:nth-child(1):before {
  background-color: #fc6220;
}
.o-percent--colored[data-29] > span:nth-child(2) {
  color: #fc6220;
}
.o-percent--colored[data-30] > span:nth-child(1) {
  border-color: #fc6220;
}
.o-percent--colored[data-30] > span:nth-child(1):before {
  background-color: #fc6220;
}
.o-percent--colored[data-30] > span:nth-child(2) {
  color: #fc6220;
}
.o-percent--colored[data-31] > span:nth-child(1) {
  border-color: #fc6220;
}
.o-percent--colored[data-31] > span:nth-child(1):before {
  background-color: #fc6220;
}
.o-percent--colored[data-31] > span:nth-child(2) {
  color: #fc6220;
}
.o-percent--colored[data-32] > span:nth-child(1) {
  border-color: #fc6220;
}
.o-percent--colored[data-32] > span:nth-child(1):before {
  background-color: #fc6220;
}
.o-percent--colored[data-32] > span:nth-child(2) {
  color: #fc6220;
}
.o-percent--colored[data-33] > span:nth-child(1) {
  border-color: #e8c102;
}
.o-percent--colored[data-33] > span:nth-child(1):before {
  background-color: #e8c102;
}
.o-percent--colored[data-33] > span:nth-child(2) {
  color: #e8c102;
}
.o-percent--colored[data-34] > span:nth-child(1) {
  border-color: #e8c102;
}
.o-percent--colored[data-34] > span:nth-child(1):before {
  background-color: #e8c102;
}
.o-percent--colored[data-34] > span:nth-child(2) {
  color: #e8c102;
}
.o-percent--colored[data-35] > span:nth-child(1) {
  border-color: #e8c102;
}
.o-percent--colored[data-35] > span:nth-child(1):before {
  background-color: #e8c102;
}
.o-percent--colored[data-35] > span:nth-child(2) {
  color: #e8c102;
}
.o-percent--colored[data-36] > span:nth-child(1) {
  border-color: #e8c102;
}
.o-percent--colored[data-36] > span:nth-child(1):before {
  background-color: #e8c102;
}
.o-percent--colored[data-36] > span:nth-child(2) {
  color: #e8c102;
}
.o-percent--colored[data-37] > span:nth-child(1) {
  border-color: #e8c102;
}
.o-percent--colored[data-37] > span:nth-child(1):before {
  background-color: #e8c102;
}
.o-percent--colored[data-37] > span:nth-child(2) {
  color: #e8c102;
}
.o-percent--colored[data-38] > span:nth-child(1) {
  border-color: #e8c102;
}
.o-percent--colored[data-38] > span:nth-child(1):before {
  background-color: #e8c102;
}
.o-percent--colored[data-38] > span:nth-child(2) {
  color: #e8c102;
}
.o-percent--colored[data-39] > span:nth-child(1) {
  border-color: #e8c102;
}
.o-percent--colored[data-39] > span:nth-child(1):before {
  background-color: #e8c102;
}
.o-percent--colored[data-39] > span:nth-child(2) {
  color: #e8c102;
}
.o-percent--colored[data-40] > span:nth-child(1) {
  border-color: #e8c102;
}
.o-percent--colored[data-40] > span:nth-child(1):before {
  background-color: #e8c102;
}
.o-percent--colored[data-40] > span:nth-child(2) {
  color: #e8c102;
}
.o-percent--colored[data-41] > span:nth-child(1) {
  border-color: #e8c102;
}
.o-percent--colored[data-41] > span:nth-child(1):before {
  background-color: #e8c102;
}
.o-percent--colored[data-41] > span:nth-child(2) {
  color: #e8c102;
}
.o-percent--colored[data-42] > span:nth-child(1) {
  border-color: #e8c102;
}
.o-percent--colored[data-42] > span:nth-child(1):before {
  background-color: #e8c102;
}
.o-percent--colored[data-42] > span:nth-child(2) {
  color: #e8c102;
}
.o-percent--colored[data-43] > span:nth-child(1) {
  border-color: #e8c102;
}
.o-percent--colored[data-43] > span:nth-child(1):before {
  background-color: #e8c102;
}
.o-percent--colored[data-43] > span:nth-child(2) {
  color: #e8c102;
}
.o-percent--colored[data-44] > span:nth-child(1) {
  border-color: #e8c102;
}
.o-percent--colored[data-44] > span:nth-child(1):before {
  background-color: #e8c102;
}
.o-percent--colored[data-44] > span:nth-child(2) {
  color: #e8c102;
}
.o-percent--colored[data-45] > span:nth-child(1) {
  border-color: #e8c102;
}
.o-percent--colored[data-45] > span:nth-child(1):before {
  background-color: #e8c102;
}
.o-percent--colored[data-45] > span:nth-child(2) {
  color: #e8c102;
}
.o-percent--colored[data-46] > span:nth-child(1) {
  border-color: #e8c102;
}
.o-percent--colored[data-46] > span:nth-child(1):before {
  background-color: #e8c102;
}
.o-percent--colored[data-46] > span:nth-child(2) {
  color: #e8c102;
}
.o-percent--colored[data-47] > span:nth-child(1) {
  border-color: #e8c102;
}
.o-percent--colored[data-47] > span:nth-child(1):before {
  background-color: #e8c102;
}
.o-percent--colored[data-47] > span:nth-child(2) {
  color: #e8c102;
}
.o-percent--colored[data-48] > span:nth-child(1) {
  border-color: #e8c102;
}
.o-percent--colored[data-48] > span:nth-child(1):before {
  background-color: #e8c102;
}
.o-percent--colored[data-48] > span:nth-child(2) {
  color: #e8c102;
}
.o-percent--colored[data-49] > span:nth-child(1) {
  border-color: #e8c102;
}
.o-percent--colored[data-49] > span:nth-child(1):before {
  background-color: #e8c102;
}
.o-percent--colored[data-49] > span:nth-child(2) {
  color: #e8c102;
}
.o-percent--colored[data-50] > span:nth-child(1) {
  border-color: #e8c102;
}
.o-percent--colored[data-50] > span:nth-child(1):before {
  background-color: #e8c102;
}
.o-percent--colored[data-50] > span:nth-child(2) {
  color: #e8c102;
}
.o-percent--colored[data-51] > span:nth-child(1) {
  border-color: #e8c102;
}
.o-percent--colored[data-51] > span:nth-child(1):before {
  background-color: #e8c102;
}
.o-percent--colored[data-51] > span:nth-child(2) {
  color: #e8c102;
}
.o-percent--colored[data-52] > span:nth-child(1) {
  border-color: #e8c102;
}
.o-percent--colored[data-52] > span:nth-child(1):before {
  background-color: #e8c102;
}
.o-percent--colored[data-52] > span:nth-child(2) {
  color: #e8c102;
}
.o-percent--colored[data-53] > span:nth-child(1) {
  border-color: #e8c102;
}
.o-percent--colored[data-53] > span:nth-child(1):before {
  background-color: #e8c102;
}
.o-percent--colored[data-53] > span:nth-child(2) {
  color: #e8c102;
}
.o-percent--colored[data-54] > span:nth-child(1) {
  border-color: #e8c102;
}
.o-percent--colored[data-54] > span:nth-child(1):before {
  background-color: #e8c102;
}
.o-percent--colored[data-54] > span:nth-child(2) {
  color: #e8c102;
}
.o-percent--colored[data-55] > span:nth-child(1) {
  border-color: #e8c102;
}
.o-percent--colored[data-55] > span:nth-child(1):before {
  background-color: #e8c102;
}
.o-percent--colored[data-55] > span:nth-child(2) {
  color: #e8c102;
}
.o-percent--colored[data-56] > span:nth-child(1) {
  border-color: #e8c102;
}
.o-percent--colored[data-56] > span:nth-child(1):before {
  background-color: #e8c102;
}
.o-percent--colored[data-56] > span:nth-child(2) {
  color: #e8c102;
}
.o-percent--colored[data-57] > span:nth-child(1) {
  border-color: #e8c102;
}
.o-percent--colored[data-57] > span:nth-child(1):before {
  background-color: #e8c102;
}
.o-percent--colored[data-57] > span:nth-child(2) {
  color: #e8c102;
}
.o-percent--colored[data-58] > span:nth-child(1) {
  border-color: #e8c102;
}
.o-percent--colored[data-58] > span:nth-child(1):before {
  background-color: #e8c102;
}
.o-percent--colored[data-58] > span:nth-child(2) {
  color: #e8c102;
}
.o-percent--colored[data-59] > span:nth-child(1) {
  border-color: #e8c102;
}
.o-percent--colored[data-59] > span:nth-child(1):before {
  background-color: #e8c102;
}
.o-percent--colored[data-59] > span:nth-child(2) {
  color: #e8c102;
}
.o-percent--colored[data-60] > span:nth-child(1) {
  border-color: #e8c102;
}
.o-percent--colored[data-60] > span:nth-child(1):before {
  background-color: #e8c102;
}
.o-percent--colored[data-60] > span:nth-child(2) {
  color: #e8c102;
}
.o-percent--colored[data-61] > span:nth-child(1) {
  border-color: #e8c102;
}
.o-percent--colored[data-61] > span:nth-child(1):before {
  background-color: #e8c102;
}
.o-percent--colored[data-61] > span:nth-child(2) {
  color: #e8c102;
}
.o-percent--colored[data-62] > span:nth-child(1) {
  border-color: #e8c102;
}
.o-percent--colored[data-62] > span:nth-child(1):before {
  background-color: #e8c102;
}
.o-percent--colored[data-62] > span:nth-child(2) {
  color: #e8c102;
}
.o-percent--colored[data-63] > span:nth-child(1) {
  border-color: #e8c102;
}
.o-percent--colored[data-63] > span:nth-child(1):before {
  background-color: #e8c102;
}
.o-percent--colored[data-63] > span:nth-child(2) {
  color: #e8c102;
}
.o-percent--colored[data-64] > span:nth-child(1) {
  border-color: #e8c102;
}
.o-percent--colored[data-64] > span:nth-child(1):before {
  background-color: #e8c102;
}
.o-percent--colored[data-64] > span:nth-child(2) {
  color: #e8c102;
}
.o-percent--colored[data-65] > span:nth-child(1) {
  border-color: #e8c102;
}
.o-percent--colored[data-65] > span:nth-child(1):before {
  background-color: #e8c102;
}
.o-percent--colored[data-65] > span:nth-child(2) {
  color: #e8c102;
}
.o-percent--colored[data-66] > span:nth-child(1) {
  border-color: #9c63ff;
}
.o-percent--colored[data-66] > span:nth-child(1):before {
  background-color: #9c63ff;
}
.o-percent--colored[data-66] > span:nth-child(2) {
  color: #9c63ff;
}
.o-percent--colored[data-67] > span:nth-child(1) {
  border-color: #9c63ff;
}
.o-percent--colored[data-67] > span:nth-child(1):before {
  background-color: #9c63ff;
}
.o-percent--colored[data-67] > span:nth-child(2) {
  color: #9c63ff;
}
.o-percent--colored[data-68] > span:nth-child(1) {
  border-color: #9c63ff;
}
.o-percent--colored[data-68] > span:nth-child(1):before {
  background-color: #9c63ff;
}
.o-percent--colored[data-68] > span:nth-child(2) {
  color: #9c63ff;
}
.o-percent--colored[data-69] > span:nth-child(1) {
  border-color: #9c63ff;
}
.o-percent--colored[data-69] > span:nth-child(1):before {
  background-color: #9c63ff;
}
.o-percent--colored[data-69] > span:nth-child(2) {
  color: #9c63ff;
}
.o-percent--colored[data-70] > span:nth-child(1) {
  border-color: #9c63ff;
}
.o-percent--colored[data-70] > span:nth-child(1):before {
  background-color: #9c63ff;
}
.o-percent--colored[data-70] > span:nth-child(2) {
  color: #9c63ff;
}
.o-percent--colored[data-71] > span:nth-child(1) {
  border-color: #9c63ff;
}
.o-percent--colored[data-71] > span:nth-child(1):before {
  background-color: #9c63ff;
}
.o-percent--colored[data-71] > span:nth-child(2) {
  color: #9c63ff;
}
.o-percent--colored[data-72] > span:nth-child(1) {
  border-color: #9c63ff;
}
.o-percent--colored[data-72] > span:nth-child(1):before {
  background-color: #9c63ff;
}
.o-percent--colored[data-72] > span:nth-child(2) {
  color: #9c63ff;
}
.o-percent--colored[data-73] > span:nth-child(1) {
  border-color: #9c63ff;
}
.o-percent--colored[data-73] > span:nth-child(1):before {
  background-color: #9c63ff;
}
.o-percent--colored[data-73] > span:nth-child(2) {
  color: #9c63ff;
}
.o-percent--colored[data-74] > span:nth-child(1) {
  border-color: #9c63ff;
}
.o-percent--colored[data-74] > span:nth-child(1):before {
  background-color: #9c63ff;
}
.o-percent--colored[data-74] > span:nth-child(2) {
  color: #9c63ff;
}
.o-percent--colored[data-75] > span:nth-child(1) {
  border-color: #9c63ff;
}
.o-percent--colored[data-75] > span:nth-child(1):before {
  background-color: #9c63ff;
}
.o-percent--colored[data-75] > span:nth-child(2) {
  color: #9c63ff;
}
.o-percent--colored[data-76] > span:nth-child(1) {
  border-color: #9c63ff;
}
.o-percent--colored[data-76] > span:nth-child(1):before {
  background-color: #9c63ff;
}
.o-percent--colored[data-76] > span:nth-child(2) {
  color: #9c63ff;
}
.o-percent--colored[data-77] > span:nth-child(1) {
  border-color: #9c63ff;
}
.o-percent--colored[data-77] > span:nth-child(1):before {
  background-color: #9c63ff;
}
.o-percent--colored[data-77] > span:nth-child(2) {
  color: #9c63ff;
}
.o-percent--colored[data-78] > span:nth-child(1) {
  border-color: #9c63ff;
}
.o-percent--colored[data-78] > span:nth-child(1):before {
  background-color: #9c63ff;
}
.o-percent--colored[data-78] > span:nth-child(2) {
  color: #9c63ff;
}
.o-percent--colored[data-79] > span:nth-child(1) {
  border-color: #9c63ff;
}
.o-percent--colored[data-79] > span:nth-child(1):before {
  background-color: #9c63ff;
}
.o-percent--colored[data-79] > span:nth-child(2) {
  color: #9c63ff;
}
.o-percent--colored[data-80] > span:nth-child(1) {
  border-color: #9c63ff;
}
.o-percent--colored[data-80] > span:nth-child(1):before {
  background-color: #9c63ff;
}
.o-percent--colored[data-80] > span:nth-child(2) {
  color: #9c63ff;
}
.o-percent--colored[data-81] > span:nth-child(1) {
  border-color: #9c63ff;
}
.o-percent--colored[data-81] > span:nth-child(1):before {
  background-color: #9c63ff;
}
.o-percent--colored[data-81] > span:nth-child(2) {
  color: #9c63ff;
}
.o-percent--colored[data-82] > span:nth-child(1) {
  border-color: #9c63ff;
}
.o-percent--colored[data-82] > span:nth-child(1):before {
  background-color: #9c63ff;
}
.o-percent--colored[data-82] > span:nth-child(2) {
  color: #9c63ff;
}
.o-percent--colored[data-83] > span:nth-child(1) {
  border-color: #9c63ff;
}
.o-percent--colored[data-83] > span:nth-child(1):before {
  background-color: #9c63ff;
}
.o-percent--colored[data-83] > span:nth-child(2) {
  color: #9c63ff;
}
.o-percent--colored[data-84] > span:nth-child(1) {
  border-color: #9c63ff;
}
.o-percent--colored[data-84] > span:nth-child(1):before {
  background-color: #9c63ff;
}
.o-percent--colored[data-84] > span:nth-child(2) {
  color: #9c63ff;
}
.o-percent--colored[data-85] > span:nth-child(1) {
  border-color: #9c63ff;
}
.o-percent--colored[data-85] > span:nth-child(1):before {
  background-color: #9c63ff;
}
.o-percent--colored[data-85] > span:nth-child(2) {
  color: #9c63ff;
}
.o-percent--colored[data-86] > span:nth-child(1) {
  border-color: #9c63ff;
}
.o-percent--colored[data-86] > span:nth-child(1):before {
  background-color: #9c63ff;
}
.o-percent--colored[data-86] > span:nth-child(2) {
  color: #9c63ff;
}
.o-percent--colored[data-87] > span:nth-child(1) {
  border-color: #9c63ff;
}
.o-percent--colored[data-87] > span:nth-child(1):before {
  background-color: #9c63ff;
}
.o-percent--colored[data-87] > span:nth-child(2) {
  color: #9c63ff;
}
.o-percent--colored[data-88] > span:nth-child(1) {
  border-color: #9c63ff;
}
.o-percent--colored[data-88] > span:nth-child(1):before {
  background-color: #9c63ff;
}
.o-percent--colored[data-88] > span:nth-child(2) {
  color: #9c63ff;
}
.o-percent--colored[data-89] > span:nth-child(1) {
  border-color: #9c63ff;
}
.o-percent--colored[data-89] > span:nth-child(1):before {
  background-color: #9c63ff;
}
.o-percent--colored[data-89] > span:nth-child(2) {
  color: #9c63ff;
}
.o-percent--colored[data-90] > span:nth-child(1) {
  border-color: #9c63ff;
}
.o-percent--colored[data-90] > span:nth-child(1):before {
  background-color: #9c63ff;
}
.o-percent--colored[data-90] > span:nth-child(2) {
  color: #9c63ff;
}
.o-percent--colored[data-91] > span:nth-child(1) {
  border-color: #9c63ff;
}
.o-percent--colored[data-91] > span:nth-child(1):before {
  background-color: #9c63ff;
}
.o-percent--colored[data-91] > span:nth-child(2) {
  color: #9c63ff;
}
.o-percent--colored[data-92] > span:nth-child(1) {
  border-color: #9c63ff;
}
.o-percent--colored[data-92] > span:nth-child(1):before {
  background-color: #9c63ff;
}
.o-percent--colored[data-92] > span:nth-child(2) {
  color: #9c63ff;
}
.o-percent--colored[data-93] > span:nth-child(1) {
  border-color: #9c63ff;
}
.o-percent--colored[data-93] > span:nth-child(1):before {
  background-color: #9c63ff;
}
.o-percent--colored[data-93] > span:nth-child(2) {
  color: #9c63ff;
}
.o-percent--colored[data-94] > span:nth-child(1) {
  border-color: #9c63ff;
}
.o-percent--colored[data-94] > span:nth-child(1):before {
  background-color: #9c63ff;
}
.o-percent--colored[data-94] > span:nth-child(2) {
  color: #9c63ff;
}
.o-percent--colored[data-95] > span:nth-child(1) {
  border-color: #9c63ff;
}
.o-percent--colored[data-95] > span:nth-child(1):before {
  background-color: #9c63ff;
}
.o-percent--colored[data-95] > span:nth-child(2) {
  color: #9c63ff;
}
.o-percent--colored[data-96] > span:nth-child(1) {
  border-color: #9c63ff;
}
.o-percent--colored[data-96] > span:nth-child(1):before {
  background-color: #9c63ff;
}
.o-percent--colored[data-96] > span:nth-child(2) {
  color: #9c63ff;
}
.o-percent--colored[data-97] > span:nth-child(1) {
  border-color: #9c63ff;
}
.o-percent--colored[data-97] > span:nth-child(1):before {
  background-color: #9c63ff;
}
.o-percent--colored[data-97] > span:nth-child(2) {
  color: #9c63ff;
}
.o-percent--colored[data-98] > span:nth-child(1) {
  border-color: #9c63ff;
}
.o-percent--colored[data-98] > span:nth-child(1):before {
  background-color: #9c63ff;
}
.o-percent--colored[data-98] > span:nth-child(2) {
  color: #9c63ff;
}
.o-percent--colored[data-99] > span:nth-child(1) {
  border-color: #9c63ff;
}
.o-percent--colored[data-99] > span:nth-child(1):before {
  background-color: #9c63ff;
}
.o-percent--colored[data-99] > span:nth-child(2) {
  color: #9c63ff;
}
.o-percent--colored[data-100] > span:nth-child(1) {
  border-color: #0fc165;
}
.o-percent--colored[data-100] > span:nth-child(1):before {
  background-color: #0fc165;
}
.o-percent--colored[data-100] > span:nth-child(2) {
  color: #0fc165;
}

.o-pill {
  color: white;
  background-color: #9c63ff;
  font-size: 12px;
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 12px;
  line-height: 1;
}

.o-wrapper {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  display: block;
  margin: 0 auto;
}
@media only screen and (min-width: 1200px) {
  .o-wrapper {
    padding: 0;
  }
}

.o-main {
  flex: 1;
}

.o-section {
  padding: clamp(30px, 5vw, 50px) 0;
}

.o-file {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  border: 1px solid #f1f1f1;
  border-radius: 5px;
  margin-bottom: 10px;
  width: 100%;
  padding: 10px;
}
.o-file--buttons {
  display: flex;
  justify-content: space-between;
}

.o-bg-effect {
  position: fixed;
  z-index: 20;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.6s 0.2s ease-out, visibility 0.1s;
}
.o-bg-effect--lightbox {
  background-color: rgba(51, 51, 51, 0.7);
}
.o-bg-effect.active {
  visibility: visible;
  opacity: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.o-input-mask {
  position: relative;
}
.o-input-mask:before {
  content: "";
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
.o-input-mask--search:before {
  width: 17px;
  height: 17px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17 17'%3E%3Cpath data-name='Icon material-search' d='M12.15 10.7h-.77l-.27-.27a6.33 6.33 0 10-.68.68l.26.27v.77L15.55 17 17 15.55zm-5.83 0a4.37 4.37 0 114.37-4.38 4.37 4.37 0 01-4.37 4.37z' fill='%23878787'/%3E%3C/svg%3E");
}
.o-input-mask > input {
  padding-left: 35px;
}

.o-check > input[type=checkbox] {
  display: none;
}
.o-check > input[type=checkbox] + span {
  padding-left: 40px;
  position: relative;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  display: flex;
}
.o-check > input[type=checkbox] + span:before {
  content: "";
  width: 32px;
  height: 20px;
  background-color: #9c9c9c;
  border-radius: 40px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s ease-out;
}
.o-check > input[type=checkbox] + span:after {
  content: "";
  width: 17px;
  height: 17px;
  background-color: #fff;
  left: 1px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  border-radius: 50%;
  transition: 0.3s ease-out;
}
.o-check > input[type=checkbox]:checked + span:before {
  background-color: #9c63ff;
}
.o-check > input[type=checkbox]:checked + span:after {
  left: 13px;
}

.o-internal-banner {
  background-image: url("../images/banners/ranking.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 150px;
  display: flex;
  align-items: center;
}
.o-internal-banner > h1 {
  font-size: 24px;
  color: #9c63ff;
  font-weight: 600;
}

.c-header {
  background-color: #e8e7e6;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  box-sizing: border-box;
  position: fixed;
  z-index: 20;
  top: 0;
}
@media (max-width: 1024px) {
  .c-header .navbar-collapse {
    padding-top: 30px;
  }
}
.c-header__logo {
  width: 100%;
  max-width: 125px;
}
.c-header__btns-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-nav {
  box-sizing: border-box;
  position: fixed;
  z-index: 200;
  right: -360px;
  top: 75px;
  width: 360px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  transition: right 0.2s linear;
  box-shadow: 0px 2px 4px 0px rgba(21, 21, 34, 0.33);
  border-radius: 4px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}
.c-nav * {
  font-size: 14px;
}
.nav-active .c-nav {
  right: 5px;
}
.c-nav__row {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  gap: 0px;
  position: relative;
}
@media (max-width: 1024px) {
  .c-nav__row {
    gap: 5px;
    padding: 10px;
  }
}
.c-nav__row:nth-child(1) {
  flex-direction: row;
  gap: 20px;
  align-items: center;
  padding: 16px 20px 25px;
}
@media (max-width: 1024px) {
  .c-nav__row:nth-child(1) {
    padding-bottom: 10px;
  }
}
.c-nav__row:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 90%;
  height: 1px;
  transform: translateX(-50%);
  background-color: #c3c3c3;
}
.c-nav__row:last-child:after {
  content: none;
}
@media (min-width: 1024px) {
  .c-nav__row--mob {
    display: none;
  }
}
.c-nav__cover {
  width: 62px;
  height: 62px;
  background-color: #000;
  color: #fff;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-size: 20px;
}
.c-nav__email {
  font-size: 12px;
}
.c-nav__link {
  color: #151522;
  text-decoration: none;
  padding: 4px 20px;
}
.c-nav__link:hover {
  background-color: #d4d3d3;
}
.c-nav__link:hover, .c-nav__link:active, .c-nav__link:focus {
  color: #151522;
  text-decoration: none;
}
.c-nav__link--icon {
  display: flex;
  align-items: center;
  gap: 5px;
}
.c-nav__link--icon:before {
  content: "";
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
}
.c-nav__link--download:before {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1102_29522)'%3E%3Cpath d='M6.75 0.5H9.25C9.66563 0.5 10 0.834375 10 1.25V6.5H12.7406C13.2969 6.5 13.575 7.17188 13.1813 7.56563L8.42813 12.3219C8.19375 12.5563 7.80938 12.5563 7.575 12.3219L2.81562 7.56563C2.42188 7.17188 2.7 6.5 3.25625 6.5H6V1.25C6 0.834375 6.33437 0.5 6.75 0.5ZM16 12.25V15.75C16 16.1656 15.6656 16.5 15.25 16.5H0.75C0.334375 16.5 0 16.1656 0 15.75V12.25C0 11.8344 0.334375 11.5 0.75 11.5H5.33437L6.86562 13.0312C7.49375 13.6594 8.50625 13.6594 9.13438 13.0312L10.6656 11.5H15.25C15.6656 11.5 16 11.8344 16 12.25ZM12.125 15C12.125 14.6562 11.8438 14.375 11.5 14.375C11.1562 14.375 10.875 14.6562 10.875 15C10.875 15.3438 11.1562 15.625 11.5 15.625C11.8438 15.625 12.125 15.3438 12.125 15ZM14.125 15C14.125 14.6562 13.8438 14.375 13.5 14.375C13.1562 14.375 12.875 14.6562 12.875 15C12.875 15.3438 13.1562 15.625 13.5 15.625C13.8438 15.625 14.125 15.3438 14.125 15Z' fill='%23151522'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1102_29522'%3E%3Crect width='16' height='16' fill='white' transform='translate(0 0.5)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.c-nav__link--help:before {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1102_29555)'%3E%3Cg clip-path='url(%23clip1_1102_29555)'%3E%3Cpath d='M15.75 8.5C15.75 12.7812 12.2799 16.25 8 16.25C3.72009 16.25 0.25 12.7812 0.25 8.5C0.25 4.22134 3.72009 0.75 8 0.75C12.2799 0.75 15.75 4.22134 15.75 8.5ZM8.20797 3.3125C6.50494 3.3125 5.41875 4.02991 4.56581 5.30494C4.45531 5.47012 4.49228 5.69291 4.65066 5.813L5.735 6.63519C5.89766 6.75853 6.12941 6.72919 6.25578 6.56887C6.81403 5.86081 7.19681 5.45022 8.0465 5.45022C8.68491 5.45022 9.47456 5.86109 9.47456 6.48016C9.47456 6.94816 9.08822 7.1885 8.45788 7.54191C7.72275 7.954 6.75 8.46691 6.75 9.75V9.875C6.75 10.0821 6.91791 10.25 7.125 10.25H8.875C9.08209 10.25 9.25 10.0821 9.25 9.875V9.83334C9.25 8.94391 11.8496 8.90687 11.8496 6.5C11.8496 4.68744 9.96941 3.3125 8.20797 3.3125ZM8 11.0625C7.20734 11.0625 6.5625 11.7073 6.5625 12.5C6.5625 13.2926 7.20734 13.9375 8 13.9375C8.79266 13.9375 9.4375 13.2926 9.4375 12.5C9.4375 11.7073 8.79266 11.0625 8 11.0625Z' fill='%23151522'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1102_29555'%3E%3Crect width='16' height='16' fill='white' transform='translate(0 0.5)'/%3E%3C/clipPath%3E%3CclipPath id='clip1_1102_29555'%3E%3Crect width='16' height='16' fill='white' transform='translate(0 0.5)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.c-nav__link--exit:before {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1102_29577)'%3E%3Cpath d='M15.5312 9.03094L10.2812 14.2809C9.8125 14.7497 9 14.4216 9 13.7497V10.7497H4.75C4.33437 10.7497 4 10.4153 4 9.99969V6.99969C4 6.58406 4.33437 6.24969 4.75 6.24969H9V3.24969C9 2.58094 9.80937 2.24969 10.2812 2.71844L15.5312 7.96844C15.8219 8.26219 15.8219 8.73719 15.5312 9.03094ZM6 14.1247V12.8747C6 12.6684 5.83125 12.4997 5.625 12.4997H3C2.44688 12.4997 2 12.0528 2 11.4997V5.49969C2 4.94656 2.44688 4.49969 3 4.49969H5.625C5.83125 4.49969 6 4.33094 6 4.12469V2.87469C6 2.66844 5.83125 2.49969 5.625 2.49969H3C1.34375 2.49969 0 3.84344 0 5.49969V11.4997C0 13.1559 1.34375 14.4997 3 14.4997H5.625C5.83125 14.4997 6 14.3309 6 14.1247Z' fill='%23151522'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1102_29577'%3E%3Crect width='16' height='16' fill='white' transform='translate(0 0.5)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.s-enter {
  padding-top: 60px;
}
@media (min-width: 768px) {
  .s-enter {
    max-width: 500px;
    margin: 30px auto;
  }
}

.s-register {
  flex: 1;
  width: 500px;
  max-width: 100%;
  padding: clamp(30px, 5vw, 50px) 0;
  margin: auto;
}
.s-register--header {
  background-color: #000;
  text-align: center;
  padding: 20px 0;
  margin-bottom: 20px;
  margin-top: 62px;
}
.s-register--header h2 {
  font-size: 16px;
  margin-bottom: 0;
  text-transform: uppercase;
}

.s-success {
  background-color: #9c63ff;
  min-height: calc(100vh - 60px);
}
.s-success--header {
  background-color: #2995db;
  text-align: center;
  padding: 20px 0;
  margin-bottom: 20px;
  margin-top: 62px;
}
.s-success--header h2 {
  font-size: 16px;
  margin-bottom: 0;
  text-transform: uppercase;
}
.s-success .card {
  max-width: 50vw;
  min-height: 70vh;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .s-success .card {
    max-width: none;
  }
}

.s-auth {
  width: 100vw;
  min-height: calc(100vh - 60px);
  background-color: #fff;
  display: flex;
  align-items: center;
}
.s-auth .o-forms {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .s-auth .o-forms {
    margin-left: 50%;
    transform: translateX(-50%);
  }
}
.s-auth--link {
  width: 100%;
  text-align: center;
  display: block;
}
.s-auth--link-logo {
  width: 120px;
}

.s-share {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.s-share--text {
  font-weight: 700;
}
.s-share .row {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.s-share .row .social-media {
  margin-left: 10px;
}
.s-share .row .social-media--whatsapp {
  min-width: 60px;
  border-color: #4fce5d;
  background: #4fce5d;
  padding: 10px 15px;
}
.s-share .row .social-media .fa-whatsapp {
  color: #fff;
  font-size: 20px;
}
.s-share .row .social-media--facebook {
  min-width: 60px;
  border-color: #091e42;
  background: #091e42;
  padding: 10px 15px;
}
.s-share .row .social-media .fa-facebook {
  color: #fff;
  font-size: 20px;
}

.carousel {
  box-sizing: border-box;
  width: 100%;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.carousel img {
  display: block;
  width: 100%;
}
.carousel-caption {
  left: 10%;
  bottom: 100px;
  max-width: 500px;
  text-align: left;
}
.carousel-caption p {
  font-size: 32px;
  line-height: 48px;
  color: #9c63ff;
  margin-bottom: 20px;
}
.carousel-caption h2 {
  font-size: 56px;
  line-height: 72px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
  color: #9c63ff;
}
.carousel-caption a {
  max-width: 180px;
}
.carousel-caption a:hover {
  cursor: pointer;
}
@media (max-width: 980px) {
  .carousel-caption {
    top: 35%;
  }
}
@media (max-width: 780px) {
  .carousel-caption {
    left: 50%;
    top: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    min-height: 500px;
  }
  .carousel-caption p {
    font-size: 32px;
  }
  .carousel-caption h2 {
    font-size: 22px;
    line-height: 26px;
  }
  .carousel-caption a {
    margin: 20px auto;
  }
}
.carousel-indicators {
  bottom: -10px;
}
.carousel-indicators li {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin: 0 8px;
}

.s-actions {
  background-color: #f1f3f6;
  min-height: calc(100vh - 60px);
  padding-bottom: 30px;
  font-family: "Roboto", sans-serif;
}
.s-actions--header {
  background-color: #ff51a0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
  margin-top: 66px;
  margin-bottom: 20px;
  height: 50px;
}
.s-actions--header a {
  font-family: "Roboto", sans-serif;
  opacity: 0.5;
}
.s-actions--header h2 {
  font-size: 16px;
  margin-bottom: 0;
  opacity: 0.8;
}
.s-actions--header span {
  width: 17px;
  font-size: 10px !important;
}
.s-actions ul {
  list-style: disc;
  margin-left: 30px;
}
.s-actions ul li p {
  margin-bottom: 10px;
}

.c-footer {
  box-sizing: border-box;
  width: 100%;
  position: relative;
  background-color: #000;
  padding: 10px 0;
}
.c-footer--title {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  margin: 30px 0;
}
.c-footer .col {
  padding-bottom: 10px;
}
.c-footer a,
.c-footer p {
  display: block;
  color: #fff;
  margin-bottom: 10px;
}
.c-footer--socials {
  display: flex;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding-top: 25px;
}
.c-footer--socials .fa {
  font-size: 30px;
  margin-right: 20px;
}

.c-faq__content {
  border-bottom: 1px solid #ccc;
}
.c-faq__content dt {
  color: #9c63ff;
  font-weight: bold;
  padding: 30px 30px 30px 0;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  position: relative;
}
.c-faq__content dt:hover {
  cursor: pointer;
}
.c-faq__content dt:after {
  content: "▼";
  position: absolute;
  right: 15px;
  top: 35px;
  transition: all 0.5s ease-in-out;
}
.c-faq__content dd {
  display: none;
  font-size: 14px;
}
.c-faq__content-active {
  display: block !important;
  background-color: #fff;
  padding: 10px 20px;
}
.c-faq__content a {
  color: black;
}
.c-faq__column-two {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .c-faq__column-one {
    width: 100%;
  }
  .c-faq__column-two {
    width: 100%;
    margin-top: 20px;
  }
}
.c-faq__footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #9c63ff;
  color: #fff;
  padding: 20px 0;
}
.c-faq__footer a {
  color: #fff;
  padding-left: 20px;
}
.c-faq__footer .container {
  display: flex;
  align-items: center;
}
.c-faq__footer--title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.c-faq__footer--contact {
  font-size: 14px;
  padding-left: 20px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .c-faq__footer .container {
    flex-direction: column;
  }
  .c-faq__footer--contact {
    padding-left: 0;
  }
  .c-faq__footer__column-one {
    width: 100%;
    margin-bottom: 20px;
  }
  .c-faq__footer__column-two {
    width: 100%;
  }
}

.c-grid {
  display: grid;
  grid-gap: 15px;
  grid-template-rows: max-content;
}
.c-grid--col-3 {
  grid-template-columns: repeat(3, 1fr);
}
.c-grid--col-30-70 {
  grid-template-columns: repeat(1, 3fr 7fr);
}
.c-grid--col-35-65 {
  grid-template-columns: repeat(1, 35fr 65fr);
}
.c-grid--col-40-60 {
  grid-template-columns: repeat(1, 4fr 6fr);
}
.c-grid--col-50-50 {
  grid-template-columns: repeat(1, 5fr 5fr);
}
@media only screen and (min-width: 1050px) {
  .c-grid--aside {
    grid-template-columns: repeat(1, minmax(0, 24fr) 76fr);
  }
}
.c-grid--cards {
  grid-gap: 20px;
  grid-template-columns: repeat(1, 1fr);
}
@media only screen and (min-width: 500px) {
  .c-grid--cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1150px) {
  .c-grid--cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.c-grid--cards-4 {
  grid-gap: 20px;
  grid-template-columns: repeat(1, 1fr);
}
@media only screen and (min-width: 500px) {
  .c-grid--cards-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 900px) {
  .c-grid--cards-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 1150px) {
  .c-grid--cards-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (max-width: 1024px) {
  .c-grid--col-100-mob {
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-grid--ais {
  align-items: start;
}
.c-grid--gap-20 {
  gap: 20px;
}
.c-grid--gap-30 {
  gap: 30px;
}
.c-grid--gap-40 {
  gap: 40px;
}

.c-card {
  overflow: hidden;
  padding-bottom: 60px;
  padding-top: 30px;
  box-sizing: border-box;
  border-radius: 8px;
  position: relative;
  background-color: #fff;
  font-family: "Roboto", sans-serif !important;
  box-shadow: 0px 2px 4px #15152233;
}
.js-highlights:not(.slick-initialized .c-card) .c-card, .js-cards:not(.slick-initialized .c-card) .c-card {
  max-width: 285px;
  width: 100%;
}
.c-card.slick-slide {
  margin: 0 10px;
  height: inherit !important;
}
.c-card__img-wrapper {
  display: block;
  height: 200px;
  overflow: hidden;
  position: relative;
}
.c-card__image {
  width: 100%;
  height: 200px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.c-card__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.c-card__calendar {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  margin-bottom: 0;
}
.c-card__ttl {
  font-size: 16px;
  line-height: 22px;
  color: #9c63ff;
  font-weight: 600;
  overflow: hidden;
  margin-bottom: 15px;
}
.c-card__status {
  border: 1px solid #e7e7e7;
  border-radius: 15px;
  padding: 3px 10px;
  font-size: 12px;
  color: #b2b2b2;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 15px;
  display: flex;
}
.c-card__status:before {
  content: "";
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.414' height='7.874' viewBox='0 0 11.414 7.874'%3E%3Cpath id='Caminho_2106' data-name='Caminho 2106' d='M5,10.333l3.333,3.333L15,7' transform='translate(-4.293 -6.293)' fill='none' stroke='%231dc7b6' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.414' height='7.874' viewBox='0 0 11.414 7.874'%3E%3Cpath id='Caminho_2106' data-name='Caminho 2106' d='M5,10.333l3.333,3.333L15,7' transform='translate(-4.293 -6.293)' fill='none' stroke='%231dc7b6' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3C/svg%3E%0A");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #9c63ff;
  opacity: 0;
  visibility: hidden;
  width: 16px;
  height: 16px;
  margin-right: 7px;
  margin-top: 1px;
  display: none;
}
.c-card__status.active {
  border-color: #9c63ff;
  color: #9c63ff;
}
.c-card__status.active:before {
  opacity: 1;
  visibility: visible;
  display: block;
}
.c-card__ttl-link {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  height: 45px;
  overflow: hidden;
  text-decoration: none;
}
.c-card__actions {
  width: 100%;
  height: 50px;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  padding: 0 20px;
  z-index: 1;
}
.c-card__actions .o-btn {
  width: 100%;
}
.c-card__buttons {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.c-card__chip {
  color: #fff;
  background-color: #000;
  font-size: 12px;
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
  padding: 6px 8px;
  font-weight: bold;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.c-card__chip--online {
  color: #000;
  background-color: #9c63ff;
}
.c-card__subscription {
  color: #fff;
  background-color: #9c63ff;
  font-size: 13px;
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
  padding: 7px 8px;
  font-weight: bold;
  display: block;
}
.c-card__item-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.c-card__item-icon:before {
  content: "";
  width: 15px;
  height: 15px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-right: 5px;
}
.c-card__item-icon--date:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.52 15.52'%3E%3Cpath data-name='Caminho 2069' d='M0 0h15.52v15.52H0z' fill='none'/%3E%3Cpath data-name='Caminho 2070' d='M12.93 1.94h-.65V.64H11v1.3H4.52V.64H3.23v1.3H2.6a1.3 1.3 0 00-1.3 1.3v10.33a1.3 1.3 0 001.3 1.3h10.34a1.3 1.3 0 001.3-1.3V3.23a1.3 1.3 0 00-1.3-1.3zm0 11.63H2.59v-8.4h10.34z' fill='%23151522'/%3E%3C/svg%3E");
}
.c-card__item-icon--time:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.52 15.52'%3E%3Cpath data-name='Caminho 2071' d='M0 0h15.52v15.52H0z' fill='none'/%3E%3Cpath data-name='Caminho 2072' d='M7.75 1.3a6.46 6.46 0 106.47 6.46 6.46 6.46 0 00-6.47-6.47zm0 11.63a5.17 5.17 0 115.18-5.17 5.17 5.17 0 01-5.17 5.17z' fill='%23151522'/%3E%3Cpath data-name='Caminho 2073' d='M8.08 4.53h-.97V8.4l3.4 2.04.48-.8-2.9-1.72z' fill='%23151522'/%3E%3C/svg%3E");
}
.c-card__item-icon--location:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.52 15.52'%3E%3Cpath data-name='Caminho 2074' d='M0 0h15.52v15.52H0z' fill='none'/%3E%3Cpath data-name='Caminho 2075' d='M7.76 1.3a4.52 4.52 0 00-4.53 4.52c0 3.4 4.53 8.4 4.53 8.4s4.52-5.01 4.52-8.4a4.52 4.52 0 00-4.52-4.53zm0 6.13a1.62 1.62 0 111.61-1.61 1.62 1.62 0 01-1.61 1.61z' fill='%23151522'/%3E%3C/svg%3E");
}

.c-breadcrumbs {
  background-color: #a5a9aa;
  min-height: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 8px;
  gap: 2px 0;
}
.c-breadcrumbs a {
  position: relative;
  padding-right: 20px;
  color: rgba(255, 255, 255, 0.5);
}
.c-breadcrumbs a:hover {
  color: #fff;
}
.c-breadcrumbs h2 {
  font-size: 16px;
  margin-bottom: 0;
  opacity: 0.8;
  color: #fff;
}
.c-breadcrumbs span {
  width: 17px;
  font-size: 10px;
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
}

.c-highlights {
  position: relative;
  padding: 20vw 0 30vw;
  z-index: 1;
}
@media only screen and (min-width: 1050px) {
  .c-highlights {
    padding: 7vw 0 10vw;
  }
}
.c-highlights:before, .c-highlights:after {
  content: "";
  background-color: #e8e7e6;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 500' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23E8E7E6' d='M0 192l80-16c80-16 240-48 400-53.3 160-5.7 320 16.3 480 16 160 .3 320-21.7 400-32l80-10.7v224H0z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 500' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23E8E7E6' d='M0 192l80-16c80-16 240-48 400-53.3 160-5.7 320 16.3 480 16 160 .3 320-21.7 400-32l80-10.7v224H0z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: bottom;
          mask-position: bottom;
  -webkit-mask-size: cover;
          mask-size: cover;
  position: absolute;
  width: 100%;
  height: 55vw;
  left: 0;
  z-index: -1;
}
@media only screen and (min-width: 1050px) {
  .c-highlights:before, .c-highlights:after {
    height: 30vw;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .c-highlights:before, .c-highlights:after {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 500' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23E8E7E6' d='M0 192l80-16c80-16 240-48 400-53.3 160-5.7 320 16.3 480 16 160 .3 320-21.7 400-32l80-10.7v224H0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    background-color: transparent;
  }
}
.c-highlights:before {
  top: 0;
}
.c-highlights:after {
  bottom: 0;
  transform: rotateZ(180deg);
}
.c-highlights__content {
  background-color: #e8e7e6;
  padding: 20px 0;
}
@media only screen and (min-width: 1050px) {
  .c-highlights__content {
    padding: 30px 0;
  }
}
.c-highlights__ttl {
  font-size: 28px;
  text-align: center;
  font-weight: bold;
}
@media only screen and (min-width: 1050px) {
  .c-highlights__ttl {
    font-size: 32px;
  }
}

.c-challenge-show {
  padding: 40px 0;
}
@media only screen and (min-width: 1050px) {
  .c-challenge-show {
    padding: 70px 0;
  }
}
@media only screen and (min-width: 1050px) {
  .c-challenge-show__grid {
    display: grid;
    grid-gap: 40px;
    grid-template-columns: repeat(1, 45fr 55fr);
  }
}
.c-challenge-show__desc img {
  max-width: 100%;
  height: auto;
}
.c-challenge-show__cover-container {
  position: relative;
  width: 100%;
  max-width: 512px;
  border-radius: 8px;
}
.c-challenge-show__cover {
  width: 100%;
  height: 100%;
  max-height: 380px;
  display: block;
  border-radius: 10px 10px 8px 8px;
}
@media only screen and (max-width: 1024px) {
  .c-challenge-show__cover {
    margin: 0 auto;
  }
}
.c-challenge-show__chip {
  color: #fff;
  background-color: #000;
  font-size: 12px;
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
  padding: 6px 8px;
  font-weight: bold;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  border-radius: 8px 8px 0 0;
}
.c-challenge-show__chip--online {
  background-color: #9c63ff;
  color: #000;
}
.c-challenge-show__subscription {
  color: #fff;
  background-color: #9c63ff;
  font-size: 13px;
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
  padding: 7px 8px;
  font-weight: bold;
  position: absolute;
  width: 100%;
  border-radius: 0 0 6px 6px;
  bottom: -5px;
}
.c-challenge-show__ttl {
  font-size: 24px;
  font-weight: bold;
  color: #9c63ff;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .c-challenge-show__ttl {
    margin-top: 20px;
  }
}
.c-challenge-show__sbttl {
  font-size: 16px;
  font-weight: bold;
  color: #9c63ff;
  margin-bottom: 20px;
}
.c-challenge-show__icon {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-basis: 100%;
}
.c-challenge-show__icon:before {
  content: "";
  width: 15px;
  height: 15px;
  margin-right: 5px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.c-challenge-show__icon--period:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.515 15.515'%3E%3Cpath data-name='Caminho 2069' d='M0 0h15.515v15.515H0z' fill='none'/%3E%3Cpath data-name='Caminho 2070' d='M12.929 1.939h-.646V.646h-1.29v1.293H4.525V.646H3.232v1.293h-.646a1.3 1.3 0 00-1.293 1.293v10.343a1.3 1.3 0 001.293 1.293h10.343a1.3 1.3 0 001.293-1.293V3.232a1.3 1.3 0 00-1.293-1.293zm0 11.636H2.586v-8.4h10.343z' fill='%23151522'/%3E%3C/svg%3E");
}
.c-challenge-show__icon--time:before {
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.515 15.515'%3E%3Cpath data-name='Caminho 2071' d='M0 0h15.515v15.515H0z' fill='none'/%3E%3Cpath data-name='Caminho 2072' d='M7.751 1.293a6.465 6.465 0 106.471 6.465 6.461 6.461 0 00-6.471-6.465zm.006 11.636a5.172 5.172 0 115.172-5.172 5.17 5.17 0 01-5.171 5.172z' fill='%23151522'/%3E%3Cpath data-name='Caminho 2073' d='M8.081 4.525h-.97v3.879l3.394 2.036.485-.8-2.909-1.721z' fill='%23151522'/%3E%3C/svg%3E");
}
.c-challenge-show__icon--pin:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.515 15.515'%3E%3Cpath data-name='Caminho 2074' d='M0 0h15.515v15.515H0z' fill='none'/%3E%3Cpath data-name='Caminho 2075' d='M7.757 1.293a4.522 4.522 0 00-4.525 4.525c0 3.394 4.525 8.4 4.525 8.4s4.525-5.01 4.525-8.4a4.522 4.522 0 00-4.525-4.525zm0 6.141a1.616 1.616 0 111.616-1.616 1.617 1.617 0 01-1.616 1.616z' fill='%23151522'/%3E%3C/svg%3E");
}
.c-challenge-show__row {
  font-size: 16px;
  color: #151522;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.c-challenge-show__row--sb {
  justify-content: space-between;
}
.c-challenge-show__row > div {
  margin-left: 20px;
}
.c-challenge-show__row > div:first-child {
  margin-left: 0;
}
.c-challenge-show__block {
  flex-basis: 100%;
}
.c-challenge-show__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
.c-challenge-show__actions > div {
  margin-top: 25px;
}
@media only screen and (min-width: 1050px) {
  .c-challenge-show__actions > div {
    margin-top: 15px;
  }
}
.c-challenge-show__actions > div:nth-child(1) {
  width: 50%;
}
@media only screen and (min-width: 1050px) {
  .c-challenge-show__actions > div:nth-child(1) {
    width: 45%;
    margin-right: 25px;
  }
}
.c-challenge-show__actions > div:nth-child(2) {
  width: 50%;
  text-align: right;
}
@media only screen and (min-width: 1050px) {
  .c-challenge-show__actions > div:nth-child(2) {
    width: auto;
    margin-right: 15px;
    text-align: left;
  }
}
.c-challenge-show__actions > div:nth-child(3) {
  width: 100%;
}
@media only screen and (min-width: 1050px) {
  .c-challenge-show__actions > div:nth-child(3) {
    width: auto;
  }
}
.c-challenge-show__btns-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 0 10%;
  border-top: 1px solid #e5e5e5;
  padding-top: 20px;
}
@media only screen and (min-width: 1050px) {
  .c-challenge-show__btns-container {
    padding: 0;
    border-top: 0;
    justify-content: flex-start;
  }
}
.c-challenge-show__btns-container .o-btn {
  margin: 0 2px 5px;
}
@media only screen and (min-width: 1050px) {
  .c-challenge-show__btns-container .o-btn {
    margin: 0 5px 5px;
  }
}

.c-vcard {
  display: flex;
  background-color: #f1f3f6;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0px 2px 4px #15152233;
  max-width: 500px;
}
@media (max-width: 768px) {
  .c-vcard {
    flex-direction: column;
  }
}
.c-vcard__cover {
  width: 100px;
  height: 100px;
  display: block;
  font-size: 70px;
  margin-right: 20px;
  color: #bbb;
  flex: 0 0 auto;
}
@media (max-width: 768px) {
  .c-vcard__cover {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.c-vcard__name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0;
  color: #151522;
}
.c-vcard__office {
  font-size: 16px;
  margin-bottom: 0;
  color: #151522;
}

.c-intro {
  margin: 60px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .c-intro {
    flex-direction: column;
  }
}
.c-intro__ttl {
  text-align: left;
  font-size: 40px;
  max-width: 376px;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: #9c63ff;
  margin-bottom: 0;
}
.c-intro__text {
  text-align: left;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  color: #333;
  width: 100%;
  max-width: 552px;
  margin-bottom: 0;
}
.c-intro__text * {
  font-size: 20px;
}

.c-aside {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .c-aside--mobile {
    background-color: #fff;
    position: fixed;
    z-index: 110;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    bottom: -100%;
    transition: 0.4s ease-out;
  }
  .c-aside--mobile.active {
    bottom: 0;
  }
}
.c-aside__button-filter {
  position: absolute;
  bottom: 100%;
  background-color: #9c63ff;
  width: 100%;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  gap: 10px;
  cursor: pointer;
  color: #fff;
}
.c-aside__button-close {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 10px;
  top: 10px;
  color: #fff;
  z-index: 10;
}
.c-aside__button-close:before, .c-aside__button-close:after {
  content: "";
  width: 20px;
  height: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: #fff;
  border-radius: 25px;
}
.c-aside__button-close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-aside__button-close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.c-aside__content {
  border-radius: 8px;
  padding: 15px;
  position: relative;
  background-color: #9c63ff;
}
@media only screen and (max-width: 1024px) {
  .c-aside--mobile .c-aside__content {
    border-radius: 0;
    height: 100%;
  }
}
.c-aside__content *:not(input) {
  color: #fff;
}
.c-aside__content hr {
  background-color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 1024px) {
  .c-aside--mobile .c-aside__scroll-y {
    overflow: auto;
    height: 100%;
    padding-bottom: 140px;
    padding-right: 20px;
  }
}
.c-aside .select2-container * {
  color: #666;
}
.c-aside__ttl {
  margin-bottom: 15px;
}
@media only screen and (min-width: 1050px) {
  .c-aside__ttl {
    margin-bottom: 30px;
  }
}
.c-aside__action-container {
  padding: 20px 0;
  display: flex;
  justify-content: space-around;
}
@media only screen and (max-width: 1024px) {
  .c-aside--mobile .c-aside__action-container {
    position: absolute;
    bottom: 0;
    background-color: #fff;
    width: 100%;
    padding: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  .c-aside__action-container {
    padding: 20px 15px;
  }
}
.c-aside__action-container .o-btn {
  width: calc(50% - 5px);
  padding: 15px 0;
}
@media only screen and (max-width: 1024px) {
  .c-aside--mobile .c-aside__action-container .o-btn {
    padding: 10px;
    height: auto;
    line-height: 1;
  }
}

.c-card-material {
  overflow: hidden;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 8px;
  position: relative;
  background-color: #fff;
  font-family: "Roboto", sans-serif !important;
  box-shadow: 0px 2px 4px #15152233;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.c-card-material__ttl {
  margin: 0 0 5px;
  color: #9c63ff;
  font-weight: bold;
  font-size: 20px;
}
.c-card-material__action {
  margin-top: auto;
  display: flex;
  justify-content: center;
}

.c-policy-bar {
  position: fixed;
  bottom: -100%;
  background-color: #e8e7e6;
  left: 0;
  right: 0;
  padding: 15px 0;
  color: #000;
  z-index: 10;
  box-shadow: 0px -2px 4px #15152233;
  transition: 1s ease;
}
.show-policy .c-policy-bar {
  bottom: 0;
  transition: 2s ease;
}
.c-policy-bar__link {
  color: #000;
  text-decoration: underline;
}
.c-policy-bar__link:hover {
  color: #000;
}
.c-policy-bar__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-policy-bar__grid > div:nth-child(1) {
  width: 70%;
}

.c-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
}
.c-panel--color-gray {
  background-color: #f5f5f5;
}
.c-panel--maxwidth-300 {
  max-width: 300px;
}
.c-panel--maxwidth-400 {
  max-width: 400px;
}
.c-panel--maxwidth-500 {
  max-width: 500px;
}
.c-panel--label,
.c-panel span {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  padding: 0;
  position: relative;
}
@media (max-width: 768px) {
  .c-panel {
    flex-direction: column;
  }
}

.c-search {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-self: center;
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
}
.c-search--color-brand {
  background-color: #9c63ff;
}
.c-search--panel {
  background-color: #fff;
  position: absolute;
  left: 20px;
  top: 70px;
  z-index: 3;
  border-radius: 5px;
  border: 1px solid #c3c3c3;
  padding: 30px;
  box-shadow: 0px 1px 1px #002600;
  max-width: 60%;
  overflow-y: scroll;
}
.c-search--panel-message {
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}
.c-search--panel-message p {
  text-align: center;
  max-width: 80%;
  font-size: 14px;
  color: #151522;
  margin: 0 auto;
}
.c-search--panel-message a {
  color: #151522;
  text-decoration: underline;
}
.c-search input {
  max-width: 500px;
}
@media (max-width: 768px) {
  .c-search--panel {
    left: 0;
    max-width: 100%;
  }
}

#guests-table .o-checkbox,
#guests-table .guests-hidden {
  display: none;
}

.c-popover {
  position: relative;
}
.c-popover__link {
  display: block;
  color: #878787;
  font-size: 15px;
}
.c-popover__link:hover {
  cursor: pointer;
  color: #151522;
  text-decoration: none;
}
.c-popover__hidden {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 200px;
  padding: 10px;
  background-color: #fff;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0px 1px 4px #000026;
  z-index: 10;
  right: 0;
  font-size: 12px;
  transition: 0.2s ease-out;
}
.c-popover:hover .c-popover__hidden {
  opacity: 1;
  visibility: visible;
}
.c-popover__hidden p {
  margin: 0 0 5px;
}

.c-modal {
  position: fixed;
  background-color: rgba(51, 51, 51, 0.5);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 20;
  transition: 0.3s ease-out;
  visibility: hidden;
  opacity: 0;
}
.c-modal.is-active {
  visibility: visible;
  opacity: 1;
}
.c-modal__close {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 15px;
  height: 15px;
  cursor: pointer;
}
.c-modal__close:before, .c-modal__close:after {
  content: "";
  width: 15px;
  height: 1px;
  background-color: #777;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
}
.c-modal__close:before {
  transform: translateX(-50%) translateY(-50%) rotateZ(45deg);
}
.c-modal__close:after {
  transform: translateX(-50%) translateY(-50%) rotateZ(-45deg);
}
.c-modal__lbl {
  display: block;
  font-weight: bold;
}
.c-modal__lightbox {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  overflow-y: auto;
}
.c-modal__lightbox--large {
  width: 90%;
  height: 90%;
}
@media (min-width: 1024px) {
  .c-modal__lightbox--large {
    width: 70%;
    max-width: 550px;
    max-height: 90%;
    height: auto;
  }
}
.c-modal__lightbox--padding {
  padding: 50px;
}
.c-modal__content {
  overflow-y: auto;
  height: 90%;
  padding: 0 10px 15px 0;
}
.c-modal__header {
  padding-bottom: 10px;
}
.c-modal__body {
  padding: 10px 0;
}
.c-modal__body:before, .c-modal__body:after {
  content: "";
  background-color: #d9d9d9;
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
}
.c-modal__body:before {
  margin-top: -10px;
}
.c-modal__footer {
  padding: 10px 0 0;
}
.c-modal__centralized {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.c-modal__title {
  font-size: 16px;
  font-weight: 500;
}
.c-modal__subtitle {
  font-size: 20px;
  font-weight: 600;
}

.c-upload-zone {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 15px;
  padding-bottom: 30px;
}
@media only screen and (max-width: 1024px) {
  .c-upload-zone--mob-center {
    margin: 0 auto;
    align-items: center;
    text-align: center;
  }
}
.c-upload-zone--center {
  margin: 0 auto;
  align-items: center;
  text-align: center;
}
.c-upload-zone__container {
  max-width: 160px;
}
.c-upload-zone__ttl {
  font-size: 16px;
  font-weight: bold;
  color: #151522;
  margin: 0 0 15px;
}
.c-upload-zone__sbttl {
  font-size: 14px;
  font-weight: normal;
  margin: 0 0 15px;
}
.c-upload-zone__img-wrapper {
  position: relative;
  display: inline-flex;
}
.c-upload-zone__img-wrapper:after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'%3E%3Cpath data-name='Icon ionic-md-add-circle' d='M14 0a14 14 0 1014 14A14 14 0 0014 0zm7.2 15.413h-5.787v5.788h-2.826v-5.788H6.798v-2.826h5.788V6.798h2.827v5.788h5.788z' fill='%231dc7b6'/%3E%3C/svg%3E");
  bottom: 15px;
  right: 0;
  background-color: #fff;
  border-radius: 50%;
}
.c-upload-zone__img-wrapper img,
.c-upload-zone__img-wrapper svg {
  width: 115px;
  max-width: 100%;
  margin: 0 0 15px;
}
.c-upload-zone__input {
  display: none;
}
.c-upload-zone__info {
  font-size: 12px;
  color: #6f7779;
}

.c-mid-banner--flex {
  display: flex;
  flex-wrap: wrap;
}
.c-mid-banner__item {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  font-family: "Roboto", sans-serif;
  background-size: cover;
  background-position: center;
}
@media only screen and (min-width: 1050px) {
  .c-mid-banner--flex .c-mid-banner__item {
    width: 50%;
  }
}
.c-mid-banner--flex .c-mid-banner__item--full {
  width: 100%;
}
.c-mid-banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 400px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media only screen and (min-width: 1050px) {
  .c-mid-banner__content {
    min-height: 345px;
    align-items: flex-start;
  }
}
.c-mid-banner--flex .c-mid-banner__content {
  max-width: 520px;
}
.c-mid-banner--flex .c-mid-banner__content--full {
  max-width: 1200px;
}
.c-mid-banner__company {
  font-size: 14px;
  margin-bottom: 10px;
  margin-top: auto;
  text-transform: uppercase;
  line-height: 1;
}
@media only screen and (min-width: 1050px) {
  .c-mid-banner__company {
    margin-bottom: 20px;
  }
}
.c-mid-banner__ttl {
  font-size: 32px;
  line-height: 1;
  font-weight: bold;
}
.c-mid-banner__action {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  margin-bottom: 70px;
}
@media only screen and (min-width: 1050px) {
  .c-mid-banner__action {
    align-items: flex-start;
  }
}
.c-mid-banner__action .o-btn {
  min-width: 170px;
}

.c-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.c-gallery:after {
  content: "";
  width: calc(25% - 10px);
  height: 0;
}
.c-gallery__item {
  width: calc(50% - 10px);
  height: 160px;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s ease-out;
  opacity: 1;
  visibility: visible;
}
@media only screen and (min-width: 600px) {
  .c-gallery__item {
    width: calc(33.333% - 10px);
  }
}
@media only screen and (min-width: 1024px) {
  .c-gallery__item {
    width: calc(25% - 12px);
    height: 280px;
  }
}
.c-gallery__item--hidden {
  opacity: 0;
  visibility: hidden;
  height: 0;
}
.c-gallery__item--last {
  height: 0;
}
.c-gallery__link {
  width: 100%;
  height: 100%;
}
.c-gallery__thumb {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  cursor: pointer;
  transition: opacity 0.3s 0.4s ease, filter 0.2s ease-out;
}
.c-gallery__thumb:hover {
  filter: brightness(80%);
}

.c-gallery-modal {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-70%);
  z-index: 50;
  max-width: 80vw;
  max-height: 80vh;
  transition: all 0.2s ease-out, transform 0.2s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-gallery-modal.active {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(-50%);
  transition: all 0.5s 0.4s ease-out, transform 0.3s 0.4s ease-out;
}
.c-gallery-modal__img, .c-gallery-modal__video {
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}
.c-gallery-modal__close {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -35px;
  right: 0;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
}
.c-gallery-modal__close:hover, .c-gallery-modal__close:focus, .c-gallery-modal__close:active {
  color: #fff;
  text-decoration: none;
}
.c-gallery-modal__close:after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg data-name='Grupo 641' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Cpath data-name='Caminho 2095' d='M0 0h22v22H0z' fill='none'/%3E%3Cpath data-name='Caminho 2096' d='M3 3l16 16m0-16L3 19' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
  background-position: center;
  background-size: contain;
  width: 18px;
  height: 18px;
  margin-left: 8px;
}
.c-gallery-modal__actions {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}
.c-gallery-modal__arrow {
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 20'%3E%3Cpath d='M9.311.276a1 1 0 011.379 1.448L3.019 9H23a1 1 0 110 2H3.051l7.639 7.276a1 1 0 11-1.379 1.448l-8.725-8.31A2 2 0 01.6 8.569z' fill='%23fff'/%3E%3C/svg%3E");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 25px;
  height: 20px;
}
.c-gallery-modal__arrow--prev {
  left: -60px;
}
.c-gallery-modal__arrow--next {
  right: -60px;
  transform: rotateZ(180deg);
}

.c-filter-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.c-filter-header__item {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  margin-bottom: 20px;
}
@media only screen and (min-width: 1050px) {
  .c-filter-header__item--1 {
    width: calc(1% - 20px);
  }
  .c-filter-header__item--2 {
    width: calc(2% - 20px);
  }
  .c-filter-header__item--3 {
    width: calc(3% - 20px);
  }
  .c-filter-header__item--4 {
    width: calc(4% - 20px);
  }
  .c-filter-header__item--5 {
    width: calc(5% - 20px);
  }
  .c-filter-header__item--6 {
    width: calc(6% - 20px);
  }
  .c-filter-header__item--7 {
    width: calc(7% - 20px);
  }
  .c-filter-header__item--8 {
    width: calc(8% - 20px);
  }
  .c-filter-header__item--9 {
    width: calc(9% - 20px);
  }
  .c-filter-header__item--10 {
    width: calc(10% - 20px);
  }
  .c-filter-header__item--11 {
    width: calc(11% - 20px);
  }
  .c-filter-header__item--12 {
    width: calc(12% - 20px);
  }
  .c-filter-header__item--13 {
    width: calc(13% - 20px);
  }
  .c-filter-header__item--14 {
    width: calc(14% - 20px);
  }
  .c-filter-header__item--15 {
    width: calc(15% - 20px);
  }
  .c-filter-header__item--16 {
    width: calc(16% - 20px);
  }
  .c-filter-header__item--17 {
    width: calc(17% - 20px);
  }
  .c-filter-header__item--18 {
    width: calc(18% - 20px);
  }
  .c-filter-header__item--19 {
    width: calc(19% - 20px);
  }
  .c-filter-header__item--20 {
    width: calc(20% - 20px);
  }
  .c-filter-header__item--21 {
    width: calc(21% - 20px);
  }
  .c-filter-header__item--22 {
    width: calc(22% - 20px);
  }
  .c-filter-header__item--23 {
    width: calc(23% - 20px);
  }
  .c-filter-header__item--24 {
    width: calc(24% - 20px);
  }
  .c-filter-header__item--25 {
    width: calc(25% - 20px);
  }
  .c-filter-header__item--26 {
    width: calc(26% - 20px);
  }
  .c-filter-header__item--27 {
    width: calc(27% - 20px);
  }
  .c-filter-header__item--28 {
    width: calc(28% - 20px);
  }
  .c-filter-header__item--29 {
    width: calc(29% - 20px);
  }
  .c-filter-header__item--30 {
    width: calc(30% - 20px);
  }
  .c-filter-header__item--31 {
    width: calc(31% - 20px);
  }
  .c-filter-header__item--32 {
    width: calc(32% - 20px);
  }
  .c-filter-header__item--33 {
    width: calc(33% - 20px);
  }
  .c-filter-header__item--34 {
    width: calc(34% - 20px);
  }
  .c-filter-header__item--35 {
    width: calc(35% - 20px);
  }
  .c-filter-header__item--36 {
    width: calc(36% - 20px);
  }
  .c-filter-header__item--37 {
    width: calc(37% - 20px);
  }
  .c-filter-header__item--38 {
    width: calc(38% - 20px);
  }
  .c-filter-header__item--39 {
    width: calc(39% - 20px);
  }
  .c-filter-header__item--40 {
    width: calc(40% - 20px);
  }
  .c-filter-header__item--41 {
    width: calc(41% - 20px);
  }
  .c-filter-header__item--42 {
    width: calc(42% - 20px);
  }
  .c-filter-header__item--43 {
    width: calc(43% - 20px);
  }
  .c-filter-header__item--44 {
    width: calc(44% - 20px);
  }
  .c-filter-header__item--45 {
    width: calc(45% - 20px);
  }
  .c-filter-header__item--46 {
    width: calc(46% - 20px);
  }
  .c-filter-header__item--47 {
    width: calc(47% - 20px);
  }
  .c-filter-header__item--48 {
    width: calc(48% - 20px);
  }
  .c-filter-header__item--49 {
    width: calc(49% - 20px);
  }
  .c-filter-header__item--50 {
    width: calc(50% - 20px);
  }
  .c-filter-header__item--51 {
    width: calc(51% - 20px);
  }
  .c-filter-header__item--52 {
    width: calc(52% - 20px);
  }
  .c-filter-header__item--53 {
    width: calc(53% - 20px);
  }
  .c-filter-header__item--54 {
    width: calc(54% - 20px);
  }
  .c-filter-header__item--55 {
    width: calc(55% - 20px);
  }
  .c-filter-header__item--56 {
    width: calc(56% - 20px);
  }
  .c-filter-header__item--57 {
    width: calc(57% - 20px);
  }
  .c-filter-header__item--58 {
    width: calc(58% - 20px);
  }
  .c-filter-header__item--59 {
    width: calc(59% - 20px);
  }
  .c-filter-header__item--60 {
    width: calc(60% - 20px);
  }
  .c-filter-header__item--61 {
    width: calc(61% - 20px);
  }
  .c-filter-header__item--62 {
    width: calc(62% - 20px);
  }
  .c-filter-header__item--63 {
    width: calc(63% - 20px);
  }
  .c-filter-header__item--64 {
    width: calc(64% - 20px);
  }
  .c-filter-header__item--65 {
    width: calc(65% - 20px);
  }
  .c-filter-header__item--66 {
    width: calc(66% - 20px);
  }
  .c-filter-header__item--67 {
    width: calc(67% - 20px);
  }
  .c-filter-header__item--68 {
    width: calc(68% - 20px);
  }
  .c-filter-header__item--69 {
    width: calc(69% - 20px);
  }
  .c-filter-header__item--70 {
    width: calc(70% - 20px);
  }
  .c-filter-header__item--71 {
    width: calc(71% - 20px);
  }
  .c-filter-header__item--72 {
    width: calc(72% - 20px);
  }
  .c-filter-header__item--73 {
    width: calc(73% - 20px);
  }
  .c-filter-header__item--74 {
    width: calc(74% - 20px);
  }
  .c-filter-header__item--75 {
    width: calc(75% - 20px);
  }
  .c-filter-header__item--76 {
    width: calc(76% - 20px);
  }
  .c-filter-header__item--77 {
    width: calc(77% - 20px);
  }
  .c-filter-header__item--78 {
    width: calc(78% - 20px);
  }
  .c-filter-header__item--79 {
    width: calc(79% - 20px);
  }
  .c-filter-header__item--80 {
    width: calc(80% - 20px);
  }
  .c-filter-header__item--81 {
    width: calc(81% - 20px);
  }
  .c-filter-header__item--82 {
    width: calc(82% - 20px);
  }
  .c-filter-header__item--83 {
    width: calc(83% - 20px);
  }
  .c-filter-header__item--84 {
    width: calc(84% - 20px);
  }
  .c-filter-header__item--85 {
    width: calc(85% - 20px);
  }
  .c-filter-header__item--86 {
    width: calc(86% - 20px);
  }
  .c-filter-header__item--87 {
    width: calc(87% - 20px);
  }
  .c-filter-header__item--88 {
    width: calc(88% - 20px);
  }
  .c-filter-header__item--89 {
    width: calc(89% - 20px);
  }
  .c-filter-header__item--90 {
    width: calc(90% - 20px);
  }
  .c-filter-header__item--91 {
    width: calc(91% - 20px);
  }
  .c-filter-header__item--92 {
    width: calc(92% - 20px);
  }
  .c-filter-header__item--93 {
    width: calc(93% - 20px);
  }
  .c-filter-header__item--94 {
    width: calc(94% - 20px);
  }
  .c-filter-header__item--95 {
    width: calc(95% - 20px);
  }
  .c-filter-header__item--96 {
    width: calc(96% - 20px);
  }
  .c-filter-header__item--97 {
    width: calc(97% - 20px);
  }
  .c-filter-header__item--98 {
    width: calc(98% - 20px);
  }
  .c-filter-header__item--99 {
    width: calc(99% - 20px);
  }
}
.c-filter-header__lbl {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #9c63ff;
  white-space: nowrap;
  padding: 0 10px 0 0;
  margin: 0;
}

.c-materials-list__item {
  background-color: #f5f5f5;
  border-radius: 4px;
  margin: 0 0 15px 0;
  padding: 35px 25px 35px 40px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 0;
}
.c-materials-list__item--center {
  justify-content: center;
}
.c-materials-list__type {
  width: 15%;
  max-width: 30px;
  max-height: 35px;
  fill: #9c63ff;
  flex-shrink: 0;
  align-self: flex-start;
}
@media only screen and (min-width: 1050px) {
  .c-materials-list__type {
    width: 30px;
    height: 35px;
  }
}
.c-materials-list__data {
  margin-right: auto;
  display: flex;
  flex-direction: column;
  width: 85%;
  padding-left: 25px;
}
@media only screen and (min-width: 1050px) {
  .c-materials-list__data {
    width: auto;
  }
}
.c-materials-list__name {
  font-size: 16px;
  font-weight: bold;
}
.c-materials-list__actions {
  width: 100%;
  display: flex;
  justify-content: inherit;
}
@media only screen and (min-width: 1050px) {
  .c-materials-list__actions {
    width: auto;
  }
}
.c-materials-list__actions--full {
  width: 100%;
}

.c-pagination {
  background-color: #f5f5f5;
  margin: 0 auto;
  padding: 21px 24px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.c-pagination.is-hidden {
  display: none;
}
@media only screen and (min-width: 1050px) {
  .c-pagination {
    width: 90%;
    flex-wrap: nowrap;
  }
  .c-pagination:before {
    content: "";
    width: 100%;
  }
}
.c-pagination__nav {
  margin-left: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-pagination__nav-item {
  padding: 0 5px;
  margin: 0 3px;
}
.c-pagination__nav-item--active {
  font-weight: bold;
  text-decoration: underline;
}
.c-pagination__actions {
  margin-left: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}
@media only screen and (min-width: 1050px) {
  .c-pagination__actions {
    margin-top: 0;
    justify-content: flex-end;
  }
}
.c-pagination__btn {
  padding: 12px 29px;
  min-height: 38px;
}

.c-new-swal {
  text-align: left;
}
.c-new-swal--popup {
  transform: translateY(50px);
  animation: fadeInDown;
  animation-duration: 0.5s;
}
.c-new-swal .swal2-cancel {
  color: #9c63ff;
  transition: 0.2s ease-out;
}
.c-new-swal p {
  margin-bottom: 5px;
  text-align: left;
}
.c-new-swal .o-ttl {
  color: #9c63ff;
  text-align: left;
  font-size: 16px;
}

@keyframes fadeInDown {
  from {
    transform: translateY(0);
    opacity: 0;
    visibility: hidden;
  }
  to {
    transform: translateY(50px);
    opacity: 1;
    visibility: visible;
  }
}
.c-new-table {
  width: 100%;
}
.c-new-table__search {
  border-radius: 4px;
  border: 1px solid #878787;
  background: #fff;
  padding: 8px 10px 8px 35px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.5 14H14.71L14.43 13.73C15.41 12.59 16 11.11 16 9.5C16 5.91 13.09 3 9.5 3C5.91 3 3 5.91 3 9.5C3 13.09 5.91 16 9.5 16C11.11 16 12.59 15.41 13.73 14.43L14 14.71V15.5L19 20.49L20.49 19L15.5 14ZM9.5 14C7.01 14 5 11.99 5 9.5C5 7.01 7.01 5 9.5 5C11.99 5 14 7.01 14 9.5C14 11.99 11.99 14 9.5 14Z' fill='%23878787'/%3E%3C/svg%3E%0A");
  background-size: 24px 24px;
  background-repeat: no-repeat;
  background-position: 5px center;
  width: 90%;
  max-width: 495px;
}
.c-new-table thead tr:nth-child(2) {
  background-color: #f5f5f5;
}
.c-new-table thead tr:nth-child(1) th {
  padding: 0 0 13px;
}
.c-new-table td,
.c-new-table th {
  padding: 13px 24px;
  color: #878787;
}
.c-new-table th {
  font-size: 12px;
}
.c-new-table td {
  font-size: 14px;
  border-bottom: 1px solid #f5f5f5;
}
.c-new-table[data-last-td-gray] td:last-of-type {
  background-color: #f5f5f5;
}
.c-new-table[data-last-td-gray] td:last-of-type > input {
  background-color: transparent;
}
.c-new-table[data-last-td-brand] thead tr:last-of-type th:last-of-type {
  background-color: #9c63ff;
  color: #fff;
}
.c-new-table[data-last-td-brand] td:last-of-type {
  border-left: 1px solid #9c63ff;
  border-right: 1px solid #9c63ff;
}
.c-new-table[data-last-td-brand] td:last-of-type > input {
  background-color: transparent;
}
.c-new-table[data-last-td-brand] tbody tr:last-of-type td:last-of-type {
  border-bottom: 1px solid #9c63ff;
}
.c-new-table__registers {
  border: 1px solid #383838;
  color: #383838;
  font-size: 14px;
  padding: 8px;
  border-radius: 2px;
  text-align: center;
  display: block;
  min-width: 150px;
}
.c-new-table__input-hours {
  width: 60px;
  height: 30px;
  border-radius: 4px;
  border: 1px solid #878787;
  background: #fff;
  padding: 8px 10px;
  display: block;
  margin: 0 auto;
}
.c-new-table__input-hours::-moz-placeholder {
  text-align: center;
}
.c-new-table__input-hours::placeholder {
  text-align: center;
}
.c-new-table__input-hours.error {
  border-color: red;
}

.c-form-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.c-form-steps__item {
  border: solid 2px #9c63ff;
  color: #9c63ff;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
  background-color: #fff;
  position: relative;
}
.c-form-steps__item.active {
  background-color: #9c63ff;
  color: #fff;
}
.c-form-steps__item:after {
  content: "";
  width: calc(100% + 25px);
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.c-form-steps:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #9c63ff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -2;
}

.c-btn-menu {
  border: none;
  outline: none;
  background-color: transparent;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-left: 50px;
  line-height: 1.33;
}
.c-btn-menu__hamburger {
  width: 20px;
  height: 17px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.c-btn-menu__hamburger > span {
  width: 100%;
  height: 3px;
  background-color: #000;
  border-radius: 45px;
  transition: transform 0.2s ease-out;
}
.nav-active .c-btn-menu__hamburger > span {
  position: absolute;
  left: 50%;
  top: 50%;
}
.nav-active .c-btn-menu__hamburger > span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.nav-active .c-btn-menu__hamburger > span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
.nav-active .c-btn-menu__hamburger > span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.c-btn-menu-logged {
  border: 2px solid #9c63ff;
  outline: none;
  background-color: #000;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 0;
  margin-left: 20px;
  position: relative;
}
.c-btn-menu-logged__img {
  -o-object-fit: cover;
     object-fit: cover;
}
.c-btn-menu-logged__icon {
  width: 16px;
  height: 16px;
  position: absolute;
  border: 2px solid #9c63ff;
  border-radius: 50%;
  right: -3px;
  bottom: -3px;
  background-color: #9c63ff;
}
.c-btn-menu-logged__icon > span {
  width: 70%;
  height: 1px;
  background-color: #fff;
  border-radius: 45px;
  transition: transform 0.2s ease-out;
  position: absolute;
  left: 50%;
}
.c-btn-menu-logged__icon > span:nth-child(1) {
  top: 2px;
  transform: translateX(-50%);
}
.c-btn-menu-logged__icon > span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.c-btn-menu-logged__icon > span:nth-child(3) {
  transform: translateX(-50%);
  bottom: 2px;
}
.nav-active .c-btn-menu-logged__icon > span {
  position: absolute;
  left: 50%;
  top: 50%;
}
.nav-active .c-btn-menu-logged__icon > span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.nav-active .c-btn-menu-logged__icon > span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
.nav-active .c-btn-menu-logged__icon > span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.c-personal-box {
  border-radius: 8px;
  box-shadow: 0px 2px 4px 0px rgba(21, 21, 34, 0.33);
  padding: 20px 16px 30px;
  gap: 35px;
  display: flex;
  flex-direction: column;
}
.c-personal-box__cover-container {
  display: flex;
  align-items: center;
  gap: 16px;
}
.c-personal-box__cover {
  width: 48px;
  height: 48px;
}
.c-personal-box__name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  flex: 1;
}
.c-personal-box__links-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.c-personal-box__link--icon {
  display: flex;
  align-items: center;
  gap: 5px;
}
.c-personal-box__link--icon:before {
  content: "";
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #9c63ff;
}
.c-personal-box__link--edit:before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.5586 4.43828L14.118 5.87891C13.9711 6.02578 13.7336 6.02578 13.5868 5.87891L10.118 2.41016C9.97113 2.26328 9.97113 2.02578 10.118 1.87891L11.5586 0.438281C12.143 -0.146094 13.093 -0.146094 13.6805 0.438281L15.5586 2.31641C16.1461 2.90078 16.1461 3.85078 15.5586 4.43828ZM8.88051 3.11641L0.67426 11.3227L0.0117595 15.1195C-0.0788655 15.632 0.36801 16.0758 0.88051 15.9883L4.67738 15.3227L12.8836 7.11641C13.0305 6.96953 13.0305 6.73203 12.8836 6.58516L9.41488 3.11641C9.26488 2.96953 9.02739 2.96953 8.88051 3.11641ZM3.87738 10.6195C3.70551 10.4477 3.70551 10.1727 3.87738 10.0008L8.68989 5.18828C8.86176 5.01641 9.13676 5.01641 9.30863 5.18828C9.48051 5.36016 9.48051 5.63516 9.30863 5.80703L4.49613 10.6195C4.32426 10.7914 4.04926 10.7914 3.87738 10.6195ZM2.74926 13.2477H4.24926V14.382L2.23363 14.7352L1.26176 13.7633L1.61488 11.7477H2.74926V13.2477Z' fill='%230402bf'/%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.5586 4.43828L14.118 5.87891C13.9711 6.02578 13.7336 6.02578 13.5868 5.87891L10.118 2.41016C9.97113 2.26328 9.97113 2.02578 10.118 1.87891L11.5586 0.438281C12.143 -0.146094 13.093 -0.146094 13.6805 0.438281L15.5586 2.31641C16.1461 2.90078 16.1461 3.85078 15.5586 4.43828ZM8.88051 3.11641L0.67426 11.3227L0.0117595 15.1195C-0.0788655 15.632 0.36801 16.0758 0.88051 15.9883L4.67738 15.3227L12.8836 7.11641C13.0305 6.96953 13.0305 6.73203 12.8836 6.58516L9.41488 3.11641C9.26488 2.96953 9.02739 2.96953 8.88051 3.11641ZM3.87738 10.6195C3.70551 10.4477 3.70551 10.1727 3.87738 10.0008L8.68989 5.18828C8.86176 5.01641 9.13676 5.01641 9.30863 5.18828C9.48051 5.36016 9.48051 5.63516 9.30863 5.80703L4.49613 10.6195C4.32426 10.7914 4.04926 10.7914 3.87738 10.6195ZM2.74926 13.2477H4.24926V14.382L2.23363 14.7352L1.26176 13.7633L1.61488 11.7477H2.74926V13.2477Z' fill='%230402bf'/%3E%3C/svg%3E%0A");
}
.c-personal-box__link--help:before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1101_29828)'%3E%3Cpath d='M15.75 8C15.75 12.2812 12.2799 15.75 8 15.75C3.72009 15.75 0.25 12.2812 0.25 8C0.25 3.72134 3.72009 0.25 8 0.25C12.2799 0.25 15.75 3.72134 15.75 8ZM8.20797 2.8125C6.50494 2.8125 5.41875 3.52991 4.56581 4.80494C4.45531 4.97012 4.49228 5.19291 4.65066 5.313L5.735 6.13519C5.89766 6.25853 6.12941 6.22919 6.25578 6.06887C6.81403 5.36081 7.19681 4.95022 8.0465 4.95022C8.68491 4.95022 9.47456 5.36109 9.47456 5.98016C9.47456 6.44816 9.08822 6.6885 8.45788 7.04191C7.72275 7.454 6.75 7.96691 6.75 9.25V9.375C6.75 9.58209 6.91791 9.75 7.125 9.75H8.875C9.08209 9.75 9.25 9.58209 9.25 9.375V9.33334C9.25 8.44391 11.8496 8.40687 11.8496 6C11.8496 4.18744 9.96941 2.8125 8.20797 2.8125ZM8 10.5625C7.20734 10.5625 6.5625 11.2073 6.5625 12C6.5625 12.7926 7.20734 13.4375 8 13.4375C8.79266 13.4375 9.4375 12.7926 9.4375 12C9.4375 11.2073 8.79266 10.5625 8 10.5625Z' fill='%230402bf'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1101_29828'%3E%3Crect width='16' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1101_29828)'%3E%3Cpath d='M15.75 8C15.75 12.2812 12.2799 15.75 8 15.75C3.72009 15.75 0.25 12.2812 0.25 8C0.25 3.72134 3.72009 0.25 8 0.25C12.2799 0.25 15.75 3.72134 15.75 8ZM8.20797 2.8125C6.50494 2.8125 5.41875 3.52991 4.56581 4.80494C4.45531 4.97012 4.49228 5.19291 4.65066 5.313L5.735 6.13519C5.89766 6.25853 6.12941 6.22919 6.25578 6.06887C6.81403 5.36081 7.19681 4.95022 8.0465 4.95022C8.68491 4.95022 9.47456 5.36109 9.47456 5.98016C9.47456 6.44816 9.08822 6.6885 8.45788 7.04191C7.72275 7.454 6.75 7.96691 6.75 9.25V9.375C6.75 9.58209 6.91791 9.75 7.125 9.75H8.875C9.08209 9.75 9.25 9.58209 9.25 9.375V9.33334C9.25 8.44391 11.8496 8.40687 11.8496 6C11.8496 4.18744 9.96941 2.8125 8.20797 2.8125ZM8 10.5625C7.20734 10.5625 6.5625 11.2073 6.5625 12C6.5625 12.7926 7.20734 13.4375 8 13.4375C8.79266 13.4375 9.4375 12.7926 9.4375 12C9.4375 11.2073 8.79266 10.5625 8 10.5625Z' fill='%230402bf'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1101_29828'%3E%3Crect width='16' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.c-personal-box__controls-container {
  border: 1px solid #c3c3c3;
  padding: 16px;
}
.c-personal-box__btns-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
}

.c-next-box {
  border-radius: 8px;
  box-shadow: 0px 2px 4px 0px rgba(21, 21, 34, 0.33);
  padding: 20px 16px;
}
.c-next-box__ttl {
  font-size: 16px;
  font-weight: 700;
  color: #9c63ff;
  display: flex;
  gap: 10px;
  align-items: center;
}
.c-next-box__ttl:before {
  content: "";
  width: 16px;
  height: 16px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='17' height='16' viewBox='0 0 17 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 14.5C1.5 15.3281 2.17188 16 3 16H14C14.8281 16 15.5 15.3281 15.5 14.5V6H1.5V14.5ZM3.5 8.5C3.5 8.225 3.725 8 4 8H7C7.275 8 7.5 8.225 7.5 8.5V11.5C7.5 11.775 7.275 12 7 12H4C3.725 12 3.5 11.775 3.5 11.5V8.5ZM14 2H12.5V0.5C12.5 0.225 12.275 0 12 0H11C10.725 0 10.5 0.225 10.5 0.5V2H6.5V0.5C6.5 0.225 6.275 0 6 0H5C4.725 0 4.5 0.225 4.5 0.5V2H3C2.17188 2 1.5 2.67188 1.5 3.5V5H15.5V3.5C15.5 2.67188 14.8281 2 14 2Z' fill='%230402bf'/%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg width='17' height='16' viewBox='0 0 17 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 14.5C1.5 15.3281 2.17188 16 3 16H14C14.8281 16 15.5 15.3281 15.5 14.5V6H1.5V14.5ZM3.5 8.5C3.5 8.225 3.725 8 4 8H7C7.275 8 7.5 8.225 7.5 8.5V11.5C7.5 11.775 7.275 12 7 12H4C3.725 12 3.5 11.775 3.5 11.5V8.5ZM14 2H12.5V0.5C12.5 0.225 12.275 0 12 0H11C10.725 0 10.5 0.225 10.5 0.5V2H6.5V0.5C6.5 0.225 6.275 0 6 0H5C4.725 0 4.5 0.225 4.5 0.5V2H3C2.17188 2 1.5 2.67188 1.5 3.5V5H15.5V3.5C15.5 2.67188 14.8281 2 14 2Z' fill='%230402bf'/%3E%3C/svg%3E%0A");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #9c63ff;
}
.c-next-box__ttl--challenges::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='10' height='16' viewBox='0 0 10 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.24984 5H5.64359L6.97484 0.94375C7.09984 0.46875 6.74047 0 6.24984 0H1.74984C1.37484 0 1.05609 0.278125 1.00609 0.65L0.00609227 8.15C-0.0532827 8.6 0.296717 9 0.749842 9H4.45922L3.01859 15.0781C2.90609 15.5531 3.26859 16 3.74672 16C4.00922 16 4.25922 15.8625 4.39672 15.625L9.89672 6.125C10.1873 5.62813 9.82797 5 9.24984 5Z' fill='%230000BD'/%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg width='10' height='16' viewBox='0 0 10 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.24984 5H5.64359L6.97484 0.94375C7.09984 0.46875 6.74047 0 6.24984 0H1.74984C1.37484 0 1.05609 0.278125 1.00609 0.65L0.00609227 8.15C-0.0532827 8.6 0.296717 9 0.749842 9H4.45922L3.01859 15.0781C2.90609 15.5531 3.26859 16 3.74672 16C4.00922 16 4.25922 15.8625 4.39672 15.625L9.89672 6.125C10.1873 5.62813 9.82797 5 9.24984 5Z' fill='%230000BD'/%3E%3C/svg%3E%0A");
}
.c-next-box__sbttl {
  color: #666;
  font-size: 12px;
}
.c-next-box__list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.c-next-box__item > a > span:nth-child(1) {
  color: #666;
  font-size: 12px;
  display: block;
}
.c-next-box__item > a > span:nth-child(2) {
  color: #151522;
  font-size: 14px;
  display: block;
}

.c-notifications__ttl {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 20px;
  color: #9c63ff;
  font-weight: 700;
}
.c-notifications__ttl:before {
  content: "";
  width: 24px;
  height: 24px;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='25' height='24' viewBox='0 0 25 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.5 24C14.1557 24 15.4986 22.657 15.4986 21H9.50144C9.50144 22.657 10.8444 24 12.5 24ZM22.5964 16.9823C21.6908 16.0092 19.9963 14.5453 19.9963 9.75C19.9963 6.10781 17.4425 3.19219 13.9991 2.47688V1.5C13.9991 0.671719 13.3278 0 12.5 0C11.6722 0 11.001 0.671719 11.001 1.5V2.47688C7.55753 3.19219 5.00378 6.10781 5.00378 9.75C5.00378 14.5453 3.30925 16.0092 2.40363 16.9823C2.12238 17.2847 1.99769 17.6461 2.00003 18C2.00519 18.7687 2.60847 19.5 3.50472 19.5H21.4953C22.3916 19.5 22.9953 18.7687 23 18C23.0024 17.6461 22.8777 17.2842 22.5964 16.9823Z' fill='%230402bf'/%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg width='25' height='24' viewBox='0 0 25 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.5 24C14.1557 24 15.4986 22.657 15.4986 21H9.50144C9.50144 22.657 10.8444 24 12.5 24ZM22.5964 16.9823C21.6908 16.0092 19.9963 14.5453 19.9963 9.75C19.9963 6.10781 17.4425 3.19219 13.9991 2.47688V1.5C13.9991 0.671719 13.3278 0 12.5 0C11.6722 0 11.001 0.671719 11.001 1.5V2.47688C7.55753 3.19219 5.00378 6.10781 5.00378 9.75C5.00378 14.5453 3.30925 16.0092 2.40363 16.9823C2.12238 17.2847 1.99769 17.6461 2.00003 18C2.00519 18.7687 2.60847 19.5 3.50472 19.5H21.4953C22.3916 19.5 22.9953 18.7687 23 18C23.0024 17.6461 22.8777 17.2842 22.5964 16.9823Z' fill='%230402bf'/%3E%3C/svg%3E%0A");
  background-color: #9c63ff;
}
.c-notifications__sbttl {
  font-size: 16px;
  color: #151522;
  margin: 34px 0 24px;
}
.c-notifications__list {
  border-bottom: 1px solid #c3c3c3;
  padding-bottom: 15px;
}
.c-notifications__item {
  padding: 14px 16px;
  border-bottom: 1px solid #f5f5f5;
  display: flex;
  align-items: center;
  gap: 10px;
}
.c-notifications__item a {
  color: #9c63ff;
}
.c-notifications__item--warning:before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1101_29345)'%3E%3Cpath d='M16.25 8.5C16.25 12.7812 12.7799 16.25 8.5 16.25C4.22009 16.25 0.75 12.7812 0.75 8.5C0.75 4.22134 4.22009 0.75 8.5 0.75C12.7799 0.75 16.25 4.22134 16.25 8.5ZM8.5 10.0625C7.70609 10.0625 7.0625 10.7061 7.0625 11.5C7.0625 12.2939 7.70609 12.9375 8.5 12.9375C9.29391 12.9375 9.9375 12.2939 9.9375 11.5C9.9375 10.7061 9.29391 10.0625 8.5 10.0625ZM7.13522 4.89544L7.36703 9.14544C7.37787 9.34431 7.54231 9.5 7.74147 9.5H9.25853C9.45769 9.5 9.62213 9.34431 9.63297 9.14544L9.86478 4.89544C9.8765 4.68063 9.70547 4.5 9.49034 4.5H7.50962C7.2945 4.5 7.1235 4.68063 7.13522 4.89544Z' fill='%23DA8E48'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1101_29345'%3E%3Crect width='16' height='16' fill='white' transform='translate(0.5 0.5)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  background-size: contain;
  background-repeat: no-repeat;
}

.c-btn-notification {
  width: 34px;
  height: 34px;
  background-color: transparent;
  outline: none;
  border-radius: 50%;
  border: 2px solid #9c63ff;
  position: relative;
}
.c-btn-notification__icon {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5.27 9.75A6.74 6.74 0 0 1 12.05 3a6.8 6.8 0 0 1 6.68 6.83v.67c0 3.36.7 5.3 1.32 6.37a.75.75 0 0 1-.64 1.13H4.59a.75.75 0 0 1-.64-1.13c.62-1.06 1.32-3.01 1.32-6.37v-.75ZM9 18v.75a3 3 0 0 0 6 0V18' stroke='%23151522' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.has-notification .c-btn-notification__icon::before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  background-color: #9c63ff;
  border-radius: 50%;
  left: 10px;
  top: 0px;
  border: 2px solid white;
}

.c-ranking {
  display: flex;
  gap: 15px;
}
.c-ranking > * {
  flex: 1;
}
.c-ranking__nav {
  display: flex;
  flex-direction: column;
  max-width: 290px;
}
.c-ranking__nav-item {
  padding: 20px;
  color: #878787;
  display: flex;
  align-items: center;
  gap: 10px;
}
.c-ranking__nav-item:hover, .c-ranking__nav-item.active {
  color: #151522;
  background-color: #cfcfcf;
  text-decoration: none;
}
.c-ranking__nav-item--icon:before {
  content: "";
  width: 24px;
  height: 24px;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #878787;
}
.c-ranking__nav-item--icon:hover:before, .c-ranking__nav-item--icon.active:before {
  background-color: #9c63ff;
}
.c-ranking__nav-item--clock:before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='7' stroke='%23878787' stroke-width='2'/%3E%3Cpath d='M5.96472 3.1363C5.2865 3.31803 4.66807 3.67508 4.17157 4.17157C3.67508 4.66807 3.31803 5.2865 3.1363 5.96472' stroke='%23878787' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M18.0353 3.1363C18.7135 3.31803 19.3319 3.67508 19.8284 4.17157C20.3249 4.66807 20.682 5.2865 20.8637 5.96472' stroke='%23878787' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M12 8V11.75C12 11.8881 12.1119 12 12.25 12H15' stroke='%23878787' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='7' stroke='%23878787' stroke-width='2'/%3E%3Cpath d='M5.96472 3.1363C5.2865 3.31803 4.66807 3.67508 4.17157 4.17157C3.67508 4.66807 3.31803 5.2865 3.1363 5.96472' stroke='%23878787' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M18.0353 3.1363C18.7135 3.31803 19.3319 3.67508 19.8284 4.17157C20.3249 4.66807 20.682 5.2865 20.8637 5.96472' stroke='%23878787' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M12 8V11.75C12 11.8881 12.1119 12 12.25 12H15' stroke='%23878787' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}
.c-ranking__nav-item--people::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='3' stroke='%23878787' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M12.2679 9C12.5332 8.54063 12.97 8.20543 13.4824 8.06815C13.9947 7.93086 14.5406 8.00273 15 8.26795C15.4594 8.53317 15.7946 8.97 15.9319 9.48236C16.0691 9.99472 15.9973 10.5406 15.7321 11C15.4668 11.4594 15.03 11.7946 14.5176 11.9319C14.0053 12.0691 13.4594 11.9973 13 11.7321C12.5406 11.4668 12.2054 11.03 12.0681 10.5176C11.9309 10.0053 12.0027 9.45937 12.2679 9L12.2679 9Z' stroke='%23878787' stroke-width='2'/%3E%3Cpath d='M13.8816 19L12.9012 19.1974L13.0629 20H13.8816V19ZM17.7201 17.9042L18.6626 17.5699L17.7201 17.9042ZM11.7808 15.7105L11.1759 14.9142L10.0193 15.7927L11.2526 16.5597L11.7808 15.7105ZM16.8672 18H13.8816V20H16.8672V18ZM16.7777 18.2384C16.7706 18.2186 16.7641 18.181 16.7725 18.1354C16.7803 18.0921 16.7982 18.0593 16.8151 18.0383C16.8473 17.9982 16.8739 18 16.8672 18V20C18.0132 20 19.1413 18.9194 18.6626 17.5699L16.7777 18.2384ZM14 16C15.6415 16 16.4026 17.1811 16.7777 18.2384L18.6626 17.5699C18.1976 16.2588 16.9485 14 14 14V16ZM12.3856 16.5069C12.7701 16.2148 13.2819 16 14 16V14C12.8381 14 11.9027 14.3622 11.1759 14.9142L12.3856 16.5069ZM11.2526 16.5597C12.2918 17.206 12.727 18.3324 12.9012 19.1974L14.8619 18.8026C14.6439 17.7204 14.0374 15.9364 12.3089 14.8614L11.2526 16.5597Z' fill='%23878787'/%3E%3Cpath d='M9 15C12.5715 15 13.5919 17.5512 13.8834 19.0089C13.9917 19.5504 13.5523 20 13 20H5C4.44772 20 4.00829 19.5504 4.11659 19.0089C4.4081 17.5512 5.42846 15 9 15Z' stroke='%23878787' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M19 3V7' stroke='%23878787' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M21 5L17 5' stroke='%23878787' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='3' stroke='%23878787' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M12.2679 9C12.5332 8.54063 12.97 8.20543 13.4824 8.06815C13.9947 7.93086 14.5406 8.00273 15 8.26795C15.4594 8.53317 15.7946 8.97 15.9319 9.48236C16.0691 9.99472 15.9973 10.5406 15.7321 11C15.4668 11.4594 15.03 11.7946 14.5176 11.9319C14.0053 12.0691 13.4594 11.9973 13 11.7321C12.5406 11.4668 12.2054 11.03 12.0681 10.5176C11.9309 10.0053 12.0027 9.45937 12.2679 9L12.2679 9Z' stroke='%23878787' stroke-width='2'/%3E%3Cpath d='M13.8816 19L12.9012 19.1974L13.0629 20H13.8816V19ZM17.7201 17.9042L18.6626 17.5699L17.7201 17.9042ZM11.7808 15.7105L11.1759 14.9142L10.0193 15.7927L11.2526 16.5597L11.7808 15.7105ZM16.8672 18H13.8816V20H16.8672V18ZM16.7777 18.2384C16.7706 18.2186 16.7641 18.181 16.7725 18.1354C16.7803 18.0921 16.7982 18.0593 16.8151 18.0383C16.8473 17.9982 16.8739 18 16.8672 18V20C18.0132 20 19.1413 18.9194 18.6626 17.5699L16.7777 18.2384ZM14 16C15.6415 16 16.4026 17.1811 16.7777 18.2384L18.6626 17.5699C18.1976 16.2588 16.9485 14 14 14V16ZM12.3856 16.5069C12.7701 16.2148 13.2819 16 14 16V14C12.8381 14 11.9027 14.3622 11.1759 14.9142L12.3856 16.5069ZM11.2526 16.5597C12.2918 17.206 12.727 18.3324 12.9012 19.1974L14.8619 18.8026C14.6439 17.7204 14.0374 15.9364 12.3089 14.8614L11.2526 16.5597Z' fill='%23878787'/%3E%3Cpath d='M9 15C12.5715 15 13.5919 17.5512 13.8834 19.0089C13.9917 19.5504 13.5523 20 13 20H5C4.44772 20 4.00829 19.5504 4.11659 19.0089C4.4081 17.5512 5.42846 15 9 15Z' stroke='%23878787' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M19 3V7' stroke='%23878787' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M21 5L17 5' stroke='%23878787' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}
.c-ranking__nav-item--flag:before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 15V5.5C6 5.2643 6 5.14645 6.07322 5.07322C6.14645 5 6.2643 5 6.5 5H16.7929C17.3066 5 17.5635 5 17.6274 5.15433C17.6913 5.30866 17.5097 5.49029 17.1464 5.85355L13.2828 9.71716C13.1495 9.85049 13.0828 9.91716 13.0828 10C13.0828 10.0828 13.1495 10.1495 13.2828 10.2828L17.1464 14.1464C17.5097 14.5097 17.6913 14.6913 17.6274 14.8457C17.5635 15 17.3066 15 16.7929 15H6ZM6 15V19' stroke='%23878787' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 15V5.5C6 5.2643 6 5.14645 6.07322 5.07322C6.14645 5 6.2643 5 6.5 5H16.7929C17.3066 5 17.5635 5 17.6274 5.15433C17.6913 5.30866 17.5097 5.49029 17.1464 5.85355L13.2828 9.71716C13.1495 9.85049 13.0828 9.91716 13.0828 10C13.0828 10.0828 13.1495 10.1495 13.2828 10.2828L17.1464 14.1464C17.5097 14.5097 17.6913 14.6913 17.6274 14.8457C17.5635 15 17.3066 15 16.7929 15H6ZM6 15V19' stroke='%23878787' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}
.c-ranking__table {
  display: none;
}
.c-ranking__table.active {
  display: block;
}
.c-ranking__ttl {
  color: #9c63ff;
  font-size: 20px;
  font-weight: 700;
}
.c-ranking__ttl--icon {
  display: flex;
  gap: 15px;
  align-items: center;
}
.c-ranking__ttl--icon:before {
  content: "";
  width: 24px;
  height: 24px;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #9c63ff;
}
.c-ranking__ttl--clock:before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='7' stroke='%23878787' stroke-width='2'/%3E%3Cpath d='M5.96472 3.1363C5.2865 3.31803 4.66807 3.67508 4.17157 4.17157C3.67508 4.66807 3.31803 5.2865 3.1363 5.96472' stroke='%23878787' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M18.0353 3.1363C18.7135 3.31803 19.3319 3.67508 19.8284 4.17157C20.3249 4.66807 20.682 5.2865 20.8637 5.96472' stroke='%23878787' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M12 8V11.75C12 11.8881 12.1119 12 12.25 12H15' stroke='%23878787' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='7' stroke='%23878787' stroke-width='2'/%3E%3Cpath d='M5.96472 3.1363C5.2865 3.31803 4.66807 3.67508 4.17157 4.17157C3.67508 4.66807 3.31803 5.2865 3.1363 5.96472' stroke='%23878787' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M18.0353 3.1363C18.7135 3.31803 19.3319 3.67508 19.8284 4.17157C20.3249 4.66807 20.682 5.2865 20.8637 5.96472' stroke='%23878787' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M12 8V11.75C12 11.8881 12.1119 12 12.25 12H15' stroke='%23878787' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}
.c-ranking__ttl--people::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='3' stroke='%23878787' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M12.2679 9C12.5332 8.54063 12.97 8.20543 13.4824 8.06815C13.9947 7.93086 14.5406 8.00273 15 8.26795C15.4594 8.53317 15.7946 8.97 15.9319 9.48236C16.0691 9.99472 15.9973 10.5406 15.7321 11C15.4668 11.4594 15.03 11.7946 14.5176 11.9319C14.0053 12.0691 13.4594 11.9973 13 11.7321C12.5406 11.4668 12.2054 11.03 12.0681 10.5176C11.9309 10.0053 12.0027 9.45937 12.2679 9L12.2679 9Z' stroke='%23878787' stroke-width='2'/%3E%3Cpath d='M13.8816 19L12.9012 19.1974L13.0629 20H13.8816V19ZM17.7201 17.9042L18.6626 17.5699L17.7201 17.9042ZM11.7808 15.7105L11.1759 14.9142L10.0193 15.7927L11.2526 16.5597L11.7808 15.7105ZM16.8672 18H13.8816V20H16.8672V18ZM16.7777 18.2384C16.7706 18.2186 16.7641 18.181 16.7725 18.1354C16.7803 18.0921 16.7982 18.0593 16.8151 18.0383C16.8473 17.9982 16.8739 18 16.8672 18V20C18.0132 20 19.1413 18.9194 18.6626 17.5699L16.7777 18.2384ZM14 16C15.6415 16 16.4026 17.1811 16.7777 18.2384L18.6626 17.5699C18.1976 16.2588 16.9485 14 14 14V16ZM12.3856 16.5069C12.7701 16.2148 13.2819 16 14 16V14C12.8381 14 11.9027 14.3622 11.1759 14.9142L12.3856 16.5069ZM11.2526 16.5597C12.2918 17.206 12.727 18.3324 12.9012 19.1974L14.8619 18.8026C14.6439 17.7204 14.0374 15.9364 12.3089 14.8614L11.2526 16.5597Z' fill='%23878787'/%3E%3Cpath d='M9 15C12.5715 15 13.5919 17.5512 13.8834 19.0089C13.9917 19.5504 13.5523 20 13 20H5C4.44772 20 4.00829 19.5504 4.11659 19.0089C4.4081 17.5512 5.42846 15 9 15Z' stroke='%23878787' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M19 3V7' stroke='%23878787' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M21 5L17 5' stroke='%23878787' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='3' stroke='%23878787' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M12.2679 9C12.5332 8.54063 12.97 8.20543 13.4824 8.06815C13.9947 7.93086 14.5406 8.00273 15 8.26795C15.4594 8.53317 15.7946 8.97 15.9319 9.48236C16.0691 9.99472 15.9973 10.5406 15.7321 11C15.4668 11.4594 15.03 11.7946 14.5176 11.9319C14.0053 12.0691 13.4594 11.9973 13 11.7321C12.5406 11.4668 12.2054 11.03 12.0681 10.5176C11.9309 10.0053 12.0027 9.45937 12.2679 9L12.2679 9Z' stroke='%23878787' stroke-width='2'/%3E%3Cpath d='M13.8816 19L12.9012 19.1974L13.0629 20H13.8816V19ZM17.7201 17.9042L18.6626 17.5699L17.7201 17.9042ZM11.7808 15.7105L11.1759 14.9142L10.0193 15.7927L11.2526 16.5597L11.7808 15.7105ZM16.8672 18H13.8816V20H16.8672V18ZM16.7777 18.2384C16.7706 18.2186 16.7641 18.181 16.7725 18.1354C16.7803 18.0921 16.7982 18.0593 16.8151 18.0383C16.8473 17.9982 16.8739 18 16.8672 18V20C18.0132 20 19.1413 18.9194 18.6626 17.5699L16.7777 18.2384ZM14 16C15.6415 16 16.4026 17.1811 16.7777 18.2384L18.6626 17.5699C18.1976 16.2588 16.9485 14 14 14V16ZM12.3856 16.5069C12.7701 16.2148 13.2819 16 14 16V14C12.8381 14 11.9027 14.3622 11.1759 14.9142L12.3856 16.5069ZM11.2526 16.5597C12.2918 17.206 12.727 18.3324 12.9012 19.1974L14.8619 18.8026C14.6439 17.7204 14.0374 15.9364 12.3089 14.8614L11.2526 16.5597Z' fill='%23878787'/%3E%3Cpath d='M9 15C12.5715 15 13.5919 17.5512 13.8834 19.0089C13.9917 19.5504 13.5523 20 13 20H5C4.44772 20 4.00829 19.5504 4.11659 19.0089C4.4081 17.5512 5.42846 15 9 15Z' stroke='%23878787' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M19 3V7' stroke='%23878787' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M21 5L17 5' stroke='%23878787' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}
.c-ranking__ttl--flag:before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 15V5.5C6 5.2643 6 5.14645 6.07322 5.07322C6.14645 5 6.2643 5 6.5 5H16.7929C17.3066 5 17.5635 5 17.6274 5.15433C17.6913 5.30866 17.5097 5.49029 17.1464 5.85355L13.2828 9.71716C13.1495 9.85049 13.0828 9.91716 13.0828 10C13.0828 10.0828 13.1495 10.1495 13.2828 10.2828L17.1464 14.1464C17.5097 14.5097 17.6913 14.6913 17.6274 14.8457C17.5635 15 17.3066 15 16.7929 15H6ZM6 15V19' stroke='%23878787' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 15V5.5C6 5.2643 6 5.14645 6.07322 5.07322C6.14645 5 6.2643 5 6.5 5H16.7929C17.3066 5 17.5635 5 17.6274 5.15433C17.6913 5.30866 17.5097 5.49029 17.1464 5.85355L13.2828 9.71716C13.1495 9.85049 13.0828 9.91716 13.0828 10C13.0828 10.0828 13.1495 10.1495 13.2828 10.2828L17.1464 14.1464C17.5097 14.5097 17.6913 14.6913 17.6274 14.8457C17.5635 15 17.3066 15 16.7929 15H6ZM6 15V19' stroke='%23878787' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}
.c-ranking__position {
  color: #9c63ff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  text-align: center !important;
}
.c-ranking__position::before {
  content: "#";
}
.c-ranking__hours {
  color: #9c63ff !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  text-align: center !important;
}
.c-ranking__name {
  display: flex;
  align-items: center;
  gap: 12px;
}
.c-ranking__name > img {
  width: 45px;
  height: 45px;
  flex: 0 0 auto;
}
.c-ranking__name > span {
  color: #383838;
  font-weight: 500;
}

.u-sr, legend {
  /*
   * Hide only visually, but have it available for screenreaders: h5bp.com/v
   */
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

.u-label-asterisk.active:after {
  content: "*";
}

.u-text-danger {
  color: red;
  font-weight: bold;
}

.u-clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.u-text-center {
  text-align: center;
}

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

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

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

.u-margin-clear {
  margin: 0;
}

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

.u-display-none {
  display: none;
}

.u-over-hidden {
  overflow: hidden;
}

.u-color-dark-blue {
  color: #f56b0f;
}
.u-color-red {
  color: #e34326;
}

.u-bg-white {
  background-color: #fff !important;
}
.u-bg-dark-blue {
  background-color: #f56b0f;
  color: #fff;
}
.u-bg-darker-blue {
  background-color: #080d1b;
  color: #fff;
}
.u-bg-lightgray {
  background-color: #f0f0f0;
}
.u-bg-orange {
  background-color: #9c63ff;
  color: #f56b0f;
}
.u-bg-orange {
  background-color: #9c63ff;
  color: #f56b0f;
}

.u-mw-400 {
  max-width: 400px;
}

.u-mt-0 {
  margin-top: 0px !important;
}

.u-pt-0 {
  padding-top: 0px !important;
}

.u-mb-0 {
  margin-bottom: 0px !important;
}

.u-pb-0 {
  padding-bottom: 0px !important;
}

.u-ml-0 {
  margin-left: 0px !important;
}

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

.u-mr-0 {
  margin-right: 0px !important;
}

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

.u-mx-0 {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.u-px-0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.u-my-0 {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.u-py-0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.u-mt-5 {
  margin-top: 5px !important;
}

.u-pt-5 {
  padding-top: 5px !important;
}

.u-mb-5 {
  margin-bottom: 5px !important;
}

.u-pb-5 {
  padding-bottom: 5px !important;
}

.u-ml-5 {
  margin-left: 5px !important;
}

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

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

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

.u-mx-5 {
  margin-left: 5px !important;
  margin-right: 5px !important;
}

.u-px-5 {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.u-my-5 {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}

.u-py-5 {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

.u-mt-10 {
  margin-top: 10px !important;
}

.u-pt-10 {
  padding-top: 10px !important;
}

.u-mb-10 {
  margin-bottom: 10px !important;
}

.u-pb-10 {
  padding-bottom: 10px !important;
}

.u-ml-10 {
  margin-left: 10px !important;
}

.u-pl-10 {
  padding-left: 10px !important;
}

.u-mr-10 {
  margin-right: 10px !important;
}

.u-pr-10 {
  padding-right: 10px !important;
}

.u-mx-10 {
  margin-left: 10px !important;
  margin-right: 10px !important;
}

.u-px-10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.u-my-10 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.u-py-10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.u-mt-15 {
  margin-top: 15px !important;
}

.u-pt-15 {
  padding-top: 15px !important;
}

.u-mb-15 {
  margin-bottom: 15px !important;
}

.u-pb-15 {
  padding-bottom: 15px !important;
}

.u-ml-15 {
  margin-left: 15px !important;
}

.u-pl-15 {
  padding-left: 15px !important;
}

.u-mr-15 {
  margin-right: 15px !important;
}

.u-pr-15 {
  padding-right: 15px !important;
}

.u-mx-15 {
  margin-left: 15px !important;
  margin-right: 15px !important;
}

.u-px-15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.u-my-15 {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}

.u-py-15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.u-mt-20 {
  margin-top: 20px !important;
}

.u-pt-20 {
  padding-top: 20px !important;
}

.u-mb-20 {
  margin-bottom: 20px !important;
}

.u-pb-20 {
  padding-bottom: 20px !important;
}

.u-ml-20 {
  margin-left: 20px !important;
}

.u-pl-20 {
  padding-left: 20px !important;
}

.u-mr-20 {
  margin-right: 20px !important;
}

.u-pr-20 {
  padding-right: 20px !important;
}

.u-mx-20 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}

.u-px-20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.u-my-20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.u-py-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.u-mt-25 {
  margin-top: 25px !important;
}

.u-pt-25 {
  padding-top: 25px !important;
}

.u-mb-25 {
  margin-bottom: 25px !important;
}

.u-pb-25 {
  padding-bottom: 25px !important;
}

.u-ml-25 {
  margin-left: 25px !important;
}

.u-pl-25 {
  padding-left: 25px !important;
}

.u-mr-25 {
  margin-right: 25px !important;
}

.u-pr-25 {
  padding-right: 25px !important;
}

.u-mx-25 {
  margin-left: 25px !important;
  margin-right: 25px !important;
}

.u-px-25 {
  padding-left: 25px !important;
  padding-right: 25px !important;
}

.u-my-25 {
  margin-top: 25px !important;
  margin-bottom: 25px !important;
}

.u-py-25 {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}

.u-mt-30 {
  margin-top: 30px !important;
}

.u-pt-30 {
  padding-top: 30px !important;
}

.u-mb-30 {
  margin-bottom: 30px !important;
}

.u-pb-30 {
  padding-bottom: 30px !important;
}

.u-ml-30 {
  margin-left: 30px !important;
}

.u-pl-30 {
  padding-left: 30px !important;
}

.u-mr-30 {
  margin-right: 30px !important;
}

.u-pr-30 {
  padding-right: 30px !important;
}

.u-mx-30 {
  margin-left: 30px !important;
  margin-right: 30px !important;
}

.u-px-30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.u-my-30 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

.u-py-30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.u-mt-35 {
  margin-top: 35px !important;
}

.u-pt-35 {
  padding-top: 35px !important;
}

.u-mb-35 {
  margin-bottom: 35px !important;
}

.u-pb-35 {
  padding-bottom: 35px !important;
}

.u-ml-35 {
  margin-left: 35px !important;
}

.u-pl-35 {
  padding-left: 35px !important;
}

.u-mr-35 {
  margin-right: 35px !important;
}

.u-pr-35 {
  padding-right: 35px !important;
}

.u-mx-35 {
  margin-left: 35px !important;
  margin-right: 35px !important;
}

.u-px-35 {
  padding-left: 35px !important;
  padding-right: 35px !important;
}

.u-my-35 {
  margin-top: 35px !important;
  margin-bottom: 35px !important;
}

.u-py-35 {
  padding-top: 35px !important;
  padding-bottom: 35px !important;
}

.u-mt-40 {
  margin-top: 40px !important;
}

.u-pt-40 {
  padding-top: 40px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-pb-40 {
  padding-bottom: 40px !important;
}

.u-ml-40 {
  margin-left: 40px !important;
}

.u-pl-40 {
  padding-left: 40px !important;
}

.u-mr-40 {
  margin-right: 40px !important;
}

.u-pr-40 {
  padding-right: 40px !important;
}

.u-mx-40 {
  margin-left: 40px !important;
  margin-right: 40px !important;
}

.u-px-40 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.u-my-40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.u-py-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.u-mt-45 {
  margin-top: 45px !important;
}

.u-pt-45 {
  padding-top: 45px !important;
}

.u-mb-45 {
  margin-bottom: 45px !important;
}

.u-pb-45 {
  padding-bottom: 45px !important;
}

.u-ml-45 {
  margin-left: 45px !important;
}

.u-pl-45 {
  padding-left: 45px !important;
}

.u-mr-45 {
  margin-right: 45px !important;
}

.u-pr-45 {
  padding-right: 45px !important;
}

.u-mx-45 {
  margin-left: 45px !important;
  margin-right: 45px !important;
}

.u-px-45 {
  padding-left: 45px !important;
  padding-right: 45px !important;
}

.u-my-45 {
  margin-top: 45px !important;
  margin-bottom: 45px !important;
}

.u-py-45 {
  padding-top: 45px !important;
  padding-bottom: 45px !important;
}

.u-mt-50 {
  margin-top: 50px !important;
}

.u-pt-50 {
  padding-top: 50px !important;
}

.u-mb-50 {
  margin-bottom: 50px !important;
}

.u-pb-50 {
  padding-bottom: 50px !important;
}

.u-ml-50 {
  margin-left: 50px !important;
}

.u-pl-50 {
  padding-left: 50px !important;
}

.u-mr-50 {
  margin-right: 50px !important;
}

.u-pr-50 {
  padding-right: 50px !important;
}

.u-mx-50 {
  margin-left: 50px !important;
  margin-right: 50px !important;
}

.u-px-50 {
  padding-left: 50px !important;
  padding-right: 50px !important;
}

.u-my-50 {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

.u-py-50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.u-mt-55 {
  margin-top: 55px !important;
}

.u-pt-55 {
  padding-top: 55px !important;
}

.u-mb-55 {
  margin-bottom: 55px !important;
}

.u-pb-55 {
  padding-bottom: 55px !important;
}

.u-ml-55 {
  margin-left: 55px !important;
}

.u-pl-55 {
  padding-left: 55px !important;
}

.u-mr-55 {
  margin-right: 55px !important;
}

.u-pr-55 {
  padding-right: 55px !important;
}

.u-mx-55 {
  margin-left: 55px !important;
  margin-right: 55px !important;
}

.u-px-55 {
  padding-left: 55px !important;
  padding-right: 55px !important;
}

.u-my-55 {
  margin-top: 55px !important;
  margin-bottom: 55px !important;
}

.u-py-55 {
  padding-top: 55px !important;
  padding-bottom: 55px !important;
}

.u-mt-60 {
  margin-top: 60px !important;
}

.u-pt-60 {
  padding-top: 60px !important;
}

.u-mb-60 {
  margin-bottom: 60px !important;
}

.u-pb-60 {
  padding-bottom: 60px !important;
}

.u-ml-60 {
  margin-left: 60px !important;
}

.u-pl-60 {
  padding-left: 60px !important;
}

.u-mr-60 {
  margin-right: 60px !important;
}

.u-pr-60 {
  padding-right: 60px !important;
}

.u-mx-60 {
  margin-left: 60px !important;
  margin-right: 60px !important;
}

.u-px-60 {
  padding-left: 60px !important;
  padding-right: 60px !important;
}

.u-my-60 {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
}

.u-py-60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.u-mt-65 {
  margin-top: 65px !important;
}

.u-pt-65 {
  padding-top: 65px !important;
}

.u-mb-65 {
  margin-bottom: 65px !important;
}

.u-pb-65 {
  padding-bottom: 65px !important;
}

.u-ml-65 {
  margin-left: 65px !important;
}

.u-pl-65 {
  padding-left: 65px !important;
}

.u-mr-65 {
  margin-right: 65px !important;
}

.u-pr-65 {
  padding-right: 65px !important;
}

.u-mx-65 {
  margin-left: 65px !important;
  margin-right: 65px !important;
}

.u-px-65 {
  padding-left: 65px !important;
  padding-right: 65px !important;
}

.u-my-65 {
  margin-top: 65px !important;
  margin-bottom: 65px !important;
}

.u-py-65 {
  padding-top: 65px !important;
  padding-bottom: 65px !important;
}

.u-mt-70 {
  margin-top: 70px !important;
}

.u-pt-70 {
  padding-top: 70px !important;
}

.u-mb-70 {
  margin-bottom: 70px !important;
}

.u-pb-70 {
  padding-bottom: 70px !important;
}

.u-ml-70 {
  margin-left: 70px !important;
}

.u-pl-70 {
  padding-left: 70px !important;
}

.u-mr-70 {
  margin-right: 70px !important;
}

.u-pr-70 {
  padding-right: 70px !important;
}

.u-mx-70 {
  margin-left: 70px !important;
  margin-right: 70px !important;
}

.u-px-70 {
  padding-left: 70px !important;
  padding-right: 70px !important;
}

.u-my-70 {
  margin-top: 70px !important;
  margin-bottom: 70px !important;
}

.u-py-70 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.u-mt-75 {
  margin-top: 75px !important;
}

.u-pt-75 {
  padding-top: 75px !important;
}

.u-mb-75 {
  margin-bottom: 75px !important;
}

.u-pb-75 {
  padding-bottom: 75px !important;
}

.u-ml-75 {
  margin-left: 75px !important;
}

.u-pl-75 {
  padding-left: 75px !important;
}

.u-mr-75 {
  margin-right: 75px !important;
}

.u-pr-75 {
  padding-right: 75px !important;
}

.u-mx-75 {
  margin-left: 75px !important;
  margin-right: 75px !important;
}

.u-px-75 {
  padding-left: 75px !important;
  padding-right: 75px !important;
}

.u-my-75 {
  margin-top: 75px !important;
  margin-bottom: 75px !important;
}

.u-py-75 {
  padding-top: 75px !important;
  padding-bottom: 75px !important;
}

.u-mt-80 {
  margin-top: 80px !important;
}

.u-pt-80 {
  padding-top: 80px !important;
}

.u-mb-80 {
  margin-bottom: 80px !important;
}

.u-pb-80 {
  padding-bottom: 80px !important;
}

.u-ml-80 {
  margin-left: 80px !important;
}

.u-pl-80 {
  padding-left: 80px !important;
}

.u-mr-80 {
  margin-right: 80px !important;
}

.u-pr-80 {
  padding-right: 80px !important;
}

.u-mx-80 {
  margin-left: 80px !important;
  margin-right: 80px !important;
}

.u-px-80 {
  padding-left: 80px !important;
  padding-right: 80px !important;
}

.u-my-80 {
  margin-top: 80px !important;
  margin-bottom: 80px !important;
}

.u-py-80 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.u-mt-85 {
  margin-top: 85px !important;
}

.u-pt-85 {
  padding-top: 85px !important;
}

.u-mb-85 {
  margin-bottom: 85px !important;
}

.u-pb-85 {
  padding-bottom: 85px !important;
}

.u-ml-85 {
  margin-left: 85px !important;
}

.u-pl-85 {
  padding-left: 85px !important;
}

.u-mr-85 {
  margin-right: 85px !important;
}

.u-pr-85 {
  padding-right: 85px !important;
}

.u-mx-85 {
  margin-left: 85px !important;
  margin-right: 85px !important;
}

.u-px-85 {
  padding-left: 85px !important;
  padding-right: 85px !important;
}

.u-my-85 {
  margin-top: 85px !important;
  margin-bottom: 85px !important;
}

.u-py-85 {
  padding-top: 85px !important;
  padding-bottom: 85px !important;
}

.u-mt-90 {
  margin-top: 90px !important;
}

.u-pt-90 {
  padding-top: 90px !important;
}

.u-mb-90 {
  margin-bottom: 90px !important;
}

.u-pb-90 {
  padding-bottom: 90px !important;
}

.u-ml-90 {
  margin-left: 90px !important;
}

.u-pl-90 {
  padding-left: 90px !important;
}

.u-mr-90 {
  margin-right: 90px !important;
}

.u-pr-90 {
  padding-right: 90px !important;
}

.u-mx-90 {
  margin-left: 90px !important;
  margin-right: 90px !important;
}

.u-px-90 {
  padding-left: 90px !important;
  padding-right: 90px !important;
}

.u-my-90 {
  margin-top: 90px !important;
  margin-bottom: 90px !important;
}

.u-py-90 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.u-mt-95 {
  margin-top: 95px !important;
}

.u-pt-95 {
  padding-top: 95px !important;
}

.u-mb-95 {
  margin-bottom: 95px !important;
}

.u-pb-95 {
  padding-bottom: 95px !important;
}

.u-ml-95 {
  margin-left: 95px !important;
}

.u-pl-95 {
  padding-left: 95px !important;
}

.u-mr-95 {
  margin-right: 95px !important;
}

.u-pr-95 {
  padding-right: 95px !important;
}

.u-mx-95 {
  margin-left: 95px !important;
  margin-right: 95px !important;
}

.u-px-95 {
  padding-left: 95px !important;
  padding-right: 95px !important;
}

.u-my-95 {
  margin-top: 95px !important;
  margin-bottom: 95px !important;
}

.u-py-95 {
  padding-top: 95px !important;
  padding-bottom: 95px !important;
}

.u-mt-100 {
  margin-top: 100px !important;
}

.u-pt-100 {
  padding-top: 100px !important;
}

.u-mb-100 {
  margin-bottom: 100px !important;
}

.u-pb-100 {
  padding-bottom: 100px !important;
}

.u-ml-100 {
  margin-left: 100px !important;
}

.u-pl-100 {
  padding-left: 100px !important;
}

.u-mr-100 {
  margin-right: 100px !important;
}

.u-pr-100 {
  padding-right: 100px !important;
}

.u-mx-100 {
  margin-left: 100px !important;
  margin-right: 100px !important;
}

.u-px-100 {
  padding-left: 100px !important;
  padding-right: 100px !important;
}

.u-my-100 {
  margin-top: 100px !important;
  margin-bottom: 100px !important;
}

.u-py-100 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.u-mt-105 {
  margin-top: 105px !important;
}

.u-pt-105 {
  padding-top: 105px !important;
}

.u-mb-105 {
  margin-bottom: 105px !important;
}

.u-pb-105 {
  padding-bottom: 105px !important;
}

.u-ml-105 {
  margin-left: 105px !important;
}

.u-pl-105 {
  padding-left: 105px !important;
}

.u-mr-105 {
  margin-right: 105px !important;
}

.u-pr-105 {
  padding-right: 105px !important;
}

.u-mx-105 {
  margin-left: 105px !important;
  margin-right: 105px !important;
}

.u-px-105 {
  padding-left: 105px !important;
  padding-right: 105px !important;
}

.u-my-105 {
  margin-top: 105px !important;
  margin-bottom: 105px !important;
}

.u-py-105 {
  padding-top: 105px !important;
  padding-bottom: 105px !important;
}

.u-mt-110 {
  margin-top: 110px !important;
}

.u-pt-110 {
  padding-top: 110px !important;
}

.u-mb-110 {
  margin-bottom: 110px !important;
}

.u-pb-110 {
  padding-bottom: 110px !important;
}

.u-ml-110 {
  margin-left: 110px !important;
}

.u-pl-110 {
  padding-left: 110px !important;
}

.u-mr-110 {
  margin-right: 110px !important;
}

.u-pr-110 {
  padding-right: 110px !important;
}

.u-mx-110 {
  margin-left: 110px !important;
  margin-right: 110px !important;
}

.u-px-110 {
  padding-left: 110px !important;
  padding-right: 110px !important;
}

.u-my-110 {
  margin-top: 110px !important;
  margin-bottom: 110px !important;
}

.u-py-110 {
  padding-top: 110px !important;
  padding-bottom: 110px !important;
}

.u-mt-115 {
  margin-top: 115px !important;
}

.u-pt-115 {
  padding-top: 115px !important;
}

.u-mb-115 {
  margin-bottom: 115px !important;
}

.u-pb-115 {
  padding-bottom: 115px !important;
}

.u-ml-115 {
  margin-left: 115px !important;
}

.u-pl-115 {
  padding-left: 115px !important;
}

.u-mr-115 {
  margin-right: 115px !important;
}

.u-pr-115 {
  padding-right: 115px !important;
}

.u-mx-115 {
  margin-left: 115px !important;
  margin-right: 115px !important;
}

.u-px-115 {
  padding-left: 115px !important;
  padding-right: 115px !important;
}

.u-my-115 {
  margin-top: 115px !important;
  margin-bottom: 115px !important;
}

.u-py-115 {
  padding-top: 115px !important;
  padding-bottom: 115px !important;
}

.u-mt-120 {
  margin-top: 120px !important;
}

.u-pt-120 {
  padding-top: 120px !important;
}

.u-mb-120 {
  margin-bottom: 120px !important;
}

.u-pb-120 {
  padding-bottom: 120px !important;
}

.u-ml-120 {
  margin-left: 120px !important;
}

.u-pl-120 {
  padding-left: 120px !important;
}

.u-mr-120 {
  margin-right: 120px !important;
}

.u-pr-120 {
  padding-right: 120px !important;
}

.u-mx-120 {
  margin-left: 120px !important;
  margin-right: 120px !important;
}

.u-px-120 {
  padding-left: 120px !important;
  padding-right: 120px !important;
}

.u-my-120 {
  margin-top: 120px !important;
  margin-bottom: 120px !important;
}

.u-py-120 {
  padding-top: 120px !important;
  padding-bottom: 120px !important;
}

.u-mt-125 {
  margin-top: 125px !important;
}

.u-pt-125 {
  padding-top: 125px !important;
}

.u-mb-125 {
  margin-bottom: 125px !important;
}

.u-pb-125 {
  padding-bottom: 125px !important;
}

.u-ml-125 {
  margin-left: 125px !important;
}

.u-pl-125 {
  padding-left: 125px !important;
}

.u-mr-125 {
  margin-right: 125px !important;
}

.u-pr-125 {
  padding-right: 125px !important;
}

.u-mx-125 {
  margin-left: 125px !important;
  margin-right: 125px !important;
}

.u-px-125 {
  padding-left: 125px !important;
  padding-right: 125px !important;
}

.u-my-125 {
  margin-top: 125px !important;
  margin-bottom: 125px !important;
}

.u-py-125 {
  padding-top: 125px !important;
  padding-bottom: 125px !important;
}

.u-mt-130 {
  margin-top: 130px !important;
}

.u-pt-130 {
  padding-top: 130px !important;
}

.u-mb-130 {
  margin-bottom: 130px !important;
}

.u-pb-130 {
  padding-bottom: 130px !important;
}

.u-ml-130 {
  margin-left: 130px !important;
}

.u-pl-130 {
  padding-left: 130px !important;
}

.u-mr-130 {
  margin-right: 130px !important;
}

.u-pr-130 {
  padding-right: 130px !important;
}

.u-mx-130 {
  margin-left: 130px !important;
  margin-right: 130px !important;
}

.u-px-130 {
  padding-left: 130px !important;
  padding-right: 130px !important;
}

.u-my-130 {
  margin-top: 130px !important;
  margin-bottom: 130px !important;
}

.u-py-130 {
  padding-top: 130px !important;
  padding-bottom: 130px !important;
}

.u-mt-135 {
  margin-top: 135px !important;
}

.u-pt-135 {
  padding-top: 135px !important;
}

.u-mb-135 {
  margin-bottom: 135px !important;
}

.u-pb-135 {
  padding-bottom: 135px !important;
}

.u-ml-135 {
  margin-left: 135px !important;
}

.u-pl-135 {
  padding-left: 135px !important;
}

.u-mr-135 {
  margin-right: 135px !important;
}

.u-pr-135 {
  padding-right: 135px !important;
}

.u-mx-135 {
  margin-left: 135px !important;
  margin-right: 135px !important;
}

.u-px-135 {
  padding-left: 135px !important;
  padding-right: 135px !important;
}

.u-my-135 {
  margin-top: 135px !important;
  margin-bottom: 135px !important;
}

.u-py-135 {
  padding-top: 135px !important;
  padding-bottom: 135px !important;
}

.u-mt-140 {
  margin-top: 140px !important;
}

.u-pt-140 {
  padding-top: 140px !important;
}

.u-mb-140 {
  margin-bottom: 140px !important;
}

.u-pb-140 {
  padding-bottom: 140px !important;
}

.u-ml-140 {
  margin-left: 140px !important;
}

.u-pl-140 {
  padding-left: 140px !important;
}

.u-mr-140 {
  margin-right: 140px !important;
}

.u-pr-140 {
  padding-right: 140px !important;
}

.u-mx-140 {
  margin-left: 140px !important;
  margin-right: 140px !important;
}

.u-px-140 {
  padding-left: 140px !important;
  padding-right: 140px !important;
}

.u-my-140 {
  margin-top: 140px !important;
  margin-bottom: 140px !important;
}

.u-py-140 {
  padding-top: 140px !important;
  padding-bottom: 140px !important;
}

.u-mt-145 {
  margin-top: 145px !important;
}

.u-pt-145 {
  padding-top: 145px !important;
}

.u-mb-145 {
  margin-bottom: 145px !important;
}

.u-pb-145 {
  padding-bottom: 145px !important;
}

.u-ml-145 {
  margin-left: 145px !important;
}

.u-pl-145 {
  padding-left: 145px !important;
}

.u-mr-145 {
  margin-right: 145px !important;
}

.u-pr-145 {
  padding-right: 145px !important;
}

.u-mx-145 {
  margin-left: 145px !important;
  margin-right: 145px !important;
}

.u-px-145 {
  padding-left: 145px !important;
  padding-right: 145px !important;
}

.u-my-145 {
  margin-top: 145px !important;
  margin-bottom: 145px !important;
}

.u-py-145 {
  padding-top: 145px !important;
  padding-bottom: 145px !important;
}

.u-mt-150 {
  margin-top: 150px !important;
}

.u-pt-150 {
  padding-top: 150px !important;
}

.u-mb-150 {
  margin-bottom: 150px !important;
}

.u-pb-150 {
  padding-bottom: 150px !important;
}

.u-ml-150 {
  margin-left: 150px !important;
}

.u-pl-150 {
  padding-left: 150px !important;
}

.u-mr-150 {
  margin-right: 150px !important;
}

.u-pr-150 {
  padding-right: 150px !important;
}

.u-mx-150 {
  margin-left: 150px !important;
  margin-right: 150px !important;
}

.u-px-150 {
  padding-left: 150px !important;
  padding-right: 150px !important;
}

.u-my-150 {
  margin-top: 150px !important;
  margin-bottom: 150px !important;
}

.u-py-150 {
  padding-top: 150px !important;
  padding-bottom: 150px !important;
}

.u-mt-155 {
  margin-top: 155px !important;
}

.u-pt-155 {
  padding-top: 155px !important;
}

.u-mb-155 {
  margin-bottom: 155px !important;
}

.u-pb-155 {
  padding-bottom: 155px !important;
}

.u-ml-155 {
  margin-left: 155px !important;
}

.u-pl-155 {
  padding-left: 155px !important;
}

.u-mr-155 {
  margin-right: 155px !important;
}

.u-pr-155 {
  padding-right: 155px !important;
}

.u-mx-155 {
  margin-left: 155px !important;
  margin-right: 155px !important;
}

.u-px-155 {
  padding-left: 155px !important;
  padding-right: 155px !important;
}

.u-my-155 {
  margin-top: 155px !important;
  margin-bottom: 155px !important;
}

.u-py-155 {
  padding-top: 155px !important;
  padding-bottom: 155px !important;
}

.u-mt-160 {
  margin-top: 160px !important;
}

.u-pt-160 {
  padding-top: 160px !important;
}

.u-mb-160 {
  margin-bottom: 160px !important;
}

.u-pb-160 {
  padding-bottom: 160px !important;
}

.u-ml-160 {
  margin-left: 160px !important;
}

.u-pl-160 {
  padding-left: 160px !important;
}

.u-mr-160 {
  margin-right: 160px !important;
}

.u-pr-160 {
  padding-right: 160px !important;
}

.u-mx-160 {
  margin-left: 160px !important;
  margin-right: 160px !important;
}

.u-px-160 {
  padding-left: 160px !important;
  padding-right: 160px !important;
}

.u-my-160 {
  margin-top: 160px !important;
  margin-bottom: 160px !important;
}

.u-py-160 {
  padding-top: 160px !important;
  padding-bottom: 160px !important;
}

.u-mt-165 {
  margin-top: 165px !important;
}

.u-pt-165 {
  padding-top: 165px !important;
}

.u-mb-165 {
  margin-bottom: 165px !important;
}

.u-pb-165 {
  padding-bottom: 165px !important;
}

.u-ml-165 {
  margin-left: 165px !important;
}

.u-pl-165 {
  padding-left: 165px !important;
}

.u-mr-165 {
  margin-right: 165px !important;
}

.u-pr-165 {
  padding-right: 165px !important;
}

.u-mx-165 {
  margin-left: 165px !important;
  margin-right: 165px !important;
}

.u-px-165 {
  padding-left: 165px !important;
  padding-right: 165px !important;
}

.u-my-165 {
  margin-top: 165px !important;
  margin-bottom: 165px !important;
}

.u-py-165 {
  padding-top: 165px !important;
  padding-bottom: 165px !important;
}

.u-mt-170 {
  margin-top: 170px !important;
}

.u-pt-170 {
  padding-top: 170px !important;
}

.u-mb-170 {
  margin-bottom: 170px !important;
}

.u-pb-170 {
  padding-bottom: 170px !important;
}

.u-ml-170 {
  margin-left: 170px !important;
}

.u-pl-170 {
  padding-left: 170px !important;
}

.u-mr-170 {
  margin-right: 170px !important;
}

.u-pr-170 {
  padding-right: 170px !important;
}

.u-mx-170 {
  margin-left: 170px !important;
  margin-right: 170px !important;
}

.u-px-170 {
  padding-left: 170px !important;
  padding-right: 170px !important;
}

.u-my-170 {
  margin-top: 170px !important;
  margin-bottom: 170px !important;
}

.u-py-170 {
  padding-top: 170px !important;
  padding-bottom: 170px !important;
}

.u-mt-175 {
  margin-top: 175px !important;
}

.u-pt-175 {
  padding-top: 175px !important;
}

.u-mb-175 {
  margin-bottom: 175px !important;
}

.u-pb-175 {
  padding-bottom: 175px !important;
}

.u-ml-175 {
  margin-left: 175px !important;
}

.u-pl-175 {
  padding-left: 175px !important;
}

.u-mr-175 {
  margin-right: 175px !important;
}

.u-pr-175 {
  padding-right: 175px !important;
}

.u-mx-175 {
  margin-left: 175px !important;
  margin-right: 175px !important;
}

.u-px-175 {
  padding-left: 175px !important;
  padding-right: 175px !important;
}

.u-my-175 {
  margin-top: 175px !important;
  margin-bottom: 175px !important;
}

.u-py-175 {
  padding-top: 175px !important;
  padding-bottom: 175px !important;
}

.u-mt-180 {
  margin-top: 180px !important;
}

.u-pt-180 {
  padding-top: 180px !important;
}

.u-mb-180 {
  margin-bottom: 180px !important;
}

.u-pb-180 {
  padding-bottom: 180px !important;
}

.u-ml-180 {
  margin-left: 180px !important;
}

.u-pl-180 {
  padding-left: 180px !important;
}

.u-mr-180 {
  margin-right: 180px !important;
}

.u-pr-180 {
  padding-right: 180px !important;
}

.u-mx-180 {
  margin-left: 180px !important;
  margin-right: 180px !important;
}

.u-px-180 {
  padding-left: 180px !important;
  padding-right: 180px !important;
}

.u-my-180 {
  margin-top: 180px !important;
  margin-bottom: 180px !important;
}

.u-py-180 {
  padding-top: 180px !important;
  padding-bottom: 180px !important;
}

.u-mt-185 {
  margin-top: 185px !important;
}

.u-pt-185 {
  padding-top: 185px !important;
}

.u-mb-185 {
  margin-bottom: 185px !important;
}

.u-pb-185 {
  padding-bottom: 185px !important;
}

.u-ml-185 {
  margin-left: 185px !important;
}

.u-pl-185 {
  padding-left: 185px !important;
}

.u-mr-185 {
  margin-right: 185px !important;
}

.u-pr-185 {
  padding-right: 185px !important;
}

.u-mx-185 {
  margin-left: 185px !important;
  margin-right: 185px !important;
}

.u-px-185 {
  padding-left: 185px !important;
  padding-right: 185px !important;
}

.u-my-185 {
  margin-top: 185px !important;
  margin-bottom: 185px !important;
}

.u-py-185 {
  padding-top: 185px !important;
  padding-bottom: 185px !important;
}

.u-mt-190 {
  margin-top: 190px !important;
}

.u-pt-190 {
  padding-top: 190px !important;
}

.u-mb-190 {
  margin-bottom: 190px !important;
}

.u-pb-190 {
  padding-bottom: 190px !important;
}

.u-ml-190 {
  margin-left: 190px !important;
}

.u-pl-190 {
  padding-left: 190px !important;
}

.u-mr-190 {
  margin-right: 190px !important;
}

.u-pr-190 {
  padding-right: 190px !important;
}

.u-mx-190 {
  margin-left: 190px !important;
  margin-right: 190px !important;
}

.u-px-190 {
  padding-left: 190px !important;
  padding-right: 190px !important;
}

.u-my-190 {
  margin-top: 190px !important;
  margin-bottom: 190px !important;
}

.u-py-190 {
  padding-top: 190px !important;
  padding-bottom: 190px !important;
}

.u-mt-195 {
  margin-top: 195px !important;
}

.u-pt-195 {
  padding-top: 195px !important;
}

.u-mb-195 {
  margin-bottom: 195px !important;
}

.u-pb-195 {
  padding-bottom: 195px !important;
}

.u-ml-195 {
  margin-left: 195px !important;
}

.u-pl-195 {
  padding-left: 195px !important;
}

.u-mr-195 {
  margin-right: 195px !important;
}

.u-pr-195 {
  padding-right: 195px !important;
}

.u-mx-195 {
  margin-left: 195px !important;
  margin-right: 195px !important;
}

.u-px-195 {
  padding-left: 195px !important;
  padding-right: 195px !important;
}

.u-my-195 {
  margin-top: 195px !important;
  margin-bottom: 195px !important;
}

.u-py-195 {
  padding-top: 195px !important;
  padding-bottom: 195px !important;
}

.u-m-l-auto {
  margin-left: auto;
}

.u-m-r-auto {
  margin-right: auto;
}

.u-divider {
  border-bottom: 1px solid #ccc;
  display: block;
  width: 100%;
  margin: 40px 0;
}

.u-display--none {
  display: none;
}
.u-display--block {
  display: block;
}

.u-size-12 {
  font-size: 12px;
}
.u-size-14 {
  font-size: 14px;
}
.u-size-16 {
  font-size: 16px;
}
.u-size-18 {
  font-size: 18px;
}

.alert-success {
  background-color: #000;
  color: #fff;
  text-align: center;
  font-weight: bold;
  margin-top: 30px;
}

.modal-backdrop {
  z-index: 100;
}

.modal-footer {
  justify-content: center;
  padding-top: 20px;
}

.dropzone .dz-preview .dz-image {
  margin: 0 auto 10px;
}

.dropzone {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.dropzone .dz-preview {
  width: 50%;
  margin: 0;
  padding: 10px;
}

.modal-share {
  padding: 80px 40px 56px;
  text-align: center;
}
.modal-share-title {
  font-size: 24px;
  font-weight: bold;
  color: #151522;
  margin-bottom: 40px;
}
.modal-share-title__success {
  color: #48cb11;
  margin-bottom: 90px;
}
.modal-share-social {
  margin: 0 auto 56px;
}
.modal-share-social__icon + .modal-share-social__icon {
  margin-left: 20px;
}
.modal-share-success {
  font-size: 90px;
  color: #48cb11;
  margin-bottom: 24px;
}

.grecaptcha-badge {
  display: none;
}

@media only screen and (max-width: 1024px) {
  /* REMOVE SECOND CALENDAR */
  .daterangepicker .drp-calendar.right {
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;
  }

  .daterangepicker .drp-calendar.right tbody {
    display: none !important;
  }

  .daterangepicker .drp-calendar.right thead > tr:nth-child(2) {
    display: none !important;
  }

  .daterangepicker .drp-calendar.right th.month {
    display: none !important;
  }

  .daterangepicker .drp-calendar.right .calendar-table {
    background: transparent !important;
  }

  .daterangepicker .daterangepicker.ltr .ranges,
.daterangepicker.ltr .drp-calendar {
    float: none !important;
  }

  .daterangepicker .drp-calendar.right .daterangepicker_input {
    position: absolute !important;
  }
}
@media print {
  *,
*::before,
*::after {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links for images, or javascript/internal links
   */
  a[href^="javascript:"]::after,
a[href^="#"]::after {
    content: "";
  }

  pre,
blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
    /* h5bp.com/t */
  }

  tr,
img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
h3 {
    page-break-after: avoid;
  }

  .c-main-header *,
.c-main-nav,
.c-main-footer,
aside {
    display: none !important;
  }

  .c-logo {
    display: block !important;
  }

  body,
article,
main {
    width: 100%;
    margin: 0;
    padding: 0;
  }
}
.croppie-container {
  width: 100%;
  height: 100%;
}

.croppie-container .cr-image {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: 0 0;
  max-height: none;
  max-width: none;
}

.croppie-container .cr-boundary {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.croppie-container .cr-viewport,
.croppie-container .cr-resizer {
  position: absolute;
  border: 2px solid #fff;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  box-shadow: 0 0 2000px 2000px rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.croppie-container .cr-resizer {
  z-index: 2;
  box-shadow: none;
  pointer-events: none;
}

.croppie-container .cr-resizer-vertical,
.croppie-container .cr-resizer-horisontal {
  position: absolute;
  pointer-events: all;
}

.croppie-container .cr-resizer-vertical::after,
.croppie-container .cr-resizer-horisontal::after {
  display: block;
  position: absolute;
  box-sizing: border-box;
  border: 1px solid black;
  background: #fff;
  width: 10px;
  height: 10px;
  content: "";
}

.croppie-container .cr-resizer-vertical {
  bottom: -5px;
  cursor: row-resize;
  width: 100%;
  height: 10px;
}

.croppie-container .cr-resizer-vertical::after {
  left: 50%;
  margin-left: -5px;
}

.croppie-container .cr-resizer-horisontal {
  right: -5px;
  cursor: col-resize;
  width: 10px;
  height: 100%;
}

.croppie-container .cr-resizer-horisontal::after {
  top: 50%;
  margin-top: -5px;
}

.croppie-container .cr-original-image {
  display: none;
}

.croppie-container .cr-vp-circle {
  border-radius: 50%;
}

.croppie-container .cr-overlay {
  z-index: 1;
  position: absolute;
  cursor: move;
  touch-action: none;
}

.croppie-container .cr-slider-wrap {
  width: 75%;
  margin: 15px auto;
  text-align: center;
  position: relative;
}
.croppie-container .cr-slider-wrap:before, .croppie-container .cr-slider-wrap:after {
  position: absolute;
  top: calc(50% - 5px);
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: bold;
}
.croppie-container .cr-slider-wrap:before {
  content: "-";
  left: -25px;
}
.croppie-container .cr-slider-wrap:after {
  content: "+";
  right: -25px;
}

.croppie-result {
  position: relative;
  overflow: hidden;
}

.croppie-result img {
  position: absolute;
}

.croppie-container .cr-image,
.croppie-container .cr-overlay,
.croppie-container .cr-viewport {
  transform: translateZ(0);
}

/*************************************/
/***** STYLING RANGE INPUT ***********/
/*************************************/
/*http://brennaobrien.com/blog/2014/05/style-input-type-range-in-every-browser.html */
/*************************************/
.cr-slider {
  -webkit-appearance: none;
  /*removes default webkit styles*/
  /*border: 1px solid white; */
  /*fix for FF unable to apply focus style bug */
  width: 300px;
  /*required for proper track sizing in FF*/
  max-width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: transparent;
}

.cr-slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 3px;
  background: rgba(0, 0, 0, 0.5);
  border: 0;
  border-radius: 3px;
}

.cr-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #ddd;
  margin-top: -6px;
}

.cr-slider:focus {
  outline: none;
}

/*
.cr-slider:focus::-webkit-slider-runnable-track {
background: #ccc;
}
*/
.cr-slider::-moz-range-track {
  width: 100%;
  height: 3px;
  background: rgba(0, 0, 0, 0.5);
  border: 0;
  border-radius: 3px;
}

.cr-slider::-moz-range-thumb {
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #ddd;
  margin-top: -6px;
}

/*hide the outline behind the border*/
.cr-slider:-moz-focusring {
  outline: 1px solid white;
  outline-offset: -1px;
}

.cr-slider::-ms-track {
  width: 100%;
  height: 5px;
  background: transparent;
  /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
  border-color: transparent;
  /*leave room for the larger thumb to overflow with a transparent border */
  border-width: 6px 0;
  color: transparent;
  /*remove default tick marks*/
}

.cr-slider::-ms-fill-lower {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.cr-slider::-ms-fill-upper {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.cr-slider::-ms-thumb {
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #ddd;
  margin-top: 1px;
}

.cr-slider:focus::-ms-fill-lower {
  background: rgba(0, 0, 0, 0.5);
}

.cr-slider:focus::-ms-fill-upper {
  background: rgba(0, 0, 0, 0.5);
}

/*******************************************/
/***********************************/
/* Rotation Tools */
/***********************************/
.cr-rotate-controls {
  position: absolute;
  bottom: 5px;
  left: 5px;
  z-index: 1;
}

.cr-rotate-controls button {
  border: 0;
  background: none;
}

.cr-rotate-controls i:before {
  display: inline-block;
  font-style: normal;
  font-weight: 900;
  font-size: 22px;
}

.cr-rotate-l i:before {
  content: "↺";
}

.cr-rotate-r i:before {
  content: "↻";
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 5px;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: flex;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  outline: none;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
  margin: 0 auto;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
@media (max-width: 768px) {
  .slick-slide {
    margin-right: 20px;
  }
}

.slick-arrow.slick-hidden {
  display: none;
}

.o-slick-arrow {
  position: absolute;
  z-index: 1;
  display: inline-block;
  width: 70px;
  height: 100%;
  cursor: pointer;
  text-align: center;
  background-color: rgba(156, 99, 255, 0.4);
  top: 0;
}
.o-slick-arrow--secondary {
  background-color: transparent;
  height: 40px;
  width: 40px;
  top: 120px;
}
@media (max-width: 1023px) {
  .o-slick-arrow {
    display: none;
  }
}
.o-slick-arrow:after {
  content: "";
  background-image: url("../img/icons/arrow.svg");
  background-repeat: no-repeat;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.u-bg-orange .o-slick-arrow:after {
  background-image: url("../img/icons/arrow-blue.svg");
}
.o-slick-arrow--prev {
  left: 0;
}
.o-slick-arrow--prev.o-slick-arrow--secondary {
  left: -15px;
}
.o-slick-arrow--next {
  right: 0;
}
.o-slick-arrow--next:after {
  transform: rotateY(180deg) translate(-50%, -50%);
  transform-origin: left;
}
.o-slick-arrow--next.o-slick-arrow--secondary {
  right: -15px;
}
.o-slick-arrow--onthefly {
  background-color: #34b687;
  margin: 0;
}
.o-slick-arrow--onthefly.o-slick-arrow--prev {
  left: 0;
}
.o-slick-arrow--onthefly.o-slick-arrow--next {
  left: initial;
  right: 0;
  transform: translate(50%, -50%);
}

.slick-dots {
  list-style: none;
  text-align: center;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.slick-dots li {
  display: inline-block;
  height: 20px;
  width: 20px;
  background-color: #dcddde;
  border: 2px solid #fff;
  margin: 0 3px;
  border-radius: 50px;
}
.slick-dots li button {
  display: none;
}
.slick-dots li.slick-active {
  background-color: #f1f2f2;
}

.dz-remove {
  color: #9c63ff;
}
.dz-remove:hover {
  color: #7c30ff;
}

.dropzone.dz-started .dz-message {
  display: block !important;
}

.select2-container--classic .select2-selection--single {
  background-color: #fff !important;
  border: 1px solid #ccc !important;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  line-height: 36px !important;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  height: 36px !important;
}

.select2-container .select2-selection--single {
  height: 38px !important;
}

.select2-hidden-accessible + .select2-container {
  width: 100% !important;
}

.select2-container-multi {
  min-height: 40px !important;
}

.select2-search-choice {
  padding: 10px 10px 10px 22px !important;
  font-family: "Roboto", sans-serif !important;
  line-height: 1.3 !important;
}

.select2-container-multi .select2-search-choice-close {
  top: 12px !important;
  left: 5px !important;
}

.select2-container-multi .select2-choices {
  min-height: 100%;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}

.select2-container .select2-choice {
  height: 40px !important;
  padding: 7px 0 0 15px !important;
  color: #666 !important;
}

.select2-container .select2-choice .select2-arrow {
  padding-top: 5px;
}

.select2-container-multi .select2-choices .select2-search-field input {
  color: #666 !important;
  font-size: 14px;
  padding-left: 15px;
}

.select2-results .select2-result-label {
  font-size: 14px;
  font-family: "Roboto", sans-serif !important;
}

.select2-selection--multiple .select2-search__field {
  display: none;
}

.select2-selection__rendered {
  height: 100%;
}

.s-home__banner {
  margin-top: 59px;
  width: 100%;
}

.s-home--challenges {
  background-color: #f6f6f6;
  margin-bottom: 40px;
  padding-top: 40px;
}
.s-home--challenges .container {
  padding: 20px;
  background-color: #f6f6f6;
}
.s-home--challenges-title {
  text-align: center;
  font-size: 25px;
  font-family: "Roboto", sans-serif;
  margin: 20px 0;
  font-weight: bold;
  color: #9c63ff;
}
.s-home--challenges-support {
  text-align: center;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  margin: 20px auto 40px;
  color: #333;
  width: 100%;
  max-width: 600px;
}
.s-home--challenges-subtitle {
  text-align: center;
  font-size: 22px;
  font-family: "Roboto", sans-serif;
  margin: 20px 0;
  color: #9c63ff;
}
.s-home--challenges .card-deck {
  margin-bottom: 40px;
}

.s-home--title {
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.s-home--title h1 {
  text-align: center;
  font-size: 40px;
  max-width: 376px;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: #9c63ff;
  margin-bottom: 0;
}
.s-home--title p {
  text-align: left;
  font-size: 17px;
  font-family: "Roboto", sans-serif;
  color: #333;
  width: 100%;
  max-width: 552px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .s-home--title {
    flex-direction: column;
  }
  .s-home--title h1 {
    margin-bottom: 30px;
  }
}
.s-home--description {
  margin-bottom: 30px;
}
.s-home--description h1 {
  line-height: 120% !important;
}
.s-home--description p {
  line-height: 120% !important;
  margin: 0 !important;
}

.s-home--company {
  width: 100%;
  margin: 30px 0 60px;
}
.s-home--company .container {
  display: flex;
}
@media (max-width: 780px) {
  .s-home--company .container {
    flex-direction: column;
    width: 90%;
  }
}
.s-home--company .container .card {
  flex: 1;
  border: none;
}
.s-home--company .container .card + .card {
  margin-left: 20px;
}
@media (max-width: 780px) {
  .s-home--company .container .card + .card {
    margin-left: 0;
    margin-top: 20px;
  }
}

.s-home--blog {
  padding-bottom: 50px;
}
.s-home--blog hr {
  margin-bottom: 50px;
}
.s-home--blog .o-col {
  max-width: 33%;
}
.s-home--blog .o-col + .o-col {
  padding-left: 20px;
}
.s-home--blog p {
  margin-bottom: 10px;
  font-size: 12px;
}
.s-home--blog h2 {
  font-family: "Roboto", sans-serif;
  font-size: 25px;
  margin-bottom: 20px;
}
.s-home--blog h3 {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}
.s-home--blog-wrapper {
  width: 120px;
  height: 120px;
  overflow: hidden;
  margin-right: 10px;
  position: relative;
}
.s-home--blog-text {
  flex: 1;
  max-width: 300px;
}
.s-home--blog-image {
  width: 100%;
  height: 100%;
  position: absolute;
}
@media (max-width: 990px) {
  .s-home--blog .o-row {
    flex-direction: column;
  }
  .s-home--blog .o-col {
    max-width: 100%;
    margin: 20px 0;
  }
  .s-home--blog .o-col + .o-col {
    padding-left: 0;
  }
}

.s-profile {
  min-height: 80vh;
}
.s-profile .container {
  margin-top: 80px;
  padding-bottom: 40px;
}
.s-profile--cover {
  text-align: center;
  margin: 10px auto;
}
.s-profile--cover span {
  font-size: 80px;
  color: #9c63ff;
  margin-bottom: 10px;
}
.s-profile--cover span:hover {
  cursor: pointer;
}
.s-profile--thumb {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
}

.s-blog {
  min-height: 70vh;
}
.s-blog .container {
  margin-top: 80px;
}
.s-blog .container a {
  color: #9c63ff !important;
  cursor: pointer;
  text-decoration: underline;
  font-size: 14px !important;
  font-family: "Roboto", sans-serif !important;
}
.s-blog--item {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.s-blog--item-wrapper {
  width: 200px;
  height: 200px;
  position: relative;
  overflow: hidden;
  margin-right: 20px;
  box-sizing: border-box;
  display: inline-table;
  flex: 0 0 auto;
}
.s-blog--item-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.s-blog--item-date {
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  color: #4d4d4f;
  margin-bottom: 20px;
}
.s-blog--item-title {
  font-size: 24px;
  font-family: "Roboto", sans-serif;
  color: #9c63ff;
  margin-bottom: 20px;
  width: 100%;
}
.s-blog--item-resume {
  font-size: 14px;
  font-family: "Roboto", sans-serif !important;
  color: #4d4d4f;
  width: 100%;
}
.s-blog--item a {
  color: #9c63ff !important;
  cursor: pointer;
  text-decoration: underline;
  font-size: 16px !important;
  font-family: "Roboto", sans-serif !important;
  text-decoration: none !important;
}
@media (max-width: 768px) {
  .s-blog--item {
    flex-direction: column;
  }
  .s-blog--item-wrapper {
    width: 100%;
  }
  .s-blog--item-date {
    padding-left: 0;
    margin-top: 5px;
  }
  .s-blog--item-title {
    padding-left: 0;
  }
  .s-blog--item-resume {
    padding-left: 0;
  }
}
.s-blog ul {
  list-style: disc;
  margin-left: 20px;
}
.s-blog--fullcover {
  width: 100%;
  max-width: 500px;
}
.s-blog p,
.s-blog span {
  font-family: "Roboto", sans-serif !important;
  font-size: 14px !important;
  line-height: 24px !important;
}
.s-blog .fa {
  font-family: "Font Awesome 5 Free" !important;
}
@media (max-width: 900px) {
  .s-blog img {
    width: 100%;
  }
  .s-blog td {
    display: block;
    width: 100% !important;
  }
}

.s-faq {
  padding-bottom: 200px;
}
@media (max-width: 768px) {
  .s-faq {
    padding-bottom: 300px;
  }
}
.s-faq .o-input--faq {
  width: 100%;
  border: none;
  height: 40px;
  padding-left: 20px;
  margin-bottom: 20px;
}

.s-challenges--ods-title {
  font-weight: 500;
  display: block;
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  height: 50px;
  align-items: center;
  display: flex;
}
.s-challenges--ods-description {
  display: block;
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  color: #4d4d4f;
  margin-bottom: 5px;
}
.s-challenges--ods-flag {
  width: 50px;
  margin-right: 10px;
  float: left;
}
.s-challenges--show .container h2 {
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif !important;
}
.s-challenges--show .o-btn {
  width: 100%;
  max-width: 350px;
  margin: 20px auto;
  font-family: "Roboto", sans-serif !important;
}
.s-challenges--show .o-btn--subscribes {
  max-width: 80px;
  text-align: center;
}
.s-challenges--show .card-body {
  padding: 2.5rem;
  font-family: "Roboto", sans-serif !important;
}
.s-challenges--show span,
.s-challenges--show p {
  font-family: "Roboto", sans-serif !important;
  font-size: 14px !important;
}
.s-challenges--show .fa {
  font-family: "Font Awesome 5 Free" !important;
}
.s-challenges--index {
  background-color: #f0f0f0;
  min-height: 70vh;
  padding-bottom: 40px;
  font-family: "Roboto", sans-serif;
}
.s-challenges--index--sidebar {
  box-sizing: border-box;
  background-color: #9c63ff;
  width: 100%;
  max-width: 340px;
  max-height: 540px;
  margin-right: 20px;
  display: block;
  padding: 20px;
  border-radius: 5px;
}
.s-challenges--index--sidebar-title {
  font-size: 22px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 30px;
}
.s-challenges--index--sidebar-form label {
  color: #fff;
}
.s-challenges--index--sidebar-form select {
  width: 100%;
}
.s-challenges--index-content {
  margin-top: 40px;
  display: flex;
}
@media (max-width: 760px) {
  .s-challenges--index-content {
    flex-direction: column;
  }
  .s-challenges--index--sidebar {
    margin-right: 0;
    margin-bottom: 30px;
    max-width: none;
  }
}
.s-challenges--index--o-cards {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  margin-bottom: 50px;
  font-family: "Roboto", sans-serif !important;
}
@media (max-width: 1460px) {
  .s-challenges--index--o-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1200px) {
  .s-challenges--index--o-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1000px) {
  .s-challenges--index--o-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}
.s-challenges--index--o-cards .o-card--image {
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  left: 50%;
  width: 100%;
}

.s-about {
  position: relative;
  min-height: 70vh;
  width: 100%;
  padding-bottom: 40px;
}
.s-about--bg-top {
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  z-index: -1;
}
.s-about--bg-left {
  position: absolute;
  left: 0;
  bottom: 60px;
  width: 30%;
  z-index: -1;
}
.s-about--title {
  font-size: 48px;
  font-family: "Roboto", sans-serif;
  margin: 100px 0 20px;
  font-weight: normal;
  color: #9c63ff;
}
.s-about--subtitle {
  font-size: 34px;
  font-family: "Roboto", sans-serif;
  margin: 40px 0;
  font-weight: normal;
  color: #9c63ff;
}
.s-about--description {
  font-size: 16px;
  color: #151522;
  font-family: "Roboto", sans-serif;
  width: 100%;
  max-width: 50%;
}
.s-about--strategy {
  text-align: center;
}
.s-about--strategy-image {
  width: 100%;
  max-width: 600px;
  margin: 40px 0;
}
.s-about--manifest {
  margin-left: 50%;
  width: 100%;
}
@media (max-width: 700px) {
  .s-about {
    padding-bottom: 250px;
  }
  .s-about--bg-top {
    width: 60%;
  }
  .s-about--bg-left {
    width: 50%;
  }
  .s-about--title {
    font-size: 24px;
  }
  .s-about--subtitle {
    font-size: 20px;
  }
  .s-about--manifest {
    margin-left: 0;
    width: 100%;
  }
  .s-about--description {
    font-size: 14px;
    width: 100%;
    max-width: 100%;
  }
}

.s-pages {
  background-color: #f6f6f6;
  min-height: 70vh;
  padding-bottom: 40px;
}
.s-pages .container {
  margin-top: 40px;
  background-color: #fff;
  padding: 20px;
  width: 100%;
  max-width: 700px;
}
.s-pages .container p,
.s-pages .container li,
.s-pages .container span {
  font-family: "Roboto", sans-serif !important;
  text-decoration-line: none !important;
}
.s-pages .container table {
  width: 100% !important;
}
.s-pages .container a {
  color: #9c63ff !important;
  text-decoration: none !important;
  padding-bottom: 2px;
  border-bottom: 1px solid #9c63ff;
}
.s-pages .container a:hover, .s-pages .container a:visited {
  color: #7c30ff;
  text-decoration: none;
}
.s-pages .container ul {
  margin-left: 30px;
  margin-top: 30px;
}

.s-habilities {
  background-color: #fff;
  min-height: 70vh;
  margin-bottom: 40px;
}
.s-habilities--sidebar {
  box-sizing: border-box;
  max-width: 320px;
  margin-right: 20px;
  display: block;
}
.s-habilities--sidebar-title {
  font-size: 24px;
  color: #9c63ff;
  font-weight: bold;
  margin-bottom: 30px;
}
.s-habilities--sidebar-form {
  padding: 20px;
  border: 1px solid #CCCCCC;
}
.s-habilities--sidebar-form select {
  width: 100%;
}
.s-habilities--sidebar .o-label {
  display: block;
}
.s-habilities .o-cards {
  width: 100%;
  display: grid;
  -moz-column-gap: 20px;
       column-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  background-color: #F1F3F6;
  padding: 20px;
}
@media (max-width: 560px) {
  .s-habilities .o-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}
.s-habilities--card {
  background-color: #FFF;
  margin-bottom: 20px;
}
.s-habilities--card-closed {
  height: 250px;
}
.s-habilities--card-header {
  display: flex;
  padding: 10px;
  margin-bottom: 20px;
  border-bottom: 0.5px solid #F1F3F6;
}
@media (max-width: 990px) {
  .s-habilities--card-header {
    flex-direction: column;
  }
}
.s-habilities--card-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  margin-right: 10px;
}
.s-habilities .container {
  margin-top: 40px;
  padding: 20px;
  display: flex;
}
.s-habilities-title {
  text-align: center;
  font-size: 25px;
  font-family: "Roboto", sans-serif;
  margin: 20px 0;
  font-weight: bold;
  color: #9c63ff;
}
.s-habilities-support {
  text-align: center;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  margin: 20px auto 40px;
  color: #333;
  width: 100%;
  max-width: 600px;
}
.s-habilities-subtitle {
  text-align: center;
  font-size: 22px;
  font-family: "Roboto", sans-serif;
  margin: 20px 0;
  color: #9c63ff;
}
.s-habilities--name {
  font-size: 16px;
  font-weight: bold;
  color: #9c63ff;
  font-family: "Roboto", sans-serif;
  margin-bottom: 5px;
}
.s-habilities--city {
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  margin-bottom: 5px;
}
.s-habilities--unity {
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  margin-bottom: 5px;
}
.s-habilities--email {
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  margin-bottom: 5px;
}
.s-habilities--list {
  padding: 10px;
}
.s-habilities--list-closed {
  max-height: 100px;
  overflow: hidden;
  position: relative;
}
.s-habilities--list__open {
  max-height: none;
}
.s-habilities--list-item {
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  margin-bottom: 5px;
  margin-left: 10px;
}
.s-habilities--list-item-category {
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  margin-bottom: 5px;
  font-weight: bold;
}
.s-habilities--see-more {
  position: absolute;
  bottom: -30px;
  background-color: #FFF;
  z-index: 3;
  width: 100%;
  padding: 10px 0;
  font-size: 12px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}
.s-habilities--see-more:hover {
  cursor: pointer;
}
.s-habilities .card-deck {
  margin-bottom: 40px;
}
.s-habilities .o-filter--buttons {
  display: flex;
}
.s-habilities .o-filter--buttons .o-btn {
  padding: 15px;
}
@media (max-width: 600px) {
  .s-habilities .container {
    flex-direction: column;
  }
  .s-habilities--sidebar {
    margin-right: 0;
    margin-bottom: 30px;
    max-width: none;
  }
}

.s-materials {
  background-color: #f0f0f0;
  min-height: 70vh;
  padding-bottom: 40px;
  font-family: "Roboto", sans-serif;
}
.s-materials--sidebar-category {
  margin: 20px 0 5px;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
}
.s-materials--sidebar-file {
  color: #fff;
  font-size: 14px;
  margin: 0 0 0 10px;
  cursor: pointer;
}
.s-materials--sidebar-file + .s-materials--sidebar-category {
  margin-top: 10px;
}
.s-materials--main h2 {
  font-size: 24px;
  color: #9c63ff;
  margin-bottom: 5px;
}
.s-materials--title {
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  margin: 0;
  font-weight: bold;
  color: #9c63ff;
}
.s-materials--support {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
  color: #333;
}
.s-materials-subtitle {
  text-align: center;
  font-size: 22px;
  font-family: "Roboto", sans-serif;
  margin: 20px 0;
  color: #9c63ff;
}

.s-projects {
  background-color: #F0F0F0;
  min-height: 70vh;
  padding-bottom: 40px;
  font-family: "Roboto", sans-serif;
}
.s-projects--main {
  width: 100%;
}
.s-projects--main h2 {
  font-size: 24px;
  color: #9c63ff;
  margin-bottom: 20px;
}
.s-projects .o-cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  background-color: #F1F3F6;
}
.s-projects--card {
  background-color: #FFF;
  margin-bottom: 20px;
  min-height: 300px;
  padding: 20px;
  display: flex;
}
@media (max-width: 768px) {
  .s-projects--card {
    flex-direction: column;
  }
}
.s-projects--cover {
  flex: 1 50%;
  width: 100%;
}
.s-projects--info {
  flex: 1 50%;
  padding: 0 0 0 20px;
}
@media (max-width: 768px) {
  .s-projects--info {
    padding-left: 0;
  }
}
.s-projects--title {
  font-size: 24px;
  font-family: "Roboto", sans-serif;
  margin: 0;
  font-weight: bold;
  color: #9c63ff;
}
.s-projects--support {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  color: #333;
  width: 100%;
}
.s-projects-subtitle {
  text-align: center;
  font-size: 22px;
  font-family: "Roboto", sans-serif;
  margin: 20px 0;
  color: #9c63ff;
}
.s-projects--material-title {
  font-size: 14px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  margin: 40px 0 20px;
}
.s-projects--buttons {
  display: flex;
  align-items: center;
}
.s-projects--buttons .o-btn + .o-btn {
  margin-left: 10px;
}
@media (max-width: 768px) {
  .s-projects--buttons {
    flex-direction: column;
  }
  .s-projects--buttons .o-btn + .o-btn {
    margin-left: 0;
  }
}

.s-share--buttons {
  display: flex;
  align-items: center;
}
.s-share--buttons a {
  font-size: 20px;
}
.s-share--buttons a + a {
  margin-left: 20px;
}
