@charset "UTF-8";
:root {
  --container-width: 100%;
  --col-width: calc((100% - 330px) / 12);
  --header-height: 96px;
}
@media (min-width: 576px) {
  :root {
    --container-width: 540px;
    --col-width: calc((var(--container-width) - 330px) / 12);
  }
}
@media (min-width: 768px) {
  :root {
    --container-width: 720px;
    --col-width: calc((var(--container-width) - 330px) / 12);
  }
}
@media (min-width: 992px) {
  :root {
    --container-width: 960px;
    --col-width: calc((var(--container-width) - 330px) / 12);
  }
}
@media (min-width: 1200px) {
  :root {
    --header-height: 96px;
    --container-width: 1180px;
    --col-width: calc((var(--container-width) - 330px) / 12);
  }
}
@media (min-width: 1700px) {
  :root {
    --header-height: 106px;
    --container-width: 1650px;
    --col-width: calc((var(--container-width) - 330px) / 12);
  }
}

: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;
  --breakpoint-xxl: 1700px;
  --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: "aglet-slab", sans-serif;
  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;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  text-decoration-skip-ink: none;
}

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

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

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

dt {
  font-weight: 700;
}

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

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #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: 80%;
  font-weight: 400;
}

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

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

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

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

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

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

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

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

.img-thumbnail {
  padding: 0.25rem;
  background-color: #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-xxl,
.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;
  }
}
@media (min-width: 1700px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1644px;
  }
}
.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-xxl,
.col-xxl-auto, .col-xxl-12, .col-xxl-11, .col-xxl-10, .col-xxl-9, .col-xxl-8, .col-xxl-7, .col-xxl-6, .col-xxl-5, .col-xxl-4, .col-xxl-3, .col-xxl-2, .col-xxl-1, .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.3333333333%;
  max-width: 8.3333333333%;
}

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

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

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

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

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

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

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

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

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

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

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

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 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.3333333333%;
    max-width: 8.3333333333%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-sm-0 {
    margin-left: 0;
  }

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

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

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

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

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

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

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

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

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

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

  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 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.3333333333%;
    max-width: 8.3333333333%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    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.3333333333%;
    max-width: 8.3333333333%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-lg-0 {
    margin-left: 0;
  }

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

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

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

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

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

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

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

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

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

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

  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@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.3333333333%;
    max-width: 8.3333333333%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1700px) {
  .col-xxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .order-xxl-12 {
    order: 12;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

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

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

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

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

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

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

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

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

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

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

  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

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

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

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

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

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

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #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;
  }
}
@media (max-width: 1699.98px) {
  .table-responsive-xxl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xxl > .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:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}
.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::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 {
  appearance: none;
}

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: 80%;
  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);
  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 textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #28a745;
  padding-right: calc(0.75em + 2.3125rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") 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: 80%;
  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);
  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 textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #dc3545;
  padding-right: calc(0.75em + 2.3125rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") 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;
  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;
  }
}

.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;
  }
}
@media (min-width: 1700px) {
  .dropdown-menu-xxl-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xxl-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;
}

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

.nav-pills .nav-link {
  border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #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,
.navbar .container-xxl {
  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,
.navbar-expand-sm > .container-xxl {
    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,
.navbar-expand-sm > .container-xxl {
    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,
.navbar-expand-md > .container-xxl {
    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,
.navbar-expand-md > .container-xxl {
    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,
.navbar-expand-lg > .container-xxl {
    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,
.navbar-expand-lg > .container-xxl {
    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,
.navbar-expand-xl > .container-xxl {
    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,
.navbar-expand-xl > .container-xxl {
    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;
  }
}
@media (max-width: 1699.98px) {
  .navbar-expand-xxl > .container,
.navbar-expand-xxl > .container-fluid,
.navbar-expand-xxl > .container-sm,
.navbar-expand-xxl > .container-md,
.navbar-expand-xxl > .container-lg,
.navbar-expand-xxl > .container-xl,
.navbar-expand-xxl > .container-xxl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1700px) {
  .navbar-expand-xxl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xxl > .container,
.navbar-expand-xxl > .container-fluid,
.navbar-expand-xxl > .container-sm,
.navbar-expand-xxl > .container-md,
.navbar-expand-xxl > .container-lg,
.navbar-expand-xxl > .container-xl,
.navbar-expand-xxl > .container-xxl {
    flex-wrap: nowrap;
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .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,
.navbar-expand > .container-xxl {
  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,
.navbar-expand > .container-xxl {
  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;
}

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

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

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

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

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

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #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: 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;
  }
}
.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 (min-width: 1700px) {
  .d-xxl-none {
    display: none !important;
  }

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

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

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

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

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

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

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

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }

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

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

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

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

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

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

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

  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .align-self-xxl-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;
  }
}
@media (min-width: 1700px) {
  .float-xxl-left {
    float: left !important;
  }

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

  .float-xxl-none {
    float: none !important;
  }
}
.user-select-all {
  user-select: all !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

.sr-only {
  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-25 {
  margin: 0.75rem !important;
}

.mt-25,
.my-25 {
  margin-top: 0.75rem !important;
}

.mr-25,
.mx-25 {
  margin-right: 0.75rem !important;
}

.mb-25,
.my-25 {
  margin-bottom: 0.75rem !important;
}

.ml-25,
.mx-25 {
  margin-left: 0.75rem !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-35 {
  margin: 1.25rem !important;
}

.mt-35,
.my-35 {
  margin-top: 1.25rem !important;
}

.mr-35,
.mx-35 {
  margin-right: 1.25rem !important;
}

.mb-35,
.my-35 {
  margin-bottom: 1.25rem !important;
}

.ml-35,
.mx-35 {
  margin-left: 1.25rem !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-45 {
  margin: 1.8rem !important;
}

.mt-45,
.my-45 {
  margin-top: 1.8rem !important;
}

.mr-45,
.mx-45 {
  margin-right: 1.8rem !important;
}

.mb-45,
.my-45 {
  margin-bottom: 1.8rem !important;
}

.ml-45,
.mx-45 {
  margin-left: 1.8rem !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;
}

.m-55 {
  margin: 2.5rem !important;
}

.mt-55,
.my-55 {
  margin-top: 2.5rem !important;
}

.mr-55,
.mx-55 {
  margin-right: 2.5rem !important;
}

.mb-55,
.my-55 {
  margin-bottom: 2.5rem !important;
}

.ml-55,
.mx-55 {
  margin-left: 2.5rem !important;
}

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

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

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

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

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

.m-7 {
  margin: 4.5rem !important;
}

.mt-7,
.my-7 {
  margin-top: 4.5rem !important;
}

.mr-7,
.mx-7 {
  margin-right: 4.5rem !important;
}

.mb-7,
.my-7 {
  margin-bottom: 4.5rem !important;
}

.ml-7,
.mx-7 {
  margin-left: 4.5rem !important;
}

.m-8 {
  margin: 6rem !important;
}

.mt-8,
.my-8 {
  margin-top: 6rem !important;
}

.mr-8,
.mx-8 {
  margin-right: 6rem !important;
}

.mb-8,
.my-8 {
  margin-bottom: 6rem !important;
}

.ml-8,
.mx-8 {
  margin-left: 6rem !important;
}

.m-9 {
  margin: 7.5rem !important;
}

.mt-9,
.my-9 {
  margin-top: 7.5rem !important;
}

.mr-9,
.mx-9 {
  margin-right: 7.5rem !important;
}

.mb-9,
.my-9 {
  margin-bottom: 7.5rem !important;
}

.ml-9,
.mx-9 {
  margin-left: 7.5rem !important;
}

.m-10 {
  margin: 9rem !important;
}

.mt-10,
.my-10 {
  margin-top: 9rem !important;
}

.mr-10,
.mx-10 {
  margin-right: 9rem !important;
}

.mb-10,
.my-10 {
  margin-bottom: 9rem !important;
}

.ml-10,
.mx-10 {
  margin-left: 9rem !important;
}

.m-11 {
  margin: 10.5rem !important;
}

.mt-11,
.my-11 {
  margin-top: 10.5rem !important;
}

.mr-11,
.mx-11 {
  margin-right: 10.5rem !important;
}

.mb-11,
.my-11 {
  margin-bottom: 10.5rem !important;
}

.ml-11,
.mx-11 {
  margin-left: 10.5rem !important;
}

.m-12 {
  margin: 12rem !important;
}

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

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

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

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

.m-13 {
  margin: 13.5rem !important;
}

.mt-13,
.my-13 {
  margin-top: 13.5rem !important;
}

.mr-13,
.mx-13 {
  margin-right: 13.5rem !important;
}

.mb-13,
.my-13 {
  margin-bottom: 13.5rem !important;
}

.ml-13,
.mx-13 {
  margin-left: 13.5rem !important;
}

.m-14 {
  margin: 15rem !important;
}

.mt-14,
.my-14 {
  margin-top: 15rem !important;
}

.mr-14,
.mx-14 {
  margin-right: 15rem !important;
}

.mb-14,
.my-14 {
  margin-bottom: 15rem !important;
}

.ml-14,
.mx-14 {
  margin-left: 15rem !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-25 {
  padding: 0.75rem !important;
}

.pt-25,
.py-25 {
  padding-top: 0.75rem !important;
}

.pr-25,
.px-25 {
  padding-right: 0.75rem !important;
}

.pb-25,
.py-25 {
  padding-bottom: 0.75rem !important;
}

.pl-25,
.px-25 {
  padding-left: 0.75rem !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-35 {
  padding: 1.25rem !important;
}

.pt-35,
.py-35 {
  padding-top: 1.25rem !important;
}

.pr-35,
.px-35 {
  padding-right: 1.25rem !important;
}

.pb-35,
.py-35 {
  padding-bottom: 1.25rem !important;
}

.pl-35,
.px-35 {
  padding-left: 1.25rem !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-45 {
  padding: 1.8rem !important;
}

.pt-45,
.py-45 {
  padding-top: 1.8rem !important;
}

.pr-45,
.px-45 {
  padding-right: 1.8rem !important;
}

.pb-45,
.py-45 {
  padding-bottom: 1.8rem !important;
}

.pl-45,
.px-45 {
  padding-left: 1.8rem !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;
}

.p-55 {
  padding: 2.5rem !important;
}

.pt-55,
.py-55 {
  padding-top: 2.5rem !important;
}

.pr-55,
.px-55 {
  padding-right: 2.5rem !important;
}

.pb-55,
.py-55 {
  padding-bottom: 2.5rem !important;
}

.pl-55,
.px-55 {
  padding-left: 2.5rem !important;
}

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

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

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

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

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

.p-7 {
  padding: 4.5rem !important;
}

.pt-7,
.py-7 {
  padding-top: 4.5rem !important;
}

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

.pb-7,
.py-7 {
  padding-bottom: 4.5rem !important;
}

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

.p-8 {
  padding: 6rem !important;
}

.pt-8,
.py-8 {
  padding-top: 6rem !important;
}

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

.pb-8,
.py-8 {
  padding-bottom: 6rem !important;
}

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

.p-9 {
  padding: 7.5rem !important;
}

.pt-9,
.py-9 {
  padding-top: 7.5rem !important;
}

.pr-9,
.px-9 {
  padding-right: 7.5rem !important;
}

.pb-9,
.py-9 {
  padding-bottom: 7.5rem !important;
}

.pl-9,
.px-9 {
  padding-left: 7.5rem !important;
}

.p-10 {
  padding: 9rem !important;
}

.pt-10,
.py-10 {
  padding-top: 9rem !important;
}

.pr-10,
.px-10 {
  padding-right: 9rem !important;
}

.pb-10,
.py-10 {
  padding-bottom: 9rem !important;
}

.pl-10,
.px-10 {
  padding-left: 9rem !important;
}

.p-11 {
  padding: 10.5rem !important;
}

.pt-11,
.py-11 {
  padding-top: 10.5rem !important;
}

.pr-11,
.px-11 {
  padding-right: 10.5rem !important;
}

.pb-11,
.py-11 {
  padding-bottom: 10.5rem !important;
}

.pl-11,
.px-11 {
  padding-left: 10.5rem !important;
}

.p-12 {
  padding: 12rem !important;
}

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

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

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

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

.p-13 {
  padding: 13.5rem !important;
}

.pt-13,
.py-13 {
  padding-top: 13.5rem !important;
}

.pr-13,
.px-13 {
  padding-right: 13.5rem !important;
}

.pb-13,
.py-13 {
  padding-bottom: 13.5rem !important;
}

.pl-13,
.px-13 {
  padding-left: 13.5rem !important;
}

.p-14 {
  padding: 15rem !important;
}

.pt-14,
.py-14 {
  padding-top: 15rem !important;
}

.pr-14,
.px-14 {
  padding-right: 15rem !important;
}

.pb-14,
.py-14 {
  padding-bottom: 15rem !important;
}

.pl-14,
.px-14 {
  padding-left: 15rem !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-n25 {
  margin: -0.75rem !important;
}

.mt-n25,
.my-n25 {
  margin-top: -0.75rem !important;
}

.mr-n25,
.mx-n25 {
  margin-right: -0.75rem !important;
}

.mb-n25,
.my-n25 {
  margin-bottom: -0.75rem !important;
}

.ml-n25,
.mx-n25 {
  margin-left: -0.75rem !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-n35 {
  margin: -1.25rem !important;
}

.mt-n35,
.my-n35 {
  margin-top: -1.25rem !important;
}

.mr-n35,
.mx-n35 {
  margin-right: -1.25rem !important;
}

.mb-n35,
.my-n35 {
  margin-bottom: -1.25rem !important;
}

.ml-n35,
.mx-n35 {
  margin-left: -1.25rem !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-n45 {
  margin: -1.8rem !important;
}

.mt-n45,
.my-n45 {
  margin-top: -1.8rem !important;
}

.mr-n45,
.mx-n45 {
  margin-right: -1.8rem !important;
}

.mb-n45,
.my-n45 {
  margin-bottom: -1.8rem !important;
}

.ml-n45,
.mx-n45 {
  margin-left: -1.8rem !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-n55 {
  margin: -2.5rem !important;
}

.mt-n55,
.my-n55 {
  margin-top: -2.5rem !important;
}

.mr-n55,
.mx-n55 {
  margin-right: -2.5rem !important;
}

.mb-n55,
.my-n55 {
  margin-bottom: -2.5rem !important;
}

.ml-n55,
.mx-n55 {
  margin-left: -2.5rem !important;
}

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

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

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

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

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

.m-n7 {
  margin: -4.5rem !important;
}

.mt-n7,
.my-n7 {
  margin-top: -4.5rem !important;
}

.mr-n7,
.mx-n7 {
  margin-right: -4.5rem !important;
}

.mb-n7,
.my-n7 {
  margin-bottom: -4.5rem !important;
}

.ml-n7,
.mx-n7 {
  margin-left: -4.5rem !important;
}

.m-n8 {
  margin: -6rem !important;
}

.mt-n8,
.my-n8 {
  margin-top: -6rem !important;
}

.mr-n8,
.mx-n8 {
  margin-right: -6rem !important;
}

.mb-n8,
.my-n8 {
  margin-bottom: -6rem !important;
}

.ml-n8,
.mx-n8 {
  margin-left: -6rem !important;
}

.m-n9 {
  margin: -7.5rem !important;
}

.mt-n9,
.my-n9 {
  margin-top: -7.5rem !important;
}

.mr-n9,
.mx-n9 {
  margin-right: -7.5rem !important;
}

.mb-n9,
.my-n9 {
  margin-bottom: -7.5rem !important;
}

.ml-n9,
.mx-n9 {
  margin-left: -7.5rem !important;
}

.m-n10 {
  margin: -9rem !important;
}

.mt-n10,
.my-n10 {
  margin-top: -9rem !important;
}

.mr-n10,
.mx-n10 {
  margin-right: -9rem !important;
}

.mb-n10,
.my-n10 {
  margin-bottom: -9rem !important;
}

.ml-n10,
.mx-n10 {
  margin-left: -9rem !important;
}

.m-n11 {
  margin: -10.5rem !important;
}

.mt-n11,
.my-n11 {
  margin-top: -10.5rem !important;
}

.mr-n11,
.mx-n11 {
  margin-right: -10.5rem !important;
}

.mb-n11,
.my-n11 {
  margin-bottom: -10.5rem !important;
}

.ml-n11,
.mx-n11 {
  margin-left: -10.5rem !important;
}

.m-n12 {
  margin: -12rem !important;
}

.mt-n12,
.my-n12 {
  margin-top: -12rem !important;
}

.mr-n12,
.mx-n12 {
  margin-right: -12rem !important;
}

.mb-n12,
.my-n12 {
  margin-bottom: -12rem !important;
}

.ml-n12,
.mx-n12 {
  margin-left: -12rem !important;
}

.m-n13 {
  margin: -13.5rem !important;
}

.mt-n13,
.my-n13 {
  margin-top: -13.5rem !important;
}

.mr-n13,
.mx-n13 {
  margin-right: -13.5rem !important;
}

.mb-n13,
.my-n13 {
  margin-bottom: -13.5rem !important;
}

.ml-n13,
.mx-n13 {
  margin-left: -13.5rem !important;
}

.m-n14 {
  margin: -15rem !important;
}

.mt-n14,
.my-n14 {
  margin-top: -15rem !important;
}

.mr-n14,
.mx-n14 {
  margin-right: -15rem !important;
}

.mb-n14,
.my-n14 {
  margin-bottom: -15rem !important;
}

.ml-n14,
.mx-n14 {
  margin-left: -15rem !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-25 {
    margin: 0.75rem !important;
  }

  .mt-sm-25,
.my-sm-25 {
    margin-top: 0.75rem !important;
  }

  .mr-sm-25,
.mx-sm-25 {
    margin-right: 0.75rem !important;
  }

  .mb-sm-25,
.my-sm-25 {
    margin-bottom: 0.75rem !important;
  }

  .ml-sm-25,
.mx-sm-25 {
    margin-left: 0.75rem !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-35 {
    margin: 1.25rem !important;
  }

  .mt-sm-35,
.my-sm-35 {
    margin-top: 1.25rem !important;
  }

  .mr-sm-35,
.mx-sm-35 {
    margin-right: 1.25rem !important;
  }

  .mb-sm-35,
.my-sm-35 {
    margin-bottom: 1.25rem !important;
  }

  .ml-sm-35,
.mx-sm-35 {
    margin-left: 1.25rem !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-45 {
    margin: 1.8rem !important;
  }

  .mt-sm-45,
.my-sm-45 {
    margin-top: 1.8rem !important;
  }

  .mr-sm-45,
.mx-sm-45 {
    margin-right: 1.8rem !important;
  }

  .mb-sm-45,
.my-sm-45 {
    margin-bottom: 1.8rem !important;
  }

  .ml-sm-45,
.mx-sm-45 {
    margin-left: 1.8rem !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;
  }

  .m-sm-55 {
    margin: 2.5rem !important;
  }

  .mt-sm-55,
.my-sm-55 {
    margin-top: 2.5rem !important;
  }

  .mr-sm-55,
.mx-sm-55 {
    margin-right: 2.5rem !important;
  }

  .mb-sm-55,
.my-sm-55 {
    margin-bottom: 2.5rem !important;
  }

  .ml-sm-55,
.mx-sm-55 {
    margin-left: 2.5rem !important;
  }

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

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

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

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

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

  .m-sm-7 {
    margin: 4.5rem !important;
  }

  .mt-sm-7,
.my-sm-7 {
    margin-top: 4.5rem !important;
  }

  .mr-sm-7,
.mx-sm-7 {
    margin-right: 4.5rem !important;
  }

  .mb-sm-7,
.my-sm-7 {
    margin-bottom: 4.5rem !important;
  }

  .ml-sm-7,
.mx-sm-7 {
    margin-left: 4.5rem !important;
  }

  .m-sm-8 {
    margin: 6rem !important;
  }

  .mt-sm-8,
.my-sm-8 {
    margin-top: 6rem !important;
  }

  .mr-sm-8,
.mx-sm-8 {
    margin-right: 6rem !important;
  }

  .mb-sm-8,
.my-sm-8 {
    margin-bottom: 6rem !important;
  }

  .ml-sm-8,
.mx-sm-8 {
    margin-left: 6rem !important;
  }

  .m-sm-9 {
    margin: 7.5rem !important;
  }

  .mt-sm-9,
.my-sm-9 {
    margin-top: 7.5rem !important;
  }

  .mr-sm-9,
.mx-sm-9 {
    margin-right: 7.5rem !important;
  }

  .mb-sm-9,
.my-sm-9 {
    margin-bottom: 7.5rem !important;
  }

  .ml-sm-9,
.mx-sm-9 {
    margin-left: 7.5rem !important;
  }

  .m-sm-10 {
    margin: 9rem !important;
  }

  .mt-sm-10,
.my-sm-10 {
    margin-top: 9rem !important;
  }

  .mr-sm-10,
.mx-sm-10 {
    margin-right: 9rem !important;
  }

  .mb-sm-10,
.my-sm-10 {
    margin-bottom: 9rem !important;
  }

  .ml-sm-10,
.mx-sm-10 {
    margin-left: 9rem !important;
  }

  .m-sm-11 {
    margin: 10.5rem !important;
  }

  .mt-sm-11,
.my-sm-11 {
    margin-top: 10.5rem !important;
  }

  .mr-sm-11,
.mx-sm-11 {
    margin-right: 10.5rem !important;
  }

  .mb-sm-11,
.my-sm-11 {
    margin-bottom: 10.5rem !important;
  }

  .ml-sm-11,
.mx-sm-11 {
    margin-left: 10.5rem !important;
  }

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

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

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

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

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

  .m-sm-13 {
    margin: 13.5rem !important;
  }

  .mt-sm-13,
.my-sm-13 {
    margin-top: 13.5rem !important;
  }

  .mr-sm-13,
.mx-sm-13 {
    margin-right: 13.5rem !important;
  }

  .mb-sm-13,
.my-sm-13 {
    margin-bottom: 13.5rem !important;
  }

  .ml-sm-13,
.mx-sm-13 {
    margin-left: 13.5rem !important;
  }

  .m-sm-14 {
    margin: 15rem !important;
  }

  .mt-sm-14,
.my-sm-14 {
    margin-top: 15rem !important;
  }

  .mr-sm-14,
.mx-sm-14 {
    margin-right: 15rem !important;
  }

  .mb-sm-14,
.my-sm-14 {
    margin-bottom: 15rem !important;
  }

  .ml-sm-14,
.mx-sm-14 {
    margin-left: 15rem !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-25 {
    padding: 0.75rem !important;
  }

  .pt-sm-25,
.py-sm-25 {
    padding-top: 0.75rem !important;
  }

  .pr-sm-25,
.px-sm-25 {
    padding-right: 0.75rem !important;
  }

  .pb-sm-25,
.py-sm-25 {
    padding-bottom: 0.75rem !important;
  }

  .pl-sm-25,
.px-sm-25 {
    padding-left: 0.75rem !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-35 {
    padding: 1.25rem !important;
  }

  .pt-sm-35,
.py-sm-35 {
    padding-top: 1.25rem !important;
  }

  .pr-sm-35,
.px-sm-35 {
    padding-right: 1.25rem !important;
  }

  .pb-sm-35,
.py-sm-35 {
    padding-bottom: 1.25rem !important;
  }

  .pl-sm-35,
.px-sm-35 {
    padding-left: 1.25rem !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-45 {
    padding: 1.8rem !important;
  }

  .pt-sm-45,
.py-sm-45 {
    padding-top: 1.8rem !important;
  }

  .pr-sm-45,
.px-sm-45 {
    padding-right: 1.8rem !important;
  }

  .pb-sm-45,
.py-sm-45 {
    padding-bottom: 1.8rem !important;
  }

  .pl-sm-45,
.px-sm-45 {
    padding-left: 1.8rem !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;
  }

  .p-sm-55 {
    padding: 2.5rem !important;
  }

  .pt-sm-55,
.py-sm-55 {
    padding-top: 2.5rem !important;
  }

  .pr-sm-55,
.px-sm-55 {
    padding-right: 2.5rem !important;
  }

  .pb-sm-55,
.py-sm-55 {
    padding-bottom: 2.5rem !important;
  }

  .pl-sm-55,
.px-sm-55 {
    padding-left: 2.5rem !important;
  }

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

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

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

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

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

  .p-sm-7 {
    padding: 4.5rem !important;
  }

  .pt-sm-7,
.py-sm-7 {
    padding-top: 4.5rem !important;
  }

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

  .pb-sm-7,
.py-sm-7 {
    padding-bottom: 4.5rem !important;
  }

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

  .p-sm-8 {
    padding: 6rem !important;
  }

  .pt-sm-8,
.py-sm-8 {
    padding-top: 6rem !important;
  }

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

  .pb-sm-8,
.py-sm-8 {
    padding-bottom: 6rem !important;
  }

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

  .p-sm-9 {
    padding: 7.5rem !important;
  }

  .pt-sm-9,
.py-sm-9 {
    padding-top: 7.5rem !important;
  }

  .pr-sm-9,
.px-sm-9 {
    padding-right: 7.5rem !important;
  }

  .pb-sm-9,
.py-sm-9 {
    padding-bottom: 7.5rem !important;
  }

  .pl-sm-9,
.px-sm-9 {
    padding-left: 7.5rem !important;
  }

  .p-sm-10 {
    padding: 9rem !important;
  }

  .pt-sm-10,
.py-sm-10 {
    padding-top: 9rem !important;
  }

  .pr-sm-10,
.px-sm-10 {
    padding-right: 9rem !important;
  }

  .pb-sm-10,
.py-sm-10 {
    padding-bottom: 9rem !important;
  }

  .pl-sm-10,
.px-sm-10 {
    padding-left: 9rem !important;
  }

  .p-sm-11 {
    padding: 10.5rem !important;
  }

  .pt-sm-11,
.py-sm-11 {
    padding-top: 10.5rem !important;
  }

  .pr-sm-11,
.px-sm-11 {
    padding-right: 10.5rem !important;
  }

  .pb-sm-11,
.py-sm-11 {
    padding-bottom: 10.5rem !important;
  }

  .pl-sm-11,
.px-sm-11 {
    padding-left: 10.5rem !important;
  }

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

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

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

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

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

  .p-sm-13 {
    padding: 13.5rem !important;
  }

  .pt-sm-13,
.py-sm-13 {
    padding-top: 13.5rem !important;
  }

  .pr-sm-13,
.px-sm-13 {
    padding-right: 13.5rem !important;
  }

  .pb-sm-13,
.py-sm-13 {
    padding-bottom: 13.5rem !important;
  }

  .pl-sm-13,
.px-sm-13 {
    padding-left: 13.5rem !important;
  }

  .p-sm-14 {
    padding: 15rem !important;
  }

  .pt-sm-14,
.py-sm-14 {
    padding-top: 15rem !important;
  }

  .pr-sm-14,
.px-sm-14 {
    padding-right: 15rem !important;
  }

  .pb-sm-14,
.py-sm-14 {
    padding-bottom: 15rem !important;
  }

  .pl-sm-14,
.px-sm-14 {
    padding-left: 15rem !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-n25 {
    margin: -0.75rem !important;
  }

  .mt-sm-n25,
.my-sm-n25 {
    margin-top: -0.75rem !important;
  }

  .mr-sm-n25,
.mx-sm-n25 {
    margin-right: -0.75rem !important;
  }

  .mb-sm-n25,
.my-sm-n25 {
    margin-bottom: -0.75rem !important;
  }

  .ml-sm-n25,
.mx-sm-n25 {
    margin-left: -0.75rem !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-n35 {
    margin: -1.25rem !important;
  }

  .mt-sm-n35,
.my-sm-n35 {
    margin-top: -1.25rem !important;
  }

  .mr-sm-n35,
.mx-sm-n35 {
    margin-right: -1.25rem !important;
  }

  .mb-sm-n35,
.my-sm-n35 {
    margin-bottom: -1.25rem !important;
  }

  .ml-sm-n35,
.mx-sm-n35 {
    margin-left: -1.25rem !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-n45 {
    margin: -1.8rem !important;
  }

  .mt-sm-n45,
.my-sm-n45 {
    margin-top: -1.8rem !important;
  }

  .mr-sm-n45,
.mx-sm-n45 {
    margin-right: -1.8rem !important;
  }

  .mb-sm-n45,
.my-sm-n45 {
    margin-bottom: -1.8rem !important;
  }

  .ml-sm-n45,
.mx-sm-n45 {
    margin-left: -1.8rem !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-n55 {
    margin: -2.5rem !important;
  }

  .mt-sm-n55,
.my-sm-n55 {
    margin-top: -2.5rem !important;
  }

  .mr-sm-n55,
.mx-sm-n55 {
    margin-right: -2.5rem !important;
  }

  .mb-sm-n55,
.my-sm-n55 {
    margin-bottom: -2.5rem !important;
  }

  .ml-sm-n55,
.mx-sm-n55 {
    margin-left: -2.5rem !important;
  }

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

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

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

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

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

  .m-sm-n7 {
    margin: -4.5rem !important;
  }

  .mt-sm-n7,
.my-sm-n7 {
    margin-top: -4.5rem !important;
  }

  .mr-sm-n7,
.mx-sm-n7 {
    margin-right: -4.5rem !important;
  }

  .mb-sm-n7,
.my-sm-n7 {
    margin-bottom: -4.5rem !important;
  }

  .ml-sm-n7,
.mx-sm-n7 {
    margin-left: -4.5rem !important;
  }

  .m-sm-n8 {
    margin: -6rem !important;
  }

  .mt-sm-n8,
.my-sm-n8 {
    margin-top: -6rem !important;
  }

  .mr-sm-n8,
.mx-sm-n8 {
    margin-right: -6rem !important;
  }

  .mb-sm-n8,
.my-sm-n8 {
    margin-bottom: -6rem !important;
  }

  .ml-sm-n8,
.mx-sm-n8 {
    margin-left: -6rem !important;
  }

  .m-sm-n9 {
    margin: -7.5rem !important;
  }

  .mt-sm-n9,
.my-sm-n9 {
    margin-top: -7.5rem !important;
  }

  .mr-sm-n9,
.mx-sm-n9 {
    margin-right: -7.5rem !important;
  }

  .mb-sm-n9,
.my-sm-n9 {
    margin-bottom: -7.5rem !important;
  }

  .ml-sm-n9,
.mx-sm-n9 {
    margin-left: -7.5rem !important;
  }

  .m-sm-n10 {
    margin: -9rem !important;
  }

  .mt-sm-n10,
.my-sm-n10 {
    margin-top: -9rem !important;
  }

  .mr-sm-n10,
.mx-sm-n10 {
    margin-right: -9rem !important;
  }

  .mb-sm-n10,
.my-sm-n10 {
    margin-bottom: -9rem !important;
  }

  .ml-sm-n10,
.mx-sm-n10 {
    margin-left: -9rem !important;
  }

  .m-sm-n11 {
    margin: -10.5rem !important;
  }

  .mt-sm-n11,
.my-sm-n11 {
    margin-top: -10.5rem !important;
  }

  .mr-sm-n11,
.mx-sm-n11 {
    margin-right: -10.5rem !important;
  }

  .mb-sm-n11,
.my-sm-n11 {
    margin-bottom: -10.5rem !important;
  }

  .ml-sm-n11,
.mx-sm-n11 {
    margin-left: -10.5rem !important;
  }

  .m-sm-n12 {
    margin: -12rem !important;
  }

  .mt-sm-n12,
.my-sm-n12 {
    margin-top: -12rem !important;
  }

  .mr-sm-n12,
.mx-sm-n12 {
    margin-right: -12rem !important;
  }

  .mb-sm-n12,
.my-sm-n12 {
    margin-bottom: -12rem !important;
  }

  .ml-sm-n12,
.mx-sm-n12 {
    margin-left: -12rem !important;
  }

  .m-sm-n13 {
    margin: -13.5rem !important;
  }

  .mt-sm-n13,
.my-sm-n13 {
    margin-top: -13.5rem !important;
  }

  .mr-sm-n13,
.mx-sm-n13 {
    margin-right: -13.5rem !important;
  }

  .mb-sm-n13,
.my-sm-n13 {
    margin-bottom: -13.5rem !important;
  }

  .ml-sm-n13,
.mx-sm-n13 {
    margin-left: -13.5rem !important;
  }

  .m-sm-n14 {
    margin: -15rem !important;
  }

  .mt-sm-n14,
.my-sm-n14 {
    margin-top: -15rem !important;
  }

  .mr-sm-n14,
.mx-sm-n14 {
    margin-right: -15rem !important;
  }

  .mb-sm-n14,
.my-sm-n14 {
    margin-bottom: -15rem !important;
  }

  .ml-sm-n14,
.mx-sm-n14 {
    margin-left: -15rem !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-25 {
    margin: 0.75rem !important;
  }

  .mt-md-25,
.my-md-25 {
    margin-top: 0.75rem !important;
  }

  .mr-md-25,
.mx-md-25 {
    margin-right: 0.75rem !important;
  }

  .mb-md-25,
.my-md-25 {
    margin-bottom: 0.75rem !important;
  }

  .ml-md-25,
.mx-md-25 {
    margin-left: 0.75rem !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-35 {
    margin: 1.25rem !important;
  }

  .mt-md-35,
.my-md-35 {
    margin-top: 1.25rem !important;
  }

  .mr-md-35,
.mx-md-35 {
    margin-right: 1.25rem !important;
  }

  .mb-md-35,
.my-md-35 {
    margin-bottom: 1.25rem !important;
  }

  .ml-md-35,
.mx-md-35 {
    margin-left: 1.25rem !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-45 {
    margin: 1.8rem !important;
  }

  .mt-md-45,
.my-md-45 {
    margin-top: 1.8rem !important;
  }

  .mr-md-45,
.mx-md-45 {
    margin-right: 1.8rem !important;
  }

  .mb-md-45,
.my-md-45 {
    margin-bottom: 1.8rem !important;
  }

  .ml-md-45,
.mx-md-45 {
    margin-left: 1.8rem !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;
  }

  .m-md-55 {
    margin: 2.5rem !important;
  }

  .mt-md-55,
.my-md-55 {
    margin-top: 2.5rem !important;
  }

  .mr-md-55,
.mx-md-55 {
    margin-right: 2.5rem !important;
  }

  .mb-md-55,
.my-md-55 {
    margin-bottom: 2.5rem !important;
  }

  .ml-md-55,
.mx-md-55 {
    margin-left: 2.5rem !important;
  }

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

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

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

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

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

  .m-md-7 {
    margin: 4.5rem !important;
  }

  .mt-md-7,
.my-md-7 {
    margin-top: 4.5rem !important;
  }

  .mr-md-7,
.mx-md-7 {
    margin-right: 4.5rem !important;
  }

  .mb-md-7,
.my-md-7 {
    margin-bottom: 4.5rem !important;
  }

  .ml-md-7,
.mx-md-7 {
    margin-left: 4.5rem !important;
  }

  .m-md-8 {
    margin: 6rem !important;
  }

  .mt-md-8,
.my-md-8 {
    margin-top: 6rem !important;
  }

  .mr-md-8,
.mx-md-8 {
    margin-right: 6rem !important;
  }

  .mb-md-8,
.my-md-8 {
    margin-bottom: 6rem !important;
  }

  .ml-md-8,
.mx-md-8 {
    margin-left: 6rem !important;
  }

  .m-md-9 {
    margin: 7.5rem !important;
  }

  .mt-md-9,
.my-md-9 {
    margin-top: 7.5rem !important;
  }

  .mr-md-9,
.mx-md-9 {
    margin-right: 7.5rem !important;
  }

  .mb-md-9,
.my-md-9 {
    margin-bottom: 7.5rem !important;
  }

  .ml-md-9,
.mx-md-9 {
    margin-left: 7.5rem !important;
  }

  .m-md-10 {
    margin: 9rem !important;
  }

  .mt-md-10,
.my-md-10 {
    margin-top: 9rem !important;
  }

  .mr-md-10,
.mx-md-10 {
    margin-right: 9rem !important;
  }

  .mb-md-10,
.my-md-10 {
    margin-bottom: 9rem !important;
  }

  .ml-md-10,
.mx-md-10 {
    margin-left: 9rem !important;
  }

  .m-md-11 {
    margin: 10.5rem !important;
  }

  .mt-md-11,
.my-md-11 {
    margin-top: 10.5rem !important;
  }

  .mr-md-11,
.mx-md-11 {
    margin-right: 10.5rem !important;
  }

  .mb-md-11,
.my-md-11 {
    margin-bottom: 10.5rem !important;
  }

  .ml-md-11,
.mx-md-11 {
    margin-left: 10.5rem !important;
  }

  .m-md-12 {
    margin: 12rem !important;
  }

  .mt-md-12,
.my-md-12 {
    margin-top: 12rem !important;
  }

  .mr-md-12,
.mx-md-12 {
    margin-right: 12rem !important;
  }

  .mb-md-12,
.my-md-12 {
    margin-bottom: 12rem !important;
  }

  .ml-md-12,
.mx-md-12 {
    margin-left: 12rem !important;
  }

  .m-md-13 {
    margin: 13.5rem !important;
  }

  .mt-md-13,
.my-md-13 {
    margin-top: 13.5rem !important;
  }

  .mr-md-13,
.mx-md-13 {
    margin-right: 13.5rem !important;
  }

  .mb-md-13,
.my-md-13 {
    margin-bottom: 13.5rem !important;
  }

  .ml-md-13,
.mx-md-13 {
    margin-left: 13.5rem !important;
  }

  .m-md-14 {
    margin: 15rem !important;
  }

  .mt-md-14,
.my-md-14 {
    margin-top: 15rem !important;
  }

  .mr-md-14,
.mx-md-14 {
    margin-right: 15rem !important;
  }

  .mb-md-14,
.my-md-14 {
    margin-bottom: 15rem !important;
  }

  .ml-md-14,
.mx-md-14 {
    margin-left: 15rem !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-25 {
    padding: 0.75rem !important;
  }

  .pt-md-25,
.py-md-25 {
    padding-top: 0.75rem !important;
  }

  .pr-md-25,
.px-md-25 {
    padding-right: 0.75rem !important;
  }

  .pb-md-25,
.py-md-25 {
    padding-bottom: 0.75rem !important;
  }

  .pl-md-25,
.px-md-25 {
    padding-left: 0.75rem !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-35 {
    padding: 1.25rem !important;
  }

  .pt-md-35,
.py-md-35 {
    padding-top: 1.25rem !important;
  }

  .pr-md-35,
.px-md-35 {
    padding-right: 1.25rem !important;
  }

  .pb-md-35,
.py-md-35 {
    padding-bottom: 1.25rem !important;
  }

  .pl-md-35,
.px-md-35 {
    padding-left: 1.25rem !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-45 {
    padding: 1.8rem !important;
  }

  .pt-md-45,
.py-md-45 {
    padding-top: 1.8rem !important;
  }

  .pr-md-45,
.px-md-45 {
    padding-right: 1.8rem !important;
  }

  .pb-md-45,
.py-md-45 {
    padding-bottom: 1.8rem !important;
  }

  .pl-md-45,
.px-md-45 {
    padding-left: 1.8rem !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;
  }

  .p-md-55 {
    padding: 2.5rem !important;
  }

  .pt-md-55,
.py-md-55 {
    padding-top: 2.5rem !important;
  }

  .pr-md-55,
.px-md-55 {
    padding-right: 2.5rem !important;
  }

  .pb-md-55,
.py-md-55 {
    padding-bottom: 2.5rem !important;
  }

  .pl-md-55,
.px-md-55 {
    padding-left: 2.5rem !important;
  }

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

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

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

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

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

  .p-md-7 {
    padding: 4.5rem !important;
  }

  .pt-md-7,
.py-md-7 {
    padding-top: 4.5rem !important;
  }

  .pr-md-7,
.px-md-7 {
    padding-right: 4.5rem !important;
  }

  .pb-md-7,
.py-md-7 {
    padding-bottom: 4.5rem !important;
  }

  .pl-md-7,
.px-md-7 {
    padding-left: 4.5rem !important;
  }

  .p-md-8 {
    padding: 6rem !important;
  }

  .pt-md-8,
.py-md-8 {
    padding-top: 6rem !important;
  }

  .pr-md-8,
.px-md-8 {
    padding-right: 6rem !important;
  }

  .pb-md-8,
.py-md-8 {
    padding-bottom: 6rem !important;
  }

  .pl-md-8,
.px-md-8 {
    padding-left: 6rem !important;
  }

  .p-md-9 {
    padding: 7.5rem !important;
  }

  .pt-md-9,
.py-md-9 {
    padding-top: 7.5rem !important;
  }

  .pr-md-9,
.px-md-9 {
    padding-right: 7.5rem !important;
  }

  .pb-md-9,
.py-md-9 {
    padding-bottom: 7.5rem !important;
  }

  .pl-md-9,
.px-md-9 {
    padding-left: 7.5rem !important;
  }

  .p-md-10 {
    padding: 9rem !important;
  }

  .pt-md-10,
.py-md-10 {
    padding-top: 9rem !important;
  }

  .pr-md-10,
.px-md-10 {
    padding-right: 9rem !important;
  }

  .pb-md-10,
.py-md-10 {
    padding-bottom: 9rem !important;
  }

  .pl-md-10,
.px-md-10 {
    padding-left: 9rem !important;
  }

  .p-md-11 {
    padding: 10.5rem !important;
  }

  .pt-md-11,
.py-md-11 {
    padding-top: 10.5rem !important;
  }

  .pr-md-11,
.px-md-11 {
    padding-right: 10.5rem !important;
  }

  .pb-md-11,
.py-md-11 {
    padding-bottom: 10.5rem !important;
  }

  .pl-md-11,
.px-md-11 {
    padding-left: 10.5rem !important;
  }

  .p-md-12 {
    padding: 12rem !important;
  }

  .pt-md-12,
.py-md-12 {
    padding-top: 12rem !important;
  }

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

  .pb-md-12,
.py-md-12 {
    padding-bottom: 12rem !important;
  }

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

  .p-md-13 {
    padding: 13.5rem !important;
  }

  .pt-md-13,
.py-md-13 {
    padding-top: 13.5rem !important;
  }

  .pr-md-13,
.px-md-13 {
    padding-right: 13.5rem !important;
  }

  .pb-md-13,
.py-md-13 {
    padding-bottom: 13.5rem !important;
  }

  .pl-md-13,
.px-md-13 {
    padding-left: 13.5rem !important;
  }

  .p-md-14 {
    padding: 15rem !important;
  }

  .pt-md-14,
.py-md-14 {
    padding-top: 15rem !important;
  }

  .pr-md-14,
.px-md-14 {
    padding-right: 15rem !important;
  }

  .pb-md-14,
.py-md-14 {
    padding-bottom: 15rem !important;
  }

  .pl-md-14,
.px-md-14 {
    padding-left: 15rem !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-n25 {
    margin: -0.75rem !important;
  }

  .mt-md-n25,
.my-md-n25 {
    margin-top: -0.75rem !important;
  }

  .mr-md-n25,
.mx-md-n25 {
    margin-right: -0.75rem !important;
  }

  .mb-md-n25,
.my-md-n25 {
    margin-bottom: -0.75rem !important;
  }

  .ml-md-n25,
.mx-md-n25 {
    margin-left: -0.75rem !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-n35 {
    margin: -1.25rem !important;
  }

  .mt-md-n35,
.my-md-n35 {
    margin-top: -1.25rem !important;
  }

  .mr-md-n35,
.mx-md-n35 {
    margin-right: -1.25rem !important;
  }

  .mb-md-n35,
.my-md-n35 {
    margin-bottom: -1.25rem !important;
  }

  .ml-md-n35,
.mx-md-n35 {
    margin-left: -1.25rem !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-n45 {
    margin: -1.8rem !important;
  }

  .mt-md-n45,
.my-md-n45 {
    margin-top: -1.8rem !important;
  }

  .mr-md-n45,
.mx-md-n45 {
    margin-right: -1.8rem !important;
  }

  .mb-md-n45,
.my-md-n45 {
    margin-bottom: -1.8rem !important;
  }

  .ml-md-n45,
.mx-md-n45 {
    margin-left: -1.8rem !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-n55 {
    margin: -2.5rem !important;
  }

  .mt-md-n55,
.my-md-n55 {
    margin-top: -2.5rem !important;
  }

  .mr-md-n55,
.mx-md-n55 {
    margin-right: -2.5rem !important;
  }

  .mb-md-n55,
.my-md-n55 {
    margin-bottom: -2.5rem !important;
  }

  .ml-md-n55,
.mx-md-n55 {
    margin-left: -2.5rem !important;
  }

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

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

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

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

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

  .m-md-n7 {
    margin: -4.5rem !important;
  }

  .mt-md-n7,
.my-md-n7 {
    margin-top: -4.5rem !important;
  }

  .mr-md-n7,
.mx-md-n7 {
    margin-right: -4.5rem !important;
  }

  .mb-md-n7,
.my-md-n7 {
    margin-bottom: -4.5rem !important;
  }

  .ml-md-n7,
.mx-md-n7 {
    margin-left: -4.5rem !important;
  }

  .m-md-n8 {
    margin: -6rem !important;
  }

  .mt-md-n8,
.my-md-n8 {
    margin-top: -6rem !important;
  }

  .mr-md-n8,
.mx-md-n8 {
    margin-right: -6rem !important;
  }

  .mb-md-n8,
.my-md-n8 {
    margin-bottom: -6rem !important;
  }

  .ml-md-n8,
.mx-md-n8 {
    margin-left: -6rem !important;
  }

  .m-md-n9 {
    margin: -7.5rem !important;
  }

  .mt-md-n9,
.my-md-n9 {
    margin-top: -7.5rem !important;
  }

  .mr-md-n9,
.mx-md-n9 {
    margin-right: -7.5rem !important;
  }

  .mb-md-n9,
.my-md-n9 {
    margin-bottom: -7.5rem !important;
  }

  .ml-md-n9,
.mx-md-n9 {
    margin-left: -7.5rem !important;
  }

  .m-md-n10 {
    margin: -9rem !important;
  }

  .mt-md-n10,
.my-md-n10 {
    margin-top: -9rem !important;
  }

  .mr-md-n10,
.mx-md-n10 {
    margin-right: -9rem !important;
  }

  .mb-md-n10,
.my-md-n10 {
    margin-bottom: -9rem !important;
  }

  .ml-md-n10,
.mx-md-n10 {
    margin-left: -9rem !important;
  }

  .m-md-n11 {
    margin: -10.5rem !important;
  }

  .mt-md-n11,
.my-md-n11 {
    margin-top: -10.5rem !important;
  }

  .mr-md-n11,
.mx-md-n11 {
    margin-right: -10.5rem !important;
  }

  .mb-md-n11,
.my-md-n11 {
    margin-bottom: -10.5rem !important;
  }

  .ml-md-n11,
.mx-md-n11 {
    margin-left: -10.5rem !important;
  }

  .m-md-n12 {
    margin: -12rem !important;
  }

  .mt-md-n12,
.my-md-n12 {
    margin-top: -12rem !important;
  }

  .mr-md-n12,
.mx-md-n12 {
    margin-right: -12rem !important;
  }

  .mb-md-n12,
.my-md-n12 {
    margin-bottom: -12rem !important;
  }

  .ml-md-n12,
.mx-md-n12 {
    margin-left: -12rem !important;
  }

  .m-md-n13 {
    margin: -13.5rem !important;
  }

  .mt-md-n13,
.my-md-n13 {
    margin-top: -13.5rem !important;
  }

  .mr-md-n13,
.mx-md-n13 {
    margin-right: -13.5rem !important;
  }

  .mb-md-n13,
.my-md-n13 {
    margin-bottom: -13.5rem !important;
  }

  .ml-md-n13,
.mx-md-n13 {
    margin-left: -13.5rem !important;
  }

  .m-md-n14 {
    margin: -15rem !important;
  }

  .mt-md-n14,
.my-md-n14 {
    margin-top: -15rem !important;
  }

  .mr-md-n14,
.mx-md-n14 {
    margin-right: -15rem !important;
  }

  .mb-md-n14,
.my-md-n14 {
    margin-bottom: -15rem !important;
  }

  .ml-md-n14,
.mx-md-n14 {
    margin-left: -15rem !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-25 {
    margin: 0.75rem !important;
  }

  .mt-lg-25,
.my-lg-25 {
    margin-top: 0.75rem !important;
  }

  .mr-lg-25,
.mx-lg-25 {
    margin-right: 0.75rem !important;
  }

  .mb-lg-25,
.my-lg-25 {
    margin-bottom: 0.75rem !important;
  }

  .ml-lg-25,
.mx-lg-25 {
    margin-left: 0.75rem !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-35 {
    margin: 1.25rem !important;
  }

  .mt-lg-35,
.my-lg-35 {
    margin-top: 1.25rem !important;
  }

  .mr-lg-35,
.mx-lg-35 {
    margin-right: 1.25rem !important;
  }

  .mb-lg-35,
.my-lg-35 {
    margin-bottom: 1.25rem !important;
  }

  .ml-lg-35,
.mx-lg-35 {
    margin-left: 1.25rem !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-45 {
    margin: 1.8rem !important;
  }

  .mt-lg-45,
.my-lg-45 {
    margin-top: 1.8rem !important;
  }

  .mr-lg-45,
.mx-lg-45 {
    margin-right: 1.8rem !important;
  }

  .mb-lg-45,
.my-lg-45 {
    margin-bottom: 1.8rem !important;
  }

  .ml-lg-45,
.mx-lg-45 {
    margin-left: 1.8rem !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;
  }

  .m-lg-55 {
    margin: 2.5rem !important;
  }

  .mt-lg-55,
.my-lg-55 {
    margin-top: 2.5rem !important;
  }

  .mr-lg-55,
.mx-lg-55 {
    margin-right: 2.5rem !important;
  }

  .mb-lg-55,
.my-lg-55 {
    margin-bottom: 2.5rem !important;
  }

  .ml-lg-55,
.mx-lg-55 {
    margin-left: 2.5rem !important;
  }

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

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

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

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

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

  .m-lg-7 {
    margin: 4.5rem !important;
  }

  .mt-lg-7,
.my-lg-7 {
    margin-top: 4.5rem !important;
  }

  .mr-lg-7,
.mx-lg-7 {
    margin-right: 4.5rem !important;
  }

  .mb-lg-7,
.my-lg-7 {
    margin-bottom: 4.5rem !important;
  }

  .ml-lg-7,
.mx-lg-7 {
    margin-left: 4.5rem !important;
  }

  .m-lg-8 {
    margin: 6rem !important;
  }

  .mt-lg-8,
.my-lg-8 {
    margin-top: 6rem !important;
  }

  .mr-lg-8,
.mx-lg-8 {
    margin-right: 6rem !important;
  }

  .mb-lg-8,
.my-lg-8 {
    margin-bottom: 6rem !important;
  }

  .ml-lg-8,
.mx-lg-8 {
    margin-left: 6rem !important;
  }

  .m-lg-9 {
    margin: 7.5rem !important;
  }

  .mt-lg-9,
.my-lg-9 {
    margin-top: 7.5rem !important;
  }

  .mr-lg-9,
.mx-lg-9 {
    margin-right: 7.5rem !important;
  }

  .mb-lg-9,
.my-lg-9 {
    margin-bottom: 7.5rem !important;
  }

  .ml-lg-9,
.mx-lg-9 {
    margin-left: 7.5rem !important;
  }

  .m-lg-10 {
    margin: 9rem !important;
  }

  .mt-lg-10,
.my-lg-10 {
    margin-top: 9rem !important;
  }

  .mr-lg-10,
.mx-lg-10 {
    margin-right: 9rem !important;
  }

  .mb-lg-10,
.my-lg-10 {
    margin-bottom: 9rem !important;
  }

  .ml-lg-10,
.mx-lg-10 {
    margin-left: 9rem !important;
  }

  .m-lg-11 {
    margin: 10.5rem !important;
  }

  .mt-lg-11,
.my-lg-11 {
    margin-top: 10.5rem !important;
  }

  .mr-lg-11,
.mx-lg-11 {
    margin-right: 10.5rem !important;
  }

  .mb-lg-11,
.my-lg-11 {
    margin-bottom: 10.5rem !important;
  }

  .ml-lg-11,
.mx-lg-11 {
    margin-left: 10.5rem !important;
  }

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

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

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

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

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

  .m-lg-13 {
    margin: 13.5rem !important;
  }

  .mt-lg-13,
.my-lg-13 {
    margin-top: 13.5rem !important;
  }

  .mr-lg-13,
.mx-lg-13 {
    margin-right: 13.5rem !important;
  }

  .mb-lg-13,
.my-lg-13 {
    margin-bottom: 13.5rem !important;
  }

  .ml-lg-13,
.mx-lg-13 {
    margin-left: 13.5rem !important;
  }

  .m-lg-14 {
    margin: 15rem !important;
  }

  .mt-lg-14,
.my-lg-14 {
    margin-top: 15rem !important;
  }

  .mr-lg-14,
.mx-lg-14 {
    margin-right: 15rem !important;
  }

  .mb-lg-14,
.my-lg-14 {
    margin-bottom: 15rem !important;
  }

  .ml-lg-14,
.mx-lg-14 {
    margin-left: 15rem !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-25 {
    padding: 0.75rem !important;
  }

  .pt-lg-25,
.py-lg-25 {
    padding-top: 0.75rem !important;
  }

  .pr-lg-25,
.px-lg-25 {
    padding-right: 0.75rem !important;
  }

  .pb-lg-25,
.py-lg-25 {
    padding-bottom: 0.75rem !important;
  }

  .pl-lg-25,
.px-lg-25 {
    padding-left: 0.75rem !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-35 {
    padding: 1.25rem !important;
  }

  .pt-lg-35,
.py-lg-35 {
    padding-top: 1.25rem !important;
  }

  .pr-lg-35,
.px-lg-35 {
    padding-right: 1.25rem !important;
  }

  .pb-lg-35,
.py-lg-35 {
    padding-bottom: 1.25rem !important;
  }

  .pl-lg-35,
.px-lg-35 {
    padding-left: 1.25rem !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-45 {
    padding: 1.8rem !important;
  }

  .pt-lg-45,
.py-lg-45 {
    padding-top: 1.8rem !important;
  }

  .pr-lg-45,
.px-lg-45 {
    padding-right: 1.8rem !important;
  }

  .pb-lg-45,
.py-lg-45 {
    padding-bottom: 1.8rem !important;
  }

  .pl-lg-45,
.px-lg-45 {
    padding-left: 1.8rem !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;
  }

  .p-lg-55 {
    padding: 2.5rem !important;
  }

  .pt-lg-55,
.py-lg-55 {
    padding-top: 2.5rem !important;
  }

  .pr-lg-55,
.px-lg-55 {
    padding-right: 2.5rem !important;
  }

  .pb-lg-55,
.py-lg-55 {
    padding-bottom: 2.5rem !important;
  }

  .pl-lg-55,
.px-lg-55 {
    padding-left: 2.5rem !important;
  }

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

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

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

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

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

  .p-lg-7 {
    padding: 4.5rem !important;
  }

  .pt-lg-7,
.py-lg-7 {
    padding-top: 4.5rem !important;
  }

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

  .pb-lg-7,
.py-lg-7 {
    padding-bottom: 4.5rem !important;
  }

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

  .p-lg-8 {
    padding: 6rem !important;
  }

  .pt-lg-8,
.py-lg-8 {
    padding-top: 6rem !important;
  }

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

  .pb-lg-8,
.py-lg-8 {
    padding-bottom: 6rem !important;
  }

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

  .p-lg-9 {
    padding: 7.5rem !important;
  }

  .pt-lg-9,
.py-lg-9 {
    padding-top: 7.5rem !important;
  }

  .pr-lg-9,
.px-lg-9 {
    padding-right: 7.5rem !important;
  }

  .pb-lg-9,
.py-lg-9 {
    padding-bottom: 7.5rem !important;
  }

  .pl-lg-9,
.px-lg-9 {
    padding-left: 7.5rem !important;
  }

  .p-lg-10 {
    padding: 9rem !important;
  }

  .pt-lg-10,
.py-lg-10 {
    padding-top: 9rem !important;
  }

  .pr-lg-10,
.px-lg-10 {
    padding-right: 9rem !important;
  }

  .pb-lg-10,
.py-lg-10 {
    padding-bottom: 9rem !important;
  }

  .pl-lg-10,
.px-lg-10 {
    padding-left: 9rem !important;
  }

  .p-lg-11 {
    padding: 10.5rem !important;
  }

  .pt-lg-11,
.py-lg-11 {
    padding-top: 10.5rem !important;
  }

  .pr-lg-11,
.px-lg-11 {
    padding-right: 10.5rem !important;
  }

  .pb-lg-11,
.py-lg-11 {
    padding-bottom: 10.5rem !important;
  }

  .pl-lg-11,
.px-lg-11 {
    padding-left: 10.5rem !important;
  }

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

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

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

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

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

  .p-lg-13 {
    padding: 13.5rem !important;
  }

  .pt-lg-13,
.py-lg-13 {
    padding-top: 13.5rem !important;
  }

  .pr-lg-13,
.px-lg-13 {
    padding-right: 13.5rem !important;
  }

  .pb-lg-13,
.py-lg-13 {
    padding-bottom: 13.5rem !important;
  }

  .pl-lg-13,
.px-lg-13 {
    padding-left: 13.5rem !important;
  }

  .p-lg-14 {
    padding: 15rem !important;
  }

  .pt-lg-14,
.py-lg-14 {
    padding-top: 15rem !important;
  }

  .pr-lg-14,
.px-lg-14 {
    padding-right: 15rem !important;
  }

  .pb-lg-14,
.py-lg-14 {
    padding-bottom: 15rem !important;
  }

  .pl-lg-14,
.px-lg-14 {
    padding-left: 15rem !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-n25 {
    margin: -0.75rem !important;
  }

  .mt-lg-n25,
.my-lg-n25 {
    margin-top: -0.75rem !important;
  }

  .mr-lg-n25,
.mx-lg-n25 {
    margin-right: -0.75rem !important;
  }

  .mb-lg-n25,
.my-lg-n25 {
    margin-bottom: -0.75rem !important;
  }

  .ml-lg-n25,
.mx-lg-n25 {
    margin-left: -0.75rem !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-n35 {
    margin: -1.25rem !important;
  }

  .mt-lg-n35,
.my-lg-n35 {
    margin-top: -1.25rem !important;
  }

  .mr-lg-n35,
.mx-lg-n35 {
    margin-right: -1.25rem !important;
  }

  .mb-lg-n35,
.my-lg-n35 {
    margin-bottom: -1.25rem !important;
  }

  .ml-lg-n35,
.mx-lg-n35 {
    margin-left: -1.25rem !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-n45 {
    margin: -1.8rem !important;
  }

  .mt-lg-n45,
.my-lg-n45 {
    margin-top: -1.8rem !important;
  }

  .mr-lg-n45,
.mx-lg-n45 {
    margin-right: -1.8rem !important;
  }

  .mb-lg-n45,
.my-lg-n45 {
    margin-bottom: -1.8rem !important;
  }

  .ml-lg-n45,
.mx-lg-n45 {
    margin-left: -1.8rem !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-n55 {
    margin: -2.5rem !important;
  }

  .mt-lg-n55,
.my-lg-n55 {
    margin-top: -2.5rem !important;
  }

  .mr-lg-n55,
.mx-lg-n55 {
    margin-right: -2.5rem !important;
  }

  .mb-lg-n55,
.my-lg-n55 {
    margin-bottom: -2.5rem !important;
  }

  .ml-lg-n55,
.mx-lg-n55 {
    margin-left: -2.5rem !important;
  }

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

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

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

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

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

  .m-lg-n7 {
    margin: -4.5rem !important;
  }

  .mt-lg-n7,
.my-lg-n7 {
    margin-top: -4.5rem !important;
  }

  .mr-lg-n7,
.mx-lg-n7 {
    margin-right: -4.5rem !important;
  }

  .mb-lg-n7,
.my-lg-n7 {
    margin-bottom: -4.5rem !important;
  }

  .ml-lg-n7,
.mx-lg-n7 {
    margin-left: -4.5rem !important;
  }

  .m-lg-n8 {
    margin: -6rem !important;
  }

  .mt-lg-n8,
.my-lg-n8 {
    margin-top: -6rem !important;
  }

  .mr-lg-n8,
.mx-lg-n8 {
    margin-right: -6rem !important;
  }

  .mb-lg-n8,
.my-lg-n8 {
    margin-bottom: -6rem !important;
  }

  .ml-lg-n8,
.mx-lg-n8 {
    margin-left: -6rem !important;
  }

  .m-lg-n9 {
    margin: -7.5rem !important;
  }

  .mt-lg-n9,
.my-lg-n9 {
    margin-top: -7.5rem !important;
  }

  .mr-lg-n9,
.mx-lg-n9 {
    margin-right: -7.5rem !important;
  }

  .mb-lg-n9,
.my-lg-n9 {
    margin-bottom: -7.5rem !important;
  }

  .ml-lg-n9,
.mx-lg-n9 {
    margin-left: -7.5rem !important;
  }

  .m-lg-n10 {
    margin: -9rem !important;
  }

  .mt-lg-n10,
.my-lg-n10 {
    margin-top: -9rem !important;
  }

  .mr-lg-n10,
.mx-lg-n10 {
    margin-right: -9rem !important;
  }

  .mb-lg-n10,
.my-lg-n10 {
    margin-bottom: -9rem !important;
  }

  .ml-lg-n10,
.mx-lg-n10 {
    margin-left: -9rem !important;
  }

  .m-lg-n11 {
    margin: -10.5rem !important;
  }

  .mt-lg-n11,
.my-lg-n11 {
    margin-top: -10.5rem !important;
  }

  .mr-lg-n11,
.mx-lg-n11 {
    margin-right: -10.5rem !important;
  }

  .mb-lg-n11,
.my-lg-n11 {
    margin-bottom: -10.5rem !important;
  }

  .ml-lg-n11,
.mx-lg-n11 {
    margin-left: -10.5rem !important;
  }

  .m-lg-n12 {
    margin: -12rem !important;
  }

  .mt-lg-n12,
.my-lg-n12 {
    margin-top: -12rem !important;
  }

  .mr-lg-n12,
.mx-lg-n12 {
    margin-right: -12rem !important;
  }

  .mb-lg-n12,
.my-lg-n12 {
    margin-bottom: -12rem !important;
  }

  .ml-lg-n12,
.mx-lg-n12 {
    margin-left: -12rem !important;
  }

  .m-lg-n13 {
    margin: -13.5rem !important;
  }

  .mt-lg-n13,
.my-lg-n13 {
    margin-top: -13.5rem !important;
  }

  .mr-lg-n13,
.mx-lg-n13 {
    margin-right: -13.5rem !important;
  }

  .mb-lg-n13,
.my-lg-n13 {
    margin-bottom: -13.5rem !important;
  }

  .ml-lg-n13,
.mx-lg-n13 {
    margin-left: -13.5rem !important;
  }

  .m-lg-n14 {
    margin: -15rem !important;
  }

  .mt-lg-n14,
.my-lg-n14 {
    margin-top: -15rem !important;
  }

  .mr-lg-n14,
.mx-lg-n14 {
    margin-right: -15rem !important;
  }

  .mb-lg-n14,
.my-lg-n14 {
    margin-bottom: -15rem !important;
  }

  .ml-lg-n14,
.mx-lg-n14 {
    margin-left: -15rem !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-25 {
    margin: 0.75rem !important;
  }

  .mt-xl-25,
.my-xl-25 {
    margin-top: 0.75rem !important;
  }

  .mr-xl-25,
.mx-xl-25 {
    margin-right: 0.75rem !important;
  }

  .mb-xl-25,
.my-xl-25 {
    margin-bottom: 0.75rem !important;
  }

  .ml-xl-25,
.mx-xl-25 {
    margin-left: 0.75rem !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-35 {
    margin: 1.25rem !important;
  }

  .mt-xl-35,
.my-xl-35 {
    margin-top: 1.25rem !important;
  }

  .mr-xl-35,
.mx-xl-35 {
    margin-right: 1.25rem !important;
  }

  .mb-xl-35,
.my-xl-35 {
    margin-bottom: 1.25rem !important;
  }

  .ml-xl-35,
.mx-xl-35 {
    margin-left: 1.25rem !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-45 {
    margin: 1.8rem !important;
  }

  .mt-xl-45,
.my-xl-45 {
    margin-top: 1.8rem !important;
  }

  .mr-xl-45,
.mx-xl-45 {
    margin-right: 1.8rem !important;
  }

  .mb-xl-45,
.my-xl-45 {
    margin-bottom: 1.8rem !important;
  }

  .ml-xl-45,
.mx-xl-45 {
    margin-left: 1.8rem !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;
  }

  .m-xl-55 {
    margin: 2.5rem !important;
  }

  .mt-xl-55,
.my-xl-55 {
    margin-top: 2.5rem !important;
  }

  .mr-xl-55,
.mx-xl-55 {
    margin-right: 2.5rem !important;
  }

  .mb-xl-55,
.my-xl-55 {
    margin-bottom: 2.5rem !important;
  }

  .ml-xl-55,
.mx-xl-55 {
    margin-left: 2.5rem !important;
  }

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

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

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

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

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

  .m-xl-7 {
    margin: 4.5rem !important;
  }

  .mt-xl-7,
.my-xl-7 {
    margin-top: 4.5rem !important;
  }

  .mr-xl-7,
.mx-xl-7 {
    margin-right: 4.5rem !important;
  }

  .mb-xl-7,
.my-xl-7 {
    margin-bottom: 4.5rem !important;
  }

  .ml-xl-7,
.mx-xl-7 {
    margin-left: 4.5rem !important;
  }

  .m-xl-8 {
    margin: 6rem !important;
  }

  .mt-xl-8,
.my-xl-8 {
    margin-top: 6rem !important;
  }

  .mr-xl-8,
.mx-xl-8 {
    margin-right: 6rem !important;
  }

  .mb-xl-8,
.my-xl-8 {
    margin-bottom: 6rem !important;
  }

  .ml-xl-8,
.mx-xl-8 {
    margin-left: 6rem !important;
  }

  .m-xl-9 {
    margin: 7.5rem !important;
  }

  .mt-xl-9,
.my-xl-9 {
    margin-top: 7.5rem !important;
  }

  .mr-xl-9,
.mx-xl-9 {
    margin-right: 7.5rem !important;
  }

  .mb-xl-9,
.my-xl-9 {
    margin-bottom: 7.5rem !important;
  }

  .ml-xl-9,
.mx-xl-9 {
    margin-left: 7.5rem !important;
  }

  .m-xl-10 {
    margin: 9rem !important;
  }

  .mt-xl-10,
.my-xl-10 {
    margin-top: 9rem !important;
  }

  .mr-xl-10,
.mx-xl-10 {
    margin-right: 9rem !important;
  }

  .mb-xl-10,
.my-xl-10 {
    margin-bottom: 9rem !important;
  }

  .ml-xl-10,
.mx-xl-10 {
    margin-left: 9rem !important;
  }

  .m-xl-11 {
    margin: 10.5rem !important;
  }

  .mt-xl-11,
.my-xl-11 {
    margin-top: 10.5rem !important;
  }

  .mr-xl-11,
.mx-xl-11 {
    margin-right: 10.5rem !important;
  }

  .mb-xl-11,
.my-xl-11 {
    margin-bottom: 10.5rem !important;
  }

  .ml-xl-11,
.mx-xl-11 {
    margin-left: 10.5rem !important;
  }

  .m-xl-12 {
    margin: 12rem !important;
  }

  .mt-xl-12,
.my-xl-12 {
    margin-top: 12rem !important;
  }

  .mr-xl-12,
.mx-xl-12 {
    margin-right: 12rem !important;
  }

  .mb-xl-12,
.my-xl-12 {
    margin-bottom: 12rem !important;
  }

  .ml-xl-12,
.mx-xl-12 {
    margin-left: 12rem !important;
  }

  .m-xl-13 {
    margin: 13.5rem !important;
  }

  .mt-xl-13,
.my-xl-13 {
    margin-top: 13.5rem !important;
  }

  .mr-xl-13,
.mx-xl-13 {
    margin-right: 13.5rem !important;
  }

  .mb-xl-13,
.my-xl-13 {
    margin-bottom: 13.5rem !important;
  }

  .ml-xl-13,
.mx-xl-13 {
    margin-left: 13.5rem !important;
  }

  .m-xl-14 {
    margin: 15rem !important;
  }

  .mt-xl-14,
.my-xl-14 {
    margin-top: 15rem !important;
  }

  .mr-xl-14,
.mx-xl-14 {
    margin-right: 15rem !important;
  }

  .mb-xl-14,
.my-xl-14 {
    margin-bottom: 15rem !important;
  }

  .ml-xl-14,
.mx-xl-14 {
    margin-left: 15rem !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-25 {
    padding: 0.75rem !important;
  }

  .pt-xl-25,
.py-xl-25 {
    padding-top: 0.75rem !important;
  }

  .pr-xl-25,
.px-xl-25 {
    padding-right: 0.75rem !important;
  }

  .pb-xl-25,
.py-xl-25 {
    padding-bottom: 0.75rem !important;
  }

  .pl-xl-25,
.px-xl-25 {
    padding-left: 0.75rem !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-35 {
    padding: 1.25rem !important;
  }

  .pt-xl-35,
.py-xl-35 {
    padding-top: 1.25rem !important;
  }

  .pr-xl-35,
.px-xl-35 {
    padding-right: 1.25rem !important;
  }

  .pb-xl-35,
.py-xl-35 {
    padding-bottom: 1.25rem !important;
  }

  .pl-xl-35,
.px-xl-35 {
    padding-left: 1.25rem !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-45 {
    padding: 1.8rem !important;
  }

  .pt-xl-45,
.py-xl-45 {
    padding-top: 1.8rem !important;
  }

  .pr-xl-45,
.px-xl-45 {
    padding-right: 1.8rem !important;
  }

  .pb-xl-45,
.py-xl-45 {
    padding-bottom: 1.8rem !important;
  }

  .pl-xl-45,
.px-xl-45 {
    padding-left: 1.8rem !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;
  }

  .p-xl-55 {
    padding: 2.5rem !important;
  }

  .pt-xl-55,
.py-xl-55 {
    padding-top: 2.5rem !important;
  }

  .pr-xl-55,
.px-xl-55 {
    padding-right: 2.5rem !important;
  }

  .pb-xl-55,
.py-xl-55 {
    padding-bottom: 2.5rem !important;
  }

  .pl-xl-55,
.px-xl-55 {
    padding-left: 2.5rem !important;
  }

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

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

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

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

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

  .p-xl-7 {
    padding: 4.5rem !important;
  }

  .pt-xl-7,
.py-xl-7 {
    padding-top: 4.5rem !important;
  }

  .pr-xl-7,
.px-xl-7 {
    padding-right: 4.5rem !important;
  }

  .pb-xl-7,
.py-xl-7 {
    padding-bottom: 4.5rem !important;
  }

  .pl-xl-7,
.px-xl-7 {
    padding-left: 4.5rem !important;
  }

  .p-xl-8 {
    padding: 6rem !important;
  }

  .pt-xl-8,
.py-xl-8 {
    padding-top: 6rem !important;
  }

  .pr-xl-8,
.px-xl-8 {
    padding-right: 6rem !important;
  }

  .pb-xl-8,
.py-xl-8 {
    padding-bottom: 6rem !important;
  }

  .pl-xl-8,
.px-xl-8 {
    padding-left: 6rem !important;
  }

  .p-xl-9 {
    padding: 7.5rem !important;
  }

  .pt-xl-9,
.py-xl-9 {
    padding-top: 7.5rem !important;
  }

  .pr-xl-9,
.px-xl-9 {
    padding-right: 7.5rem !important;
  }

  .pb-xl-9,
.py-xl-9 {
    padding-bottom: 7.5rem !important;
  }

  .pl-xl-9,
.px-xl-9 {
    padding-left: 7.5rem !important;
  }

  .p-xl-10 {
    padding: 9rem !important;
  }

  .pt-xl-10,
.py-xl-10 {
    padding-top: 9rem !important;
  }

  .pr-xl-10,
.px-xl-10 {
    padding-right: 9rem !important;
  }

  .pb-xl-10,
.py-xl-10 {
    padding-bottom: 9rem !important;
  }

  .pl-xl-10,
.px-xl-10 {
    padding-left: 9rem !important;
  }

  .p-xl-11 {
    padding: 10.5rem !important;
  }

  .pt-xl-11,
.py-xl-11 {
    padding-top: 10.5rem !important;
  }

  .pr-xl-11,
.px-xl-11 {
    padding-right: 10.5rem !important;
  }

  .pb-xl-11,
.py-xl-11 {
    padding-bottom: 10.5rem !important;
  }

  .pl-xl-11,
.px-xl-11 {
    padding-left: 10.5rem !important;
  }

  .p-xl-12 {
    padding: 12rem !important;
  }

  .pt-xl-12,
.py-xl-12 {
    padding-top: 12rem !important;
  }

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

  .pb-xl-12,
.py-xl-12 {
    padding-bottom: 12rem !important;
  }

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

  .p-xl-13 {
    padding: 13.5rem !important;
  }

  .pt-xl-13,
.py-xl-13 {
    padding-top: 13.5rem !important;
  }

  .pr-xl-13,
.px-xl-13 {
    padding-right: 13.5rem !important;
  }

  .pb-xl-13,
.py-xl-13 {
    padding-bottom: 13.5rem !important;
  }

  .pl-xl-13,
.px-xl-13 {
    padding-left: 13.5rem !important;
  }

  .p-xl-14 {
    padding: 15rem !important;
  }

  .pt-xl-14,
.py-xl-14 {
    padding-top: 15rem !important;
  }

  .pr-xl-14,
.px-xl-14 {
    padding-right: 15rem !important;
  }

  .pb-xl-14,
.py-xl-14 {
    padding-bottom: 15rem !important;
  }

  .pl-xl-14,
.px-xl-14 {
    padding-left: 15rem !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-n25 {
    margin: -0.75rem !important;
  }

  .mt-xl-n25,
.my-xl-n25 {
    margin-top: -0.75rem !important;
  }

  .mr-xl-n25,
.mx-xl-n25 {
    margin-right: -0.75rem !important;
  }

  .mb-xl-n25,
.my-xl-n25 {
    margin-bottom: -0.75rem !important;
  }

  .ml-xl-n25,
.mx-xl-n25 {
    margin-left: -0.75rem !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-n35 {
    margin: -1.25rem !important;
  }

  .mt-xl-n35,
.my-xl-n35 {
    margin-top: -1.25rem !important;
  }

  .mr-xl-n35,
.mx-xl-n35 {
    margin-right: -1.25rem !important;
  }

  .mb-xl-n35,
.my-xl-n35 {
    margin-bottom: -1.25rem !important;
  }

  .ml-xl-n35,
.mx-xl-n35 {
    margin-left: -1.25rem !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-n45 {
    margin: -1.8rem !important;
  }

  .mt-xl-n45,
.my-xl-n45 {
    margin-top: -1.8rem !important;
  }

  .mr-xl-n45,
.mx-xl-n45 {
    margin-right: -1.8rem !important;
  }

  .mb-xl-n45,
.my-xl-n45 {
    margin-bottom: -1.8rem !important;
  }

  .ml-xl-n45,
.mx-xl-n45 {
    margin-left: -1.8rem !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-n55 {
    margin: -2.5rem !important;
  }

  .mt-xl-n55,
.my-xl-n55 {
    margin-top: -2.5rem !important;
  }

  .mr-xl-n55,
.mx-xl-n55 {
    margin-right: -2.5rem !important;
  }

  .mb-xl-n55,
.my-xl-n55 {
    margin-bottom: -2.5rem !important;
  }

  .ml-xl-n55,
.mx-xl-n55 {
    margin-left: -2.5rem !important;
  }

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

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

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

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

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

  .m-xl-n7 {
    margin: -4.5rem !important;
  }

  .mt-xl-n7,
.my-xl-n7 {
    margin-top: -4.5rem !important;
  }

  .mr-xl-n7,
.mx-xl-n7 {
    margin-right: -4.5rem !important;
  }

  .mb-xl-n7,
.my-xl-n7 {
    margin-bottom: -4.5rem !important;
  }

  .ml-xl-n7,
.mx-xl-n7 {
    margin-left: -4.5rem !important;
  }

  .m-xl-n8 {
    margin: -6rem !important;
  }

  .mt-xl-n8,
.my-xl-n8 {
    margin-top: -6rem !important;
  }

  .mr-xl-n8,
.mx-xl-n8 {
    margin-right: -6rem !important;
  }

  .mb-xl-n8,
.my-xl-n8 {
    margin-bottom: -6rem !important;
  }

  .ml-xl-n8,
.mx-xl-n8 {
    margin-left: -6rem !important;
  }

  .m-xl-n9 {
    margin: -7.5rem !important;
  }

  .mt-xl-n9,
.my-xl-n9 {
    margin-top: -7.5rem !important;
  }

  .mr-xl-n9,
.mx-xl-n9 {
    margin-right: -7.5rem !important;
  }

  .mb-xl-n9,
.my-xl-n9 {
    margin-bottom: -7.5rem !important;
  }

  .ml-xl-n9,
.mx-xl-n9 {
    margin-left: -7.5rem !important;
  }

  .m-xl-n10 {
    margin: -9rem !important;
  }

  .mt-xl-n10,
.my-xl-n10 {
    margin-top: -9rem !important;
  }

  .mr-xl-n10,
.mx-xl-n10 {
    margin-right: -9rem !important;
  }

  .mb-xl-n10,
.my-xl-n10 {
    margin-bottom: -9rem !important;
  }

  .ml-xl-n10,
.mx-xl-n10 {
    margin-left: -9rem !important;
  }

  .m-xl-n11 {
    margin: -10.5rem !important;
  }

  .mt-xl-n11,
.my-xl-n11 {
    margin-top: -10.5rem !important;
  }

  .mr-xl-n11,
.mx-xl-n11 {
    margin-right: -10.5rem !important;
  }

  .mb-xl-n11,
.my-xl-n11 {
    margin-bottom: -10.5rem !important;
  }

  .ml-xl-n11,
.mx-xl-n11 {
    margin-left: -10.5rem !important;
  }

  .m-xl-n12 {
    margin: -12rem !important;
  }

  .mt-xl-n12,
.my-xl-n12 {
    margin-top: -12rem !important;
  }

  .mr-xl-n12,
.mx-xl-n12 {
    margin-right: -12rem !important;
  }

  .mb-xl-n12,
.my-xl-n12 {
    margin-bottom: -12rem !important;
  }

  .ml-xl-n12,
.mx-xl-n12 {
    margin-left: -12rem !important;
  }

  .m-xl-n13 {
    margin: -13.5rem !important;
  }

  .mt-xl-n13,
.my-xl-n13 {
    margin-top: -13.5rem !important;
  }

  .mr-xl-n13,
.mx-xl-n13 {
    margin-right: -13.5rem !important;
  }

  .mb-xl-n13,
.my-xl-n13 {
    margin-bottom: -13.5rem !important;
  }

  .ml-xl-n13,
.mx-xl-n13 {
    margin-left: -13.5rem !important;
  }

  .m-xl-n14 {
    margin: -15rem !important;
  }

  .mt-xl-n14,
.my-xl-n14 {
    margin-top: -15rem !important;
  }

  .mr-xl-n14,
.mx-xl-n14 {
    margin-right: -15rem !important;
  }

  .mb-xl-n14,
.my-xl-n14 {
    margin-bottom: -15rem !important;
  }

  .ml-xl-n14,
.mx-xl-n14 {
    margin-left: -15rem !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;
  }
}
@media (min-width: 1700px) {
  .m-xxl-0 {
    margin: 0 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .m-xxl-25 {
    margin: 0.75rem !important;
  }

  .mt-xxl-25,
.my-xxl-25 {
    margin-top: 0.75rem !important;
  }

  .mr-xxl-25,
.mx-xxl-25 {
    margin-right: 0.75rem !important;
  }

  .mb-xxl-25,
.my-xxl-25 {
    margin-bottom: 0.75rem !important;
  }

  .ml-xxl-25,
.mx-xxl-25 {
    margin-left: 0.75rem !important;
  }

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

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

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

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

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

  .m-xxl-35 {
    margin: 1.25rem !important;
  }

  .mt-xxl-35,
.my-xxl-35 {
    margin-top: 1.25rem !important;
  }

  .mr-xxl-35,
.mx-xxl-35 {
    margin-right: 1.25rem !important;
  }

  .mb-xxl-35,
.my-xxl-35 {
    margin-bottom: 1.25rem !important;
  }

  .ml-xxl-35,
.mx-xxl-35 {
    margin-left: 1.25rem !important;
  }

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

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

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

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

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

  .m-xxl-45 {
    margin: 1.8rem !important;
  }

  .mt-xxl-45,
.my-xxl-45 {
    margin-top: 1.8rem !important;
  }

  .mr-xxl-45,
.mx-xxl-45 {
    margin-right: 1.8rem !important;
  }

  .mb-xxl-45,
.my-xxl-45 {
    margin-bottom: 1.8rem !important;
  }

  .ml-xxl-45,
.mx-xxl-45 {
    margin-left: 1.8rem !important;
  }

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

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

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

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

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

  .m-xxl-55 {
    margin: 2.5rem !important;
  }

  .mt-xxl-55,
.my-xxl-55 {
    margin-top: 2.5rem !important;
  }

  .mr-xxl-55,
.mx-xxl-55 {
    margin-right: 2.5rem !important;
  }

  .mb-xxl-55,
.my-xxl-55 {
    margin-bottom: 2.5rem !important;
  }

  .ml-xxl-55,
.mx-xxl-55 {
    margin-left: 2.5rem !important;
  }

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

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

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

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

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

  .m-xxl-7 {
    margin: 4.5rem !important;
  }

  .mt-xxl-7,
.my-xxl-7 {
    margin-top: 4.5rem !important;
  }

  .mr-xxl-7,
.mx-xxl-7 {
    margin-right: 4.5rem !important;
  }

  .mb-xxl-7,
.my-xxl-7 {
    margin-bottom: 4.5rem !important;
  }

  .ml-xxl-7,
.mx-xxl-7 {
    margin-left: 4.5rem !important;
  }

  .m-xxl-8 {
    margin: 6rem !important;
  }

  .mt-xxl-8,
.my-xxl-8 {
    margin-top: 6rem !important;
  }

  .mr-xxl-8,
.mx-xxl-8 {
    margin-right: 6rem !important;
  }

  .mb-xxl-8,
.my-xxl-8 {
    margin-bottom: 6rem !important;
  }

  .ml-xxl-8,
.mx-xxl-8 {
    margin-left: 6rem !important;
  }

  .m-xxl-9 {
    margin: 7.5rem !important;
  }

  .mt-xxl-9,
.my-xxl-9 {
    margin-top: 7.5rem !important;
  }

  .mr-xxl-9,
.mx-xxl-9 {
    margin-right: 7.5rem !important;
  }

  .mb-xxl-9,
.my-xxl-9 {
    margin-bottom: 7.5rem !important;
  }

  .ml-xxl-9,
.mx-xxl-9 {
    margin-left: 7.5rem !important;
  }

  .m-xxl-10 {
    margin: 9rem !important;
  }

  .mt-xxl-10,
.my-xxl-10 {
    margin-top: 9rem !important;
  }

  .mr-xxl-10,
.mx-xxl-10 {
    margin-right: 9rem !important;
  }

  .mb-xxl-10,
.my-xxl-10 {
    margin-bottom: 9rem !important;
  }

  .ml-xxl-10,
.mx-xxl-10 {
    margin-left: 9rem !important;
  }

  .m-xxl-11 {
    margin: 10.5rem !important;
  }

  .mt-xxl-11,
.my-xxl-11 {
    margin-top: 10.5rem !important;
  }

  .mr-xxl-11,
.mx-xxl-11 {
    margin-right: 10.5rem !important;
  }

  .mb-xxl-11,
.my-xxl-11 {
    margin-bottom: 10.5rem !important;
  }

  .ml-xxl-11,
.mx-xxl-11 {
    margin-left: 10.5rem !important;
  }

  .m-xxl-12 {
    margin: 12rem !important;
  }

  .mt-xxl-12,
.my-xxl-12 {
    margin-top: 12rem !important;
  }

  .mr-xxl-12,
.mx-xxl-12 {
    margin-right: 12rem !important;
  }

  .mb-xxl-12,
.my-xxl-12 {
    margin-bottom: 12rem !important;
  }

  .ml-xxl-12,
.mx-xxl-12 {
    margin-left: 12rem !important;
  }

  .m-xxl-13 {
    margin: 13.5rem !important;
  }

  .mt-xxl-13,
.my-xxl-13 {
    margin-top: 13.5rem !important;
  }

  .mr-xxl-13,
.mx-xxl-13 {
    margin-right: 13.5rem !important;
  }

  .mb-xxl-13,
.my-xxl-13 {
    margin-bottom: 13.5rem !important;
  }

  .ml-xxl-13,
.mx-xxl-13 {
    margin-left: 13.5rem !important;
  }

  .m-xxl-14 {
    margin: 15rem !important;
  }

  .mt-xxl-14,
.my-xxl-14 {
    margin-top: 15rem !important;
  }

  .mr-xxl-14,
.mx-xxl-14 {
    margin-right: 15rem !important;
  }

  .mb-xxl-14,
.my-xxl-14 {
    margin-bottom: 15rem !important;
  }

  .ml-xxl-14,
.mx-xxl-14 {
    margin-left: 15rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .p-xxl-25 {
    padding: 0.75rem !important;
  }

  .pt-xxl-25,
.py-xxl-25 {
    padding-top: 0.75rem !important;
  }

  .pr-xxl-25,
.px-xxl-25 {
    padding-right: 0.75rem !important;
  }

  .pb-xxl-25,
.py-xxl-25 {
    padding-bottom: 0.75rem !important;
  }

  .pl-xxl-25,
.px-xxl-25 {
    padding-left: 0.75rem !important;
  }

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

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

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

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

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

  .p-xxl-35 {
    padding: 1.25rem !important;
  }

  .pt-xxl-35,
.py-xxl-35 {
    padding-top: 1.25rem !important;
  }

  .pr-xxl-35,
.px-xxl-35 {
    padding-right: 1.25rem !important;
  }

  .pb-xxl-35,
.py-xxl-35 {
    padding-bottom: 1.25rem !important;
  }

  .pl-xxl-35,
.px-xxl-35 {
    padding-left: 1.25rem !important;
  }

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

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

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

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

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

  .p-xxl-45 {
    padding: 1.8rem !important;
  }

  .pt-xxl-45,
.py-xxl-45 {
    padding-top: 1.8rem !important;
  }

  .pr-xxl-45,
.px-xxl-45 {
    padding-right: 1.8rem !important;
  }

  .pb-xxl-45,
.py-xxl-45 {
    padding-bottom: 1.8rem !important;
  }

  .pl-xxl-45,
.px-xxl-45 {
    padding-left: 1.8rem !important;
  }

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

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

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

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

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

  .p-xxl-55 {
    padding: 2.5rem !important;
  }

  .pt-xxl-55,
.py-xxl-55 {
    padding-top: 2.5rem !important;
  }

  .pr-xxl-55,
.px-xxl-55 {
    padding-right: 2.5rem !important;
  }

  .pb-xxl-55,
.py-xxl-55 {
    padding-bottom: 2.5rem !important;
  }

  .pl-xxl-55,
.px-xxl-55 {
    padding-left: 2.5rem !important;
  }

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

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

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

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

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

  .p-xxl-7 {
    padding: 4.5rem !important;
  }

  .pt-xxl-7,
.py-xxl-7 {
    padding-top: 4.5rem !important;
  }

  .pr-xxl-7,
.px-xxl-7 {
    padding-right: 4.5rem !important;
  }

  .pb-xxl-7,
.py-xxl-7 {
    padding-bottom: 4.5rem !important;
  }

  .pl-xxl-7,
.px-xxl-7 {
    padding-left: 4.5rem !important;
  }

  .p-xxl-8 {
    padding: 6rem !important;
  }

  .pt-xxl-8,
.py-xxl-8 {
    padding-top: 6rem !important;
  }

  .pr-xxl-8,
.px-xxl-8 {
    padding-right: 6rem !important;
  }

  .pb-xxl-8,
.py-xxl-8 {
    padding-bottom: 6rem !important;
  }

  .pl-xxl-8,
.px-xxl-8 {
    padding-left: 6rem !important;
  }

  .p-xxl-9 {
    padding: 7.5rem !important;
  }

  .pt-xxl-9,
.py-xxl-9 {
    padding-top: 7.5rem !important;
  }

  .pr-xxl-9,
.px-xxl-9 {
    padding-right: 7.5rem !important;
  }

  .pb-xxl-9,
.py-xxl-9 {
    padding-bottom: 7.5rem !important;
  }

  .pl-xxl-9,
.px-xxl-9 {
    padding-left: 7.5rem !important;
  }

  .p-xxl-10 {
    padding: 9rem !important;
  }

  .pt-xxl-10,
.py-xxl-10 {
    padding-top: 9rem !important;
  }

  .pr-xxl-10,
.px-xxl-10 {
    padding-right: 9rem !important;
  }

  .pb-xxl-10,
.py-xxl-10 {
    padding-bottom: 9rem !important;
  }

  .pl-xxl-10,
.px-xxl-10 {
    padding-left: 9rem !important;
  }

  .p-xxl-11 {
    padding: 10.5rem !important;
  }

  .pt-xxl-11,
.py-xxl-11 {
    padding-top: 10.5rem !important;
  }

  .pr-xxl-11,
.px-xxl-11 {
    padding-right: 10.5rem !important;
  }

  .pb-xxl-11,
.py-xxl-11 {
    padding-bottom: 10.5rem !important;
  }

  .pl-xxl-11,
.px-xxl-11 {
    padding-left: 10.5rem !important;
  }

  .p-xxl-12 {
    padding: 12rem !important;
  }

  .pt-xxl-12,
.py-xxl-12 {
    padding-top: 12rem !important;
  }

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

  .pb-xxl-12,
.py-xxl-12 {
    padding-bottom: 12rem !important;
  }

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

  .p-xxl-13 {
    padding: 13.5rem !important;
  }

  .pt-xxl-13,
.py-xxl-13 {
    padding-top: 13.5rem !important;
  }

  .pr-xxl-13,
.px-xxl-13 {
    padding-right: 13.5rem !important;
  }

  .pb-xxl-13,
.py-xxl-13 {
    padding-bottom: 13.5rem !important;
  }

  .pl-xxl-13,
.px-xxl-13 {
    padding-left: 13.5rem !important;
  }

  .p-xxl-14 {
    padding: 15rem !important;
  }

  .pt-xxl-14,
.py-xxl-14 {
    padding-top: 15rem !important;
  }

  .pr-xxl-14,
.px-xxl-14 {
    padding-right: 15rem !important;
  }

  .pb-xxl-14,
.py-xxl-14 {
    padding-bottom: 15rem !important;
  }

  .pl-xxl-14,
.px-xxl-14 {
    padding-left: 15rem !important;
  }

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

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

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

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

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

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

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

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

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

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

  .m-xxl-n25 {
    margin: -0.75rem !important;
  }

  .mt-xxl-n25,
.my-xxl-n25 {
    margin-top: -0.75rem !important;
  }

  .mr-xxl-n25,
.mx-xxl-n25 {
    margin-right: -0.75rem !important;
  }

  .mb-xxl-n25,
.my-xxl-n25 {
    margin-bottom: -0.75rem !important;
  }

  .ml-xxl-n25,
.mx-xxl-n25 {
    margin-left: -0.75rem !important;
  }

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

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

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

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

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

  .m-xxl-n35 {
    margin: -1.25rem !important;
  }

  .mt-xxl-n35,
.my-xxl-n35 {
    margin-top: -1.25rem !important;
  }

  .mr-xxl-n35,
.mx-xxl-n35 {
    margin-right: -1.25rem !important;
  }

  .mb-xxl-n35,
.my-xxl-n35 {
    margin-bottom: -1.25rem !important;
  }

  .ml-xxl-n35,
.mx-xxl-n35 {
    margin-left: -1.25rem !important;
  }

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

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

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

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

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

  .m-xxl-n45 {
    margin: -1.8rem !important;
  }

  .mt-xxl-n45,
.my-xxl-n45 {
    margin-top: -1.8rem !important;
  }

  .mr-xxl-n45,
.mx-xxl-n45 {
    margin-right: -1.8rem !important;
  }

  .mb-xxl-n45,
.my-xxl-n45 {
    margin-bottom: -1.8rem !important;
  }

  .ml-xxl-n45,
.mx-xxl-n45 {
    margin-left: -1.8rem !important;
  }

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

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

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

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

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

  .m-xxl-n55 {
    margin: -2.5rem !important;
  }

  .mt-xxl-n55,
.my-xxl-n55 {
    margin-top: -2.5rem !important;
  }

  .mr-xxl-n55,
.mx-xxl-n55 {
    margin-right: -2.5rem !important;
  }

  .mb-xxl-n55,
.my-xxl-n55 {
    margin-bottom: -2.5rem !important;
  }

  .ml-xxl-n55,
.mx-xxl-n55 {
    margin-left: -2.5rem !important;
  }

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

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

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

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

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

  .m-xxl-n7 {
    margin: -4.5rem !important;
  }

  .mt-xxl-n7,
.my-xxl-n7 {
    margin-top: -4.5rem !important;
  }

  .mr-xxl-n7,
.mx-xxl-n7 {
    margin-right: -4.5rem !important;
  }

  .mb-xxl-n7,
.my-xxl-n7 {
    margin-bottom: -4.5rem !important;
  }

  .ml-xxl-n7,
.mx-xxl-n7 {
    margin-left: -4.5rem !important;
  }

  .m-xxl-n8 {
    margin: -6rem !important;
  }

  .mt-xxl-n8,
.my-xxl-n8 {
    margin-top: -6rem !important;
  }

  .mr-xxl-n8,
.mx-xxl-n8 {
    margin-right: -6rem !important;
  }

  .mb-xxl-n8,
.my-xxl-n8 {
    margin-bottom: -6rem !important;
  }

  .ml-xxl-n8,
.mx-xxl-n8 {
    margin-left: -6rem !important;
  }

  .m-xxl-n9 {
    margin: -7.5rem !important;
  }

  .mt-xxl-n9,
.my-xxl-n9 {
    margin-top: -7.5rem !important;
  }

  .mr-xxl-n9,
.mx-xxl-n9 {
    margin-right: -7.5rem !important;
  }

  .mb-xxl-n9,
.my-xxl-n9 {
    margin-bottom: -7.5rem !important;
  }

  .ml-xxl-n9,
.mx-xxl-n9 {
    margin-left: -7.5rem !important;
  }

  .m-xxl-n10 {
    margin: -9rem !important;
  }

  .mt-xxl-n10,
.my-xxl-n10 {
    margin-top: -9rem !important;
  }

  .mr-xxl-n10,
.mx-xxl-n10 {
    margin-right: -9rem !important;
  }

  .mb-xxl-n10,
.my-xxl-n10 {
    margin-bottom: -9rem !important;
  }

  .ml-xxl-n10,
.mx-xxl-n10 {
    margin-left: -9rem !important;
  }

  .m-xxl-n11 {
    margin: -10.5rem !important;
  }

  .mt-xxl-n11,
.my-xxl-n11 {
    margin-top: -10.5rem !important;
  }

  .mr-xxl-n11,
.mx-xxl-n11 {
    margin-right: -10.5rem !important;
  }

  .mb-xxl-n11,
.my-xxl-n11 {
    margin-bottom: -10.5rem !important;
  }

  .ml-xxl-n11,
.mx-xxl-n11 {
    margin-left: -10.5rem !important;
  }

  .m-xxl-n12 {
    margin: -12rem !important;
  }

  .mt-xxl-n12,
.my-xxl-n12 {
    margin-top: -12rem !important;
  }

  .mr-xxl-n12,
.mx-xxl-n12 {
    margin-right: -12rem !important;
  }

  .mb-xxl-n12,
.my-xxl-n12 {
    margin-bottom: -12rem !important;
  }

  .ml-xxl-n12,
.mx-xxl-n12 {
    margin-left: -12rem !important;
  }

  .m-xxl-n13 {
    margin: -13.5rem !important;
  }

  .mt-xxl-n13,
.my-xxl-n13 {
    margin-top: -13.5rem !important;
  }

  .mr-xxl-n13,
.mx-xxl-n13 {
    margin-right: -13.5rem !important;
  }

  .mb-xxl-n13,
.my-xxl-n13 {
    margin-bottom: -13.5rem !important;
  }

  .ml-xxl-n13,
.mx-xxl-n13 {
    margin-left: -13.5rem !important;
  }

  .m-xxl-n14 {
    margin: -15rem !important;
  }

  .mt-xxl-n14,
.my-xxl-n14 {
    margin-top: -15rem !important;
  }

  .mr-xxl-n14,
.mx-xxl-n14 {
    margin-right: -15rem !important;
  }

  .mb-xxl-n14,
.my-xxl-n14 {
    margin-bottom: -15rem !important;
  }

  .ml-xxl-n14,
.mx-xxl-n14 {
    margin-left: -15rem !important;
  }

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

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

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

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

  .ml-xxl-auto,
.mx-xxl-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;
  }
}
@media (min-width: 1700px) {
  .text-xxl-left {
    text-align: left !important;
  }

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

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

html {
  font-size: 0.95rem;
}
@media (min-width: 768px) {
  html {
    font-size: 1rem;
  }
}
@media (min-width: 1700px) {
  html {
    font-size: 1.05rem;
  }
}

body {
  color: black;
  overflow-x: hidden;
  overflow-y: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  background: #fcbe04;
}
body.popup {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 767.98px) {
  iframe.tour {
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    height: 612px !important;
  }
}

@media (max-width: 767.98px) {
  iframe.point {
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
  }
}

a:hover {
  text-decoration: none;
}

.modal-backdrop.show {
  opacity: 0.7;
}

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

.modal-dialog {
  height: 100vh;
  max-width: none;
  margin: auto;
}
.modal-dialog.tour {
  width: 60vw;
}
.modal-dialog.tour .modal-content {
  height: 70vh;
}
.modal-dialog.tour .modal-content iframe {
  height: calc(70vh - 6px);
}
@media (max-width: 767.98px) {
  .modal-dialog.tour .modal-content {
    height: 612px !important;
  }
}
@media (max-width: 767.98px) {
  .modal-dialog.tour {
    width: 80vw;
  }
  .modal-dialog.tour .modal-content {
    height: 80vh;
  }
  .modal-dialog.tour .modal-content iframe {
    height: calc(80vh - 6px);
  }
}
.modal-dialog.point {
  width: 400px;
  max-width: 75%;
}
.modal-dialog.point .modal-content {
  height: 400px;
}
.modal-dialog.point .modal-content .iframe_holder {
  height: 394px;
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
}
.modal-dialog.point .modal-content iframe {
  height: 100%;
  width: 100%;
}
.modal-dialog.point .modal-content .modal-body {
  height: 394px;
}
@media (min-width: 992px) {
  .modal-dialog.point {
    width: 812px;
  }
  .modal-dialog.point .modal-content {
    height: 400px;
  }
  .modal-dialog.point .modal-content iframe {
    height: 394px;
  }
  .modal-dialog.point .modal-content .iframe_holder {
    overflow-y: hidden;
  }
  .modal-dialog.point .modal-content .modal-body {
    height: 394px;
  }
}
@media (max-width: 767.98px) {
  .modal-dialog.video21by9 {
    width: 80vw;
  }
}
.modal-dialog.video21by9 .modal-content {
  padding: 30px;
  padding-bottom: 25px;
}
.modal-dialog.video16by9 {
  width: 65vw;
}
@media (max-width: 767.98px) {
  .modal-dialog.video16by9 {
    width: 65vw;
  }
}
.modal-dialog.video16by9 .modal-content {
  padding: 30px;
  padding-bottom: 25px;
}
.modal-dialog.contact_modal {
  width: 60vw;
}
@media (max-width: 767.98px) {
  .modal-dialog.contact_modal {
    width: 80vw;
  }
}
.modal-dialog.brochure_modal {
  width: 40vw;
}
@media (max-width: 767.98px) {
  .modal-dialog.brochure_modal {
    width: 80vw;
  }
}
.modal-dialog .modal-content {
  background-color: transparent;
  border: none;
  border-radius: 0;
  border: 3px solid black;
  background: #fed77c url(../../images/dots_game.png) left top repeat-x;
  position: relative;
}
.modal-dialog .modal-content button.close {
  width: 25px;
  height: 25px;
  background: url(../../images/close_white.svg) left top no-repeat;
  position: absolute;
  right: -40px;
  top: 0;
  text-indent: -9999px;
  border: none;
}
.modal-dialog .modal-content .modal-body {
  padding: 0;
}
@media (min-width: 992px) {
  .modal-dialog.game_modal.explication, .modal-dialog.game_modal.fin_du_jeu, .modal-dialog.game_modal.rhapsody {
    width: 1000px;
  }
}
@media (min-width: 1200px) {
  .modal-dialog.game_modal.explication, .modal-dialog.game_modal.fin_du_jeu, .modal-dialog.game_modal.rhapsody {
    width: 1230px;
  }
}
.modal-dialog.game_modal.explication .modal-content, .modal-dialog.game_modal.fin_du_jeu .modal-content, .modal-dialog.game_modal.rhapsody .modal-content {
  height: 612px;
  background: transparent;
  border: none;
}
.modal-dialog.game_modal.explication .modal-content button.close, .modal-dialog.game_modal.fin_du_jeu .modal-content button.close, .modal-dialog.game_modal.rhapsody .modal-content button.close {
  right: 13px;
  top: 50px;
  z-index: 200;
}
@media (min-width: 768px) {
  .modal-dialog.game_modal.explication .modal-content button.close, .modal-dialog.game_modal.fin_du_jeu .modal-content button.close, .modal-dialog.game_modal.rhapsody .modal-content button.close {
    right: 35px;
  }
}
@media (min-width: 992px) {
  .modal-dialog.game_modal.explication .modal-content button.close, .modal-dialog.game_modal.fin_du_jeu .modal-content button.close, .modal-dialog.game_modal.rhapsody .modal-content button.close {
    right: 70px;
  }
}
@media (min-width: 1200px) {
  .modal-dialog.game_modal.explication .modal-content button.close, .modal-dialog.game_modal.fin_du_jeu .modal-content button.close, .modal-dialog.game_modal.rhapsody .modal-content button.close {
    right: 104px;
  }
}
@media (min-width: 768px) {
  .modal-dialog.game_modal.felicitacion {
    width: 650px;
  }
}
@media (min-width: 992px) {
  .modal-dialog.game_modal.felicitacion {
    width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-dialog.game_modal.felicitacion {
    width: 1048px;
  }
}
.modal-dialog.game_modal.felicitacion .modal-content {
  height: 612px;
  background: transparent;
  border: none;
}
.modal-dialog.game_modal.felicitacion .modal-content button.close {
  right: 12px;
  top: 114px;
  z-index: 200;
}
@media (min-width: 992px) {
  .modal-dialog.game_modal.felicitacion .modal-content button.close {
    right: 37px;
  }
}
@media (min-width: 1200px) {
  .modal-dialog.game_modal.felicitacion .modal-content button.close {
    right: 104px;
  }
}

h1,
h2,
h3 {
  font-family: "wigwag-deluxe", serif;
  text-transform: uppercase;
}

h4 {
  font-weight: bold;
}

.barba_wrapper {
  z-index: 110;
  position: relative;
}

.barba_container {
  position: relative;
}

#moudon_tour {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
}

#moudon_map {
  width: 100%;
  height: calc(100vh - 200px);
  border: 3px solid black;
}

#screen_cover {
  position: absolute;
  height: 0;
  top: calc(var(--header-height) - 3px);
  left: 0;
  width: 100vw;
  z-index: -1;
}
#screen_cover svg {
  width: 100%;
  height: 100%;
  position: absolute;
}

#home_cover {
  position: absolute;
  height: calc(100% - 5vh);
  left: 0;
  width: 100vw;
  bottom: 0;
}
#home_cover svg {
  width: 100%;
  height: 100%;
  position: absolute;
}

main.main {
  width: 100vw;
  z-index: 120;
  overflow-y: scroll;
  overflow-x: hidden;
  position: relative;
  height: 100%;
  width: 100%;
  top: var(--header-height);
  left: 0;
  opacity: 0;
}
.page-template-gallery main.main {
  overflow-x: hidden;
}

main.main.accueil {
  top: 80vh;
  opacity: 1;
  overflow-y: hidden;
}

main.main.tour {
  height: 100vh;
  position: relative;
}

.wp-block-image img {
  height: auto;
}

#home_cover.accueil #cover_path_home {
  fill: #f4a09e;
}

#screen_cover.le-projet-et-moudon #cover_path {
  fill: #8aced6;
}

#screen_cover.emplacement-du-quartier #cover_path {
  fill: #f4a09e;
}

#screen_cover.galerie #cover_path {
  fill: #f8b06f;
}

#screen_cover.contacts #cover_path {
  fill: #f4a09e;
}

#screen_cover.erreur-404 #cover_path {
  fill: #fcbe04;
}

#screen_cover.appartements-disponibles #cover_path {
  fill: #5aa69e;
}

#screen_cover.tour-360 #cover_path {
  fill: #f4a09e;
}

.w-15,
.w-20,
.w-25,
.w-30,
.w-35,
.w-40,
.w-50,
.w-55,
.w-60,
.w-65,
.w-70,
.w-75,
.w-80,
.w-90 {
  padding-left: 15px;
  padding-right: 15px;
}

.placeholder {
  display: block;
  border: 3px solid black;
  width: 100%;
  height: 100%;
  background-position: left top;
  background-repeat: repeat;
}
.placeholder.orange_bg {
  background: #f8b06f;
}
.placeholder.yellow_bg {
  background: #fed77c;
}
.placeholder.green_bg {
  background: #5aa69e;
}
.placeholder.fucsia_bg {
  background: #f4a09e;
}
.placeholder.brown_bg {
  background: #c67c4e;
}
.placeholder.teal_bg {
  background: #00acb9;
}
.placeholder.skewed_small {
  background-image: url(../../images/skewed_small.png);
}
.placeholder.skewed_big {
  background-image: url(../../images/skewed_big.png);
}
.placeholder.dotted_big {
  background-image: url(../../images/dots_big.png);
  background-position: center center;
}
@media (max-width: 1199.98px) {
  .placeholder.dotted_big {
    background-image: url(../../images/dots_small.png);
  }
}
.placeholder.fucsia_placeholder {
  height: 75%;
}

.w-full-width {
  width: 100%;
}
@media (min-width: 1700px) {
  .w-full-width.static-xl {
    width: calc(100% + 6px);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Small devices */
@media (min-width: 576px) {
  .w-sm-10 {
    width: 10% !important;
  }

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

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

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

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

  .w-sm-35 {
    width: 35% !important;
  }

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

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

  .w-sm-55 {
    width: 55% !important;
  }

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

  .w-sm-65 {
    width: 65% !important;
  }

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

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

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

  .w-sm-90 {
    width: 90% !important;
  }
}
/* Medium devices */
@media (min-width: 768px) {
  .w-md-10 {
    width: 10% !important;
  }

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

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

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

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

  .w-md-35 {
    width: 35% !important;
  }

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

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

  .w-md-55 {
    width: 55% !important;
  }

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

  .w-md-65 {
    width: 65% !important;
  }

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

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

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

  .w-md-90 {
    width: 90% !important;
  }
}
/* Large devices */
@media (min-width: 992px) {
  .w-lg-10 {
    width: 10% !important;
  }

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

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

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

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

  .w-lg-35 {
    width: 35% !important;
  }

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

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

  .w-lg-55 {
    width: 55% !important;
  }

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

  .w-lg-65 {
    width: 65% !important;
  }

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

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

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

  .w-lg-90 {
    width: 90% !important;
  }
}
/* EXTRA Large devices */
@media (min-width: 1200px) {
  .w-xl-10 {
    width: 10% !important;
  }

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

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

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

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

  .w-xl-35 {
    width: 35% !important;
  }

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

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

  .w-xl-55 {
    width: 55% !important;
  }

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

  .w-xl-65 {
    width: 65% !important;
  }

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

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

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

  .w-xl-90 {
    width: 90% !important;
  }
}
/* Extra EXTRA large devices */
@media (min-width: 1700px) {
  .w-xxl-10 {
    width: 10% !important;
  }

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

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

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

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

  .w-xxl-35 {
    width: 35% !important;
  }

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

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

  .w-xxl-55 {
    width: 55% !important;
  }

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

  .w-xxl-65 {
    width: 65% !important;
  }

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

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

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

  .w-xxl-90 {
    width: 90% !important;
  }
}
.rotate_device {
  display: none;
}
@media screen and (max-width: 991.98px) and (orientation: landscape) {
  .rotate_device {
    z-index: 10000;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background: black;
    top: 0;
    left: 0;
    color: white;
    text-align: center;
  }
  .rotate_device img {
    width: 100px;
    margin-bottom: 20px;
  }
}

#cookie-notice {
  font-family: "aglet-slab", sans-serif !important;
  font-weight: normal !important;
  font-size: 0.85rem;
}

.home #cookie-notice {
  padding-bottom: 20px;
}

.page-template-confidentialite #cookie-notice {
  display: none;
}

#cn-accept-cookie {
  background: #fcbe04;
  color: black;
  font-family: "aglet-slab", sans-serif !important;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0;
}

.video_link {
  width: 100%;
  max-width: 165px;
  height: 170px;
  display: block;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  cursor: pointer;
}
.video_link.visible_start {
  opacity: 1;
}
@media (max-width: 767.98px) {
  .video_link {
    height: 165px;
  }
}
@media (max-width: 575.98px) {
  .video_link {
    height: 155px;
  }
}
.video_link span {
  position: absolute;
  color: black;
  text-transform: uppercase;
  font-family: "wigwag-bold", serif;
  text-align: center;
  font-size: 0.85rem;
  width: 100%;
  line-height: 1rem;
  bottom: 0;
  left: 0;
}

.video_link:hover {
  cursor: pointer;
}

#error_container {
  position: relative;
}
#error_container:after {
  content: "";
  display: block;
  height: 16rem;
  width: 100%;
  z-index: -1;
  left: 0;
  bottom: 0;
  background: url(../../images/top_gradient_dots.png) top center repeat;
  position: absolute;
}
#error_container .comedian {
  max-width: 405px;
}
#error_container p {
  font-weight: bolder;
  font-size: 1.2rem;
}
@media (max-width: 767.98px) {
  #error_container img {
    width: 100%;
  }
}

/* Recaptcha */
.grecaptcha-badge {
  visibility: hidden;
}

video::-webkit-media-controls-play-button {
  display: flex !important;
}

html:not(.browser-ios) .iframe_holder {
  overflow: hidden !important;
  height: auto !important;
}

/* =Progress */
.progress {
  position: fixed;
  top: 50%;
  left: 50%;
  font-size: 3vw;
  visibility: hidden;
  width: 70px;
  height: 70px;
  background: url(../../images/preloader.svg) no-repeat 50% 50%;
  z-index: 9999;
}
@media (min-width: 576px) {
  .progress {
    width: 80px;
    height: 80px;
  }
}

header {
  z-index: 200;
  width: 100%;
  height: var(--header-height);
  border: 3px solid black;
  border-bottom-width: 3px;
  top: 0;
  background: white url(../../images/header_dots.png) center 50% repeat;
  position: fixed !important;
  /*.page-template-homepage & {
      display: none;
  }*/
}
header > .container {
  z-index: 100;
}
header .navbar-brand {
  height: calc(var(--header-height) - 6px);
  padding-top: 0;
  padding-bottom: 0;
  margin-right: 0;
  position: fixed;
  top: 0;
  left: calc((100% - var(--container-width))/2);
  z-index: 200;
  height: calc(var(--header-height) * 1.6);
}
@media (max-width: 767.98px) {
  header .navbar-brand {
    height: calc(var(--header-height) * 1.4);
  }
}
@media (max-width: 575.98px) {
  header .navbar-brand {
    height: calc(var(--header-height) * 1.1);
    top: 10px;
  }
}
header .navbar-brand a {
  display: inline-block;
  height: 100%;
}
header .navbar-brand a img {
  height: 100%;
}
header .open_menu,
header .search_engine_button,
header .contact_button,
header .virtual_tour_button {
  width: 76px;
  height: 78px;
}
@media (max-width: 575.98px) {
  header .open_menu,
header .search_engine_button,
header .contact_button,
header .virtual_tour_button {
    width: 66px;
    height: 72px;
  }
}

.open_menu,
.close_menu {
  padding: 0 !important;
  border: none;
  border-radius: 0;
  background: transparent;
}

.close_menu {
  opacity: 0;
  width: 25px;
  height: 25px;
}
.close_menu img {
  width: 100%;
}

#side_bar {
  z-index: 1300;
  position: fixed;
  display: none;
  height: 100%;
  min-height: 100vh;
  right: 0;
  top: 0;
  width: 100vw;
}
@media screen and (max-height: 820px) {
  #side_bar {
    overflow-y: scroll;
  }
}
@media (min-width: 576px) {
  #side_bar {
    width: calc(((100vw - (var(--container-width)))/2) + 350px);
  }
}
@media (min-width: 768px) {
  #side_bar {
    width: calc(((100vw - (var(--container-width)))/2) + 350px);
  }
}
@media (min-width: 992px) {
  #side_bar {
    width: calc(((100vw - (var(--container-width)))/2) + 350px);
  }
}
@media (min-width: 1200px) {
  #side_bar {
    width: calc(((100vw - (var(--container-width)))/2) + 400px);
  }
}
@media (min-width: 1700px) {
  #side_bar {
    width: calc(((100vw - (var(--container-width)))/2) + 400px);
  }
}
#side_bar .menu_header .menu_header_wrapper {
  height: calc(var(--header-height) - 3px);
}
#side_bar .social a {
  width: 50px;
  height: 63px;
  opacity: 0;
}
@media (max-width: 575.98px) {
  #side_bar .social a {
    width: 44px;
    height: 58px;
  }
}
#side_bar .social a img {
  width: 100%;
}
#side_bar h3.menu_title {
  font-size: 1.5rem;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-30px);
}
#side_bar .sidebar_wrapper {
  z-index: 10;
  position: relative;
  display: none;
  opacity: 0;
  width: calc(100% - 4px);
  height: 100%;
  margin: 0 2px;
}
#side_bar .sidebar_wrapper #main_menu #menu-main-menu {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-top: 3px solid black;
}
#side_bar .sidebar_wrapper #main_menu #menu-main-menu li {
  width: 100%;
  font-size: 0.85rem;
  border-bottom: 3px solid black;
  background: #fed77c url(../../images/menu_dots.png) 20% top repeat-y;
  position: relative;
  cursor: pointer;
  /*&.menu-item-has-children {
      display: flex;
      background: $qsm_lighter_yellow url("../../images/menu_dots.png") 20% top repeat-y;


      &>a:hover {
          transform: none;
      }

      ul {
          padding: 0;

          li {
              border: none;
              padding: 0 1rem 1rem;
              background: transparent;

              &:last-child {
                  padding-bottom: 0;
              }

              a {
                  font-family: $qsm-aglet;
                  font-weight: bold;
              }

          }
      }
  }

  ul {
      list-style-type: none;

      li a {
          text-transform: none;
          font-weight: 400;
      }
  }*/
}
#side_bar .sidebar_wrapper #main_menu #menu-main-menu li a {
  font-family: "wigwag-bold", serif;
  text-transform: uppercase;
  color: black;
  font-weight: 700;
  display: inline-block;
  padding: 0.75rem 2rem;
  width: 100%;
}
#side_bar .sidebar_wrapper #main_menu #menu-main-menu li.highlight {
  background: #feebc2 url(../../images/menu_dots.png) 20% top repeat-y;
}
#side_bar .sidebar_wrapper .tour_jumps a {
  width: 136px;
  height: 136px;
  display: block;
  text-indent: -9999px;
  opacity: 0;
  transform: translateY(-15px);
}
#side_bar .sidebar_wrapper .tour_jumps a.visit45 {
  background: url(../../images/visite_45.svg) left top no-repeat;
}
#side_bar .sidebar_wrapper .tour_jumps a.visit35 {
  background: url(../../images/visite_35.svg) left top no-repeat;
}
#side_bar .sidebar_wrapper .share_block {
  font-family: "aglet-slab", sans-serif;
  font-weight: bold;
  font-size: 0.85rem;
}
#side_bar .sidebar_wrapper .share_block a {
  width: 100%;
  max-width: 100px;
  height: 100px;
}
#side_bar .sidebar_wrapper .share_block a img {
  width: 100%;
  height: 100%;
}
#side_bar .sidebar_wrapper .terms_copyright {
  font-size: 0.6rem;
  text-transform: uppercase;
}
#side_bar .sidebar_wrapper .terms_copyright .privacy {
  font-weight: bold;
}
#side_bar .sidebar_wrapper .terms_copyright a {
  color: black;
  transition: 0.1s all ease-out;
}
#side_bar .sidebar_wrapper .terms_copyright a:hover {
  transform: scale(1.15);
  transition: 0.1s all ease-out;
}
#side_bar .sidebar_wrapper .bottom_texture {
  background: url(../../images/top_gradient_dots.png) left top repeat-x;
}
#side_bar > .transition_menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  z-index: 1;
}
@media (min-width: 576px) {
  #side_bar > .transition_menu {
    width: calc(((100vw - (var(--container-width)))/2) + 350px);
  }
}
@media (min-width: 768px) {
  #side_bar > .transition_menu {
    width: calc(((100vw - (var(--container-width)))/2) + 350px);
  }
}
@media (min-width: 992px) {
  #side_bar > .transition_menu {
    width: calc(((100vw - (var(--container-width)))/2) + 350px);
  }
}
@media (min-width: 1200px) {
  #side_bar > .transition_menu {
    width: calc(((100vw - (var(--container-width)))/2) + 400px);
  }
}
@media (min-width: 1700px) {
  #side_bar > .transition_menu {
    width: calc(((100vw - (var(--container-width)))/2) + 400px);
  }
}

/*@keyframes menu-items-in {

    70% {
        transform: scale(1.5);
    }

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

@keyframes menu-items-out {


    100% {
        transform: scale(1);
    }
}*/
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* button */
::-webkit-scrollbar-button {
  background: white;
  display: none;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: black;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: grey;
  border-radius: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: white;
}

/* The track NOT covered by the handle.
::-webkit-scrollbar-track-piece {
    background: #000; 
}

/* Corner */
::-webkit-scrollbar-corner {
  background: black;
}

/* Resizer */
::-webkit-resizer {
  background: black;
}

html {
  scrollbar-width: thin;
  scrollbar-color: white;
}

body.page-template-homepage {
  background: #fcbe04;
}
body.page-template-homepage main h1 {
  font-family: "wigwag-bold", serif;
  font-size: 1.5rem;
  transform: translateY(30px);
  opacity: 0;
}

.clipped-img {
  clip-path: url(#reveal);
  width: 100%;
  height: 100%;
}

.home_content {
  width: 100vw;
  position: relative;
  z-index: 120;
  margin-top: 15vh;
  opacity: 0;
}
.home_content .sales_video {
  position: relative;
}
.home_content .sales_video:after {
  content: "";
  display: block;
  height: 24rem;
  width: 100%;
  z-index: -1;
  left: 0;
  bottom: -15rem;
  background: url(../../images/project_dots.png) left center repeat;
  opacity: 0.5;
  position: absolute;
}
.home_content .sales_video .sales_announcement {
  margin-top: -15vh;
  background: #8aced6 url(../../images/dots_game.png) left -30px repeat-x;
  text-align: center;
  font-weight: bold;
  font-size: 1.3rem;
  padding: 40px 30px;
  border-radius: 40px;
  border: 3px solid black;
  display: inline-block;
}
@media (min-width: 768px) {
  .home_content .sales_video .sales_announcement {
    font-size: 1.5rem;
  }
}
.home_content .sales_video .sales_announcement h3 {
  text-transform: uppercase;
  font-size: 1.5rem;
  font-family: "wigwag-bold", serif;
  color: black;
}
@media (min-width: 768px) {
  .home_content .sales_video .sales_announcement h3 {
    font-size: 1.6rem;
  }
}
@media (min-width: 1200px) {
  .home_content .sales_video .sales_announcement h3 {
    font-size: 1.8rem;
  }
}
.home_content .sales_video .game_notice {
  background: url(../../images/cucarda_full.svg) center center no-repeat;
  background-size: 100%;
  font-family: "wigwag-bold", serif;
  color: black;
  font-size: 1.1rem;
  line-height: 1.2rem;
  display: table-cell;
  border-radius: 100%;
  text-transform: uppercase;
  text-align: center;
  vertical-align: middle;
  width: 210px;
  height: 210px;
  transform: rotate(-10deg);
}
.home_content .sales_video .game_notice div {
  padding: 30px;
}
@media (min-width: 768px) {
  .home_content .sales_video .game_notice {
    font-size: 1.5rem;
    line-height: 1.5rem;
    width: 260px;
    height: 260px;
  }
  .home_content .sales_video .game_notice div {
    padding: 30px;
  }
}
@media (min-width: 1200px) {
  .home_content .sales_video .game_notice {
    font-size: 1.5rem;
    line-height: 1.5rem;
    width: 300px;
    height: 300px;
  }
  .home_content .sales_video .game_notice div {
    padding: 40px;
  }
}
.home_content .sales_video .decouvrez_video figure {
  display: inline-block;
  border: 3px solid black;
  position: relative;
  background: #fed77c url(../../images/dots_game.png) left -30px repeat-x;
}
.home_content .sales_video .decouvrez_video figure a {
  display: block;
  cursor: pointer;
}
.home_content .sales_video .decouvrez_video figure figcaption {
  position: absolute;
  z-index: 100;
  position: absolute;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-family: "wigwag-bold", serif;
  color: black;
  display: block;
  text-align: center;
  top: 15%;
  width: 100%;
}
@media (min-width: 768px) {
  .home_content .sales_video .decouvrez_video figure figcaption {
    font-size: 1.8rem;
  }
}
.home_content .sales_video .decouvrez_video figure img {
  margin: 30px;
  max-width: calc(100% - 60px);
  height: auto;
}
.home_content .tour_brochure {
  position: relative;
}
.home_content .tour_brochure:after {
  content: "";
  display: block;
  height: 24rem;
  width: 100%;
  z-index: -1;
  left: 0;
  bottom: -15rem;
  background: url(../../images/project_dots.png) left center repeat;
  opacity: 0.5;
  position: absolute;
}
.home_content .tour_brochure figure {
  border: 3px solid black;
  position: relative;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .home_content .tour_brochure figure {
    height: 100%;
  }
}
.home_content .tour_brochure figure img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
}
.home_content .tour_brochure figure figcaption {
  position: absolute;
  font-size: 1.8rem;
  font-family: "wigwag-bold", serif;
  color: black;
  display: block;
  text-align: center;
  top: 25%;
}
.home_content .tour_brochure figure.brochure {
  border: none;
}
.home_content .tour_brochure figure.brochure img {
  object-fit: contain;
  height: 200px;
}
.home_content .tour_brochure .row {
  margin-bottom: 30px;
}
.home_content .tour_brochure .row .block_description {
  background: white url(../../images/header_dots.png) center bottom repeat-x;
  border: 3px solid black;
  padding: 2rem;
  position: relative;
}
.home_content .tour_brochure .row .block_description h2 {
  font-size: 1.8rem;
  transform: rotate(-5deg);
}
.home_content .tour_brochure .row .block_description h2 em {
  font-style: normal;
  font-family: "wigwag-bold", serif;
  font-size: 1.5rem;
  color: #c67c4e;
  display: block;
}
.home_content .tour_brochure .row .block_description p {
  line-height: 1.8rem;
}
.home_content .tour_brochure .row .tour_brochure_one .block_description a.virtuelle_link {
  display: block;
  content: "";
  font-family: "wigwag-deluxe", serif;
  color: black;
  font-size: 3rem;
  position: absolute;
  width: 8rem;
  height: 8rem;
  right: 1rem;
  top: -1.5rem;
  background: url(../../images/explosion_tour.svg) left top no-repeat;
  z-index: 50;
  text-align: center;
  padding-top: 0.5rem;
  text-indent: -9999px;
  cursor: pointer;
}
@media (min-width: 992px) {
  .home_content .tour_brochure .row .tour_brochure_one .block_description a.virtuelle_link {
    right: -1.5rem;
  }
}
@media (max-width: 1199.98px) {
  .home_content .tour_brochure .row .tour_brochure_one figure img {
    object-position: 50% center;
  }
}
@media (max-width: 1699.98px) {
  .home_content .tour_brochure .row .tour_brochure_two figure img {
    object-position: 50% center;
  }
}
@media (max-width: 767.98px) {
  .home_content .tour_brochure .row .tour_brochure_two figure img {
    height: 390px;
    object-position: 50% 25%;
  }
}
.home_content .tour_brochure .row .index_100 {
  z-index: 100;
}
.home_content .tour_brochure .row .telechargez_link {
  font-family: "wigwag-bold", serif;
  line-height: 1.2em;
  text-transform: uppercase;
  transform: rotate(-5deg);
  position: relative;
  color: black;
  cursor: pointer;
}
.home_content .tour_brochure .row .telechargez_link:hover {
  color: #007768;
}
.home_content .tour_brochure .row .telechargez_link:before {
  display: block;
  content: "";
  font-family: "wigwag-deluxe", serif;
  color: black;
  font-size: 3rem;
  position: absolute;
  width: 8rem;
  height: 8rem;
  right: -8.5rem;
  top: -3.5rem;
  background: url(../../images/explosion_download.svg) left top no-repeat;
  z-index: 100;
  text-align: center;
  padding-top: 0.5rem;
}
.home_content .contact_home {
  position: relative;
}
.home_content .contact_home:after {
  content: "";
  display: block;
  height: 24rem;
  width: 100%;
  z-index: -1;
  left: 0;
  bottom: -15rem;
  background: url(../../images/project_dots.png) left center repeat;
  opacity: 0.5;
  position: absolute;
}
.home_content .contact_home .partner {
  border: 3px solid black;
  height: 100%;
}
.home_content .contact_home .partner a {
  color: #007768;
}
.home_content .contact_home .partner a:hover {
  color: black;
}
.home_content .contact_home .white_block {
  background: white url(../../images/header_dots.png) center bottom repeat-x;
  position: relative;
}
.home_content .contact_home .white_block p.contactez {
  text-transform: uppercase;
  font-family: wigwag-bold, serif;
  font-size: 1.5rem;
  color: #000 !important;
  position: relative;
  padding-right: 40%;
  display: block;
}
.home_content .contact_home .white_block .contact_block {
  position: absolute;
  top: -30px;
  right: -50px;
  z-index: 100;
  width: 270px;
  height: 200px;
  background: url(../../images/explosion_barnes.svg) left top no-repeat;
  padding: 25px;
}
.home_content .contact_home .white_block .contact_block h4,
.home_content .contact_home .white_block .contact_block p {
  transform: rotate(-5deg);
}
.home_content .contact_home .white_block .contact_block h4 a,
.home_content .contact_home .white_block .contact_block p a {
  color: #007768;
}
.home_content .contact_home .white_block .contact_block h4 a:hover,
.home_content .contact_home .white_block .contact_block p a:hover {
  color: black;
}
.home_content .contact_home .white_block .contact_block h4 {
  margin-bottom: 0px;
  padding-top: 10px;
}
.home_content .contact_home .aerial figure {
  border: 3px solid black;
  position: relative;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .home_content .contact_home .aerial figure {
    height: 100%;
  }
}
.home_content .contact_home .aerial figure img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
}

#home_slideshow {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  display: none;
  opacity: 0;
}
#home_slideshow .carousel-cell .carousel-text {
  width: 100%;
  position: absolute;
  z-index: 100;
  top: 60%;
  left: 50%;
  margin-left: -11rem;
}
@media (min-width: 992px) {
  #home_slideshow .carousel-cell .carousel-text {
    left: auto;
    right: calc((100vw - var(--container-width)) / 2);
    margin-left: auto;
  }
}
#home_slideshow .carousel-cell .carousel-text .carousel_container {
  position: absolute;
  top: 0;
  left: 0;
  background: white;
  border: 3px solid black;
  width: 22rem;
  height: 5rem;
}
@media (min-width: 768px) {
  #home_slideshow .carousel-cell .carousel-text .carousel_container {
    left: auto;
    right: 0;
    width: 26rem;
    height: 6rem;
  }
}
@media (min-width: 1700px) {
  #home_slideshow .carousel-cell .carousel-text .carousel_container {
    width: 31rem;
    height: 8rem;
  }
}
#home_slideshow .carousel-cell .carousel-text .carousel_container .carousel_text_wrapper {
  text-transform: uppercase;
  padding-left: 1em;
  padding-right: 1em;
  font-size: 1.2rem;
  line-height: 1.4rem;
}
@media (min-width: 768px) {
  #home_slideshow .carousel-cell .carousel-text .carousel_container .carousel_text_wrapper {
    font-size: 1.3rem;
    line-height: 1.5rem;
  }
}
@media (min-width: 992px) {
  #home_slideshow .carousel-cell .carousel-text .carousel_container .carousel_text_wrapper {
    font-size: 1.5rem;
    line-height: 1.7rem;
  }
}
@media (min-width: 1700px) {
  #home_slideshow .carousel-cell .carousel-text .carousel_container .carousel_text_wrapper {
    font-size: 1.8rem;
    line-height: 2.2rem;
    padding: 1em;
  }
}
#home_slideshow .carousel-cell .carousel-text .carousel_container .carousel_text_wrapper .carousel_title {
  font-family: "wigwag-deluxe", serif;
}
#home_slideshow .carousel-cell .carousel-text .carousel_container .carousel_text_wrapper .carousel_desc {
  color: #c67c4e;
  font-family: "wigwag-bold", serif;
  font-size: 0.85em;
}

.legal_home {
  display: none;
}

.page-template-homepage .legal_home,
.page-template-distribution .legal_home {
  display: block;
  width: 100vw;
  position: fixed;
  background: black;
  bottom: 0;
  text-align: center;
  font-size: 0.8rem;
  padding: 0.5rem 0;
  z-index: 100001;
}
.page-template-homepage .legal_home a,
.page-template-distribution .legal_home a {
  color: white;
}
.page-template-homepage .legal_home a:hover,
.page-template-distribution .legal_home a:hover {
  color: #fcbe04;
}

.page-template-distribution .legal_home {
  display: block;
}

#home_slideshow button {
  display: none;
}
#home_slideshow figure.carousel-cell {
  width: 100vw;
  height: 100vh;
  position: relative;
}
#home_slideshow figure.carousel-cell img {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.response_OK {
  display: none;
}

.wpcf7-form.sent .formcf7_container {
  display: none;
}
.wpcf7-form.sent .response_OK {
  display: block;
}

.wpcf7-form.sent .response_OK a {
  color: #007768 !important;
  text-decoration: underline;
}

.wpcf7-form.sent .response_OK a:hover {
  color: black !important;
}

body.single-tour_feature {
  background: #fed77c;
}
body.single-tour_feature main.tour_feature {
  height: auto;
  width: 100%;
  padding: 25px;
}
@media (min-width: 768px) {
  body.single-tour_feature main.tour_feature {
    height: 100vh;
  }
}
body.single-tour_feature main.tour_feature .feature_photo {
  width: 100%;
  margin-top: 15px;
  border: 3px solid black;
  height: 100%;
  background-position: center;
  background-size: cover;
  min-height: 450px;
}
@media (min-width: 768px) {
  body.single-tour_feature main.tour_feature .feature_photo {
    width: 57%;
    margin-right: 15px;
    margin-top: 0;
    min-height: auto;
  }
}
body.single-tour_feature main.tour_feature .feature_right {
  margin-bottom: 15px;
  width: 100%;
}
@media (min-width: 768px) {
  body.single-tour_feature main.tour_feature .feature_right {
    width: 43%;
    margin-left: 15px;
    margin-bottom: 0;
  }
}
body.single-tour_feature main.tour_feature .feature_right .feature_description {
  padding: 20px;
  position: relative;
  letter-spacing: 0;
  background: white;
  border: 3px solid black;
}
body.single-tour_feature main.tour_feature .feature_right .feature_description h3 {
  text-transform: uppercase;
  line-height: 1.8rem;
  padding-right: 5vw;
  transform: rotate(-5deg);
}
body.single-tour_feature main.tour_feature .feature_right .feature_description h3 p {
  margin-bottom: 0;
}
body.single-tour_feature main.tour_feature .feature_right .feature_description h3 em {
  font-style: normal;
  color: #c67c4e;
  font-size: 1.5rem;
  font-weight: 1.3rem;
  font-family: "wigwag-bold", serif;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  body.single-tour_feature main.tour_feature .feature_right .feature_description h3 em {
    font-size: 1.2rem;
  }
}
body.single-tour_feature main.tour_feature .feature_right .feature_description .popup_text {
  line-height: 1.2rem;
  font-weight: 500;
  color: black;
}
@media (min-width: 768px) {
  body.single-tour_feature main.tour_feature .feature_right .feature_description .popup_text {
    line-height: 1.6rem;
  }
}
body.single-tour_feature main.tour_feature .feature_right .feature_description .feature_icon {
  position: absolute;
  display: block;
  width: 18vw;
  height: 18vw;
  right: -4vw;
  top: -4vw;
  z-index: 1;
}
@media (min-width: 576px) {
  body.single-tour_feature main.tour_feature .feature_right .feature_description .feature_icon {
    width: 14vw;
    height: 14vw;
    right: -3vw;
    top: -3vw;
  }
}
@media (min-width: 768px) {
  body.single-tour_feature main.tour_feature .feature_right .feature_description .feature_icon {
    width: 9vw;
    height: 9vw;
    right: -2vw;
    top: -2vw;
  }
}
@media (min-width: 1200px) {
  body.single-tour_feature main.tour_feature .feature_right .feature_description .feature_icon {
    width: 7vw;
    height: 7vw;
    right: -1.5vw;
    top: -1.5vw;
  }
}
@media (min-width: 1700px) {
  body.single-tour_feature main.tour_feature .feature_right .feature_description .feature_icon {
    width: 6vw;
    height: 6vw;
    right: -1vw;
    top: -1vw;
  }
}
body.single-tour_feature main.tour_feature .feature_right .feature_description .feature_icon img {
  width: 100%;
}
body.single-tour_feature main.tour_feature .feature_right .feature_cover {
  background: #00acb9 url(../../images/popup_dots.png) left top repeat;
  width: 100%;
  height: 100%;
  border: 3px solid black;
  margin-top: 30px;
}

body.single-point_d_information {
  background: #fed77c;
}
body.single-point_d_information main.info_point {
  height: auto;
  width: 100%;
  padding: 25px;
}
body.single-point_d_information main.info_point .point_photo {
  width: 100%;
  margin-top: 15px;
  border: 3px solid black;
  background-position: center;
  background-size: cover;
  height: 400px;
}
@media (min-width: 768px) {
  body.single-point_d_information main.info_point .point_photo {
    margin-right: 15px;
    margin-top: 0;
    height: 100%;
  }
}
body.single-point_d_information main.info_point .point_right {
  margin-bottom: 15px;
  width: 100%;
}
@media (min-width: 768px) {
  body.single-point_d_information main.info_point .point_right {
    margin-left: 15px;
    margin-bottom: 0;
    height: 100%;
  }
}
body.single-point_d_information main.info_point .point_right .point_description {
  padding: 20px;
  height: 100%;
  position: relative;
  letter-spacing: 0;
  background: white;
  border: 3px solid black;
  width: 100%;
}
@media (max-width: 767.98px) {
  body.single-point_d_information main.info_point .point_right .point_description {
    height: auto;
  }
}
body.single-point_d_information main.info_point .point_right .point_description h3 {
  text-transform: uppercase;
  line-height: 1.8rem;
  padding-right: 5vw;
  padding-bottom: 0.5vw;
  transform: rotate(-5deg);
}
body.single-point_d_information main.info_point .point_right .point_description h3 p {
  margin-bottom: 0;
}
body.single-point_d_information main.info_point .point_right .point_description h3 em {
  font-style: normal;
  color: #c67c4e;
  font-size: 1.5rem;
  font-weight: 1.3rem;
  font-family: "wigwag-bold", serif;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  body.single-point_d_information main.info_point .point_right .point_description h3 em {
    font-size: 1.2rem;
  }
}
body.single-point_d_information main.info_point .point_right .point_description .popup_text {
  line-height: 1.2rem;
  font-weight: 500;
  color: black;
}
@media (min-width: 768px) {
  body.single-point_d_information main.info_point .point_right .point_description .popup_text {
    line-height: 1.6rem;
  }
}
body.single-point_d_information main.info_point .point_right .feature_cover {
  background: #00acb9 url(../../images/popup_dots.png) left top repeat;
  width: 100%;
  height: 100%;
  border: 3px solid black;
  margin-top: 30px;
}

.popup .main-carousel {
  height: 100%;
}
@media (max-width: 767.98px) {
  .popup .main-carousel {
    overflow: hidden;
  }
}
.popup .main-carousel .flickity-viewport {
  height: 100% !important;
}
.popup .main-carousel .flickity-viewport .carousel-cell {
  width: calc(100% + 6px);
  height: 100%;
  margin: auto;
  background: white;
  text-align: center;
  overflow: hidden;
}
.popup .main-carousel .flickity-viewport .carousel-cell img {
  border: none;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}

.le-projet-et-moudon #project_container {
  position: relative;
}
.le-projet-et-moudon #project_container:after {
  content: "";
  display: block;
  height: 16rem;
  width: 100%;
  z-index: -1;
  left: 0;
  bottom: 0;
  background: url(../../images/top_gradient_dots.png) top center repeat;
  position: absolute;
}
.le-projet-et-moudon #project_container h1 {
  font-size: 2rem;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .le-projet-et-moudon #project_container h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 992px) {
  .le-projet-et-moudon #project_container h1 {
    font-size: 3rem;
  }
}
.le-projet-et-moudon #project_container figure {
  border: 3px solid black;
  position: relative;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .le-projet-et-moudon #project_container figure {
    height: 100%;
  }
}
.le-projet-et-moudon #project_container figure img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
}
.le-projet-et-moudon #project_container figure figcaption {
  position: absolute;
}
.le-projet-et-moudon #project_container .moudon_comune {
  position: relative;
}
.le-projet-et-moudon #project_container .moudon_comune .row {
  margin-bottom: 30px;
}
.le-projet-et-moudon #project_container .moudon_comune .row .moudon_comune_main figure {
  position: relative;
}
.le-projet-et-moudon #project_container .moudon_comune .row .moudon_comune_main figure img {
  height: 390px;
}
@media (max-width: 991.98px) {
  .le-projet-et-moudon #project_container .moudon_comune .row .moudon_comune_main figure img {
    height: 300px;
    object-position: 30% center;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .le-projet-et-moudon #project_container .moudon_comune .row .moudon_comune_main figure img {
    object-position: 20% center;
    height: 350px;
  }
}
.le-projet-et-moudon #project_container .moudon_comune .row .moudon_comune_main figcaption {
  position: absolute;
  display: block;
  top: -6rem;
  left: 4rem;
  width: 14rem;
  height: 10rem;
}
@media (max-width: 767.98px) {
  .le-projet-et-moudon #project_container .moudon_comune .row .moudon_comune_main figcaption {
    left: 2rem;
  }
}
.le-projet-et-moudon #project_container .moudon_comune .row .moudon_comune_main figcaption .balloon_title {
  width: 100%;
  height: 100%;
  background: url(../../images/titles_balloon.svg) top left no-repeat;
}
.le-projet-et-moudon #project_container .moudon_comune .row .moudon_comune_main figcaption .balloon_title h2 {
  font-size: 1.8rem;
  line-height: 1.8rem;
  transform: rotate(-5deg);
}
.le-projet-et-moudon #project_container .moudon_comune .row .moudon_comune_main figcaption .balloon_title h2 em {
  font-style: normal;
  font-family: "wigwag-bold", serif;
  color: #c67c4e;
  font-size: 1.4rem;
}
.le-projet-et-moudon #project_container .moudon_comune .row .moudon_comune_one figure img {
  height: 335px;
}
.le-projet-et-moudon #project_container .moudon_comune .row .block_description {
  background: white url(../../images/header_dots.png) center bottom repeat-x;
  border: 3px solid black;
  padding: 2rem;
  position: relative;
}
.le-projet-et-moudon #project_container .moudon_comune .row .block_description h2 {
  font-size: 1.8rem;
  transform: rotate(-5deg);
}
.le-projet-et-moudon #project_container .moudon_comune .row .block_description h2 em {
  font-style: normal;
  font-family: "wigwag-bold", serif;
  font-size: 1.5rem;
  color: #c67c4e;
  display: block;
}
.le-projet-et-moudon #project_container .moudon_comune .row .block_description p {
  line-height: 1.8rem;
}
.le-projet-et-moudon #project_container .moudon_comune .row .moudon_comune_one .block_description:before {
  display: block;
  content: "01";
  font-family: "wigwag-deluxe", serif;
  color: black;
  font-size: 3rem;
  position: absolute;
  width: 8rem;
  height: 8rem;
  right: -1.5rem;
  top: -1.5rem;
  background: url(../../images/explosion_right.svg) left top no-repeat;
  z-index: 50;
  text-align: center;
  padding-top: 0.5rem;
}
@media (max-width: 1199.98px) {
  .le-projet-et-moudon #project_container .moudon_comune .row .moudon_comune_one figure img {
    object-position: 75% center;
  }
}
@media (max-width: 1699.98px) {
  .le-projet-et-moudon #project_container .moudon_comune .row .moudon_comune_two figure img {
    object-position: 75% center;
  }
}
@media (max-width: 767.98px) {
  .le-projet-et-moudon #project_container .moudon_comune .row .moudon_comune_two figure img {
    height: 390px;
    object-position: 75% 25%;
  }
}
.le-projet-et-moudon #project_container .moudon_comune .row .moudon_comune_three .block_description:before {
  display: block;
  content: "02";
  font-family: "wigwag-deluxe", serif;
  color: black;
  font-size: 3rem;
  position: absolute;
  width: 8rem;
  height: 8rem;
  left: -1.5rem;
  top: -1.5rem;
  background: url(../../images/explosion_left.svg) left top no-repeat;
  z-index: 50;
  text-align: center;
  padding-top: 0.5rem;
}
.le-projet-et-moudon #project_container .moudon_project {
  position: relative;
}
.le-projet-et-moudon #project_container .moudon_project:after {
  content: "";
  display: block;
  height: 24rem;
  width: 100%;
  z-index: -1;
  left: 0;
  bottom: -18rem;
  background: url(../../images/project_dots.png) left center repeat;
  opacity: 0.5;
  position: absolute;
}
.le-projet-et-moudon #project_container .moudon_project .moudon_project_main figure img {
  height: 335px;
}
@media (max-width: 991.98px) {
  .le-projet-et-moudon #project_container .moudon_project .moudon_project_main figure img {
    height: 270px;
    object-position: 50% center;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .le-projet-et-moudon #project_container .moudon_project .moudon_project_main figure img {
    object-position: 20% center;
    height: 300px;
  }
}
.le-projet-et-moudon #project_container .moudon_project .moudon_project_main figcaption {
  position: absolute;
  display: block;
  top: -6rem;
  right: 4rem;
  width: 14rem;
  height: 10rem;
}
@media (max-width: 767.98px) {
  .le-projet-et-moudon #project_container .moudon_project .moudon_project_main figcaption {
    right: 2rem;
  }
}
.le-projet-et-moudon #project_container .moudon_project .moudon_project_main figcaption .balloon_title {
  width: 100%;
  height: 100%;
  background: url(../../images/titles_balloon_right.svg) top left no-repeat;
}
.le-projet-et-moudon #project_container .moudon_project .moudon_project_main figcaption .balloon_title h2 {
  line-height: 1.8rem;
  transform: rotate(5deg);
}
.le-projet-et-moudon #project_container .moudon_project .moudon_project_main figcaption .balloon_title h2 em {
  font-style: normal;
  font-family: "wigwag-bold", serif;
  color: #c67c4e;
  font-size: 1.5rem;
}
.le-projet-et-moudon #project_container .moudon_project .project_texts .explosion {
  display: block;
  background: url(../../images/titles_explosion.svg) center center no-repeat;
  background-size: 270px;
  height: 230px;
}
@media (min-width: 768px) {
  .le-projet-et-moudon #project_container .moudon_project .project_texts .explosion {
    height: auto;
    background-size: auto;
  }
}
.le-projet-et-moudon #project_container .moudon_project .project_texts .explosion p {
  font-size: 1.2rem;
}
.le-projet-et-moudon #project_container .moudon_project .project_texts .explosion h2 {
  transform: rotate(5deg);
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .le-projet-et-moudon #project_container .moudon_project .project_texts .explosion h2 {
    font-size: 1.3rem;
  }
}
@media (min-width: 1200px) {
  .le-projet-et-moudon #project_container .moudon_project .project_texts .explosion h2 {
    font-size: 1.5rem;
  }
}
.le-projet-et-moudon #project_container .moudon_project .project_texts .explosion h2.left {
  transform: rotate(-5deg);
}
.le-projet-et-moudon #project_container .moudon_project .project_texts .explosion h2 em {
  font-style: normal;
  font-size: 1rem;
  color: #c67c4e;
  display: block;
}
@media (min-width: 1200px) {
  .le-projet-et-moudon #project_container .moudon_project .project_texts .explosion h2 em {
    font-size: 1.1rem;
  }
}
.le-projet-et-moudon #project_container .moudon_project .feature_block {
  margin-bottom: 30px;
}
.le-projet-et-moudon #project_container .moudon_project .feature_block figure {
  position: relative;
}
.le-projet-et-moudon #project_container .moudon_project .feature_block figure figcaption {
  position: static;
  background: white url(../../images/project_dots_small.png) center bottom repeat-x;
  border-top: 3px solid black;
}
@media (min-width: 1200px) {
  .le-projet-et-moudon #project_container .moudon_project .feature_block figure figcaption {
    position: absolute;
  }
}
@media (min-width: 1200px) {
  .le-projet-et-moudon #project_container .moudon_project .feature_block figure figcaption {
    border: 3px solid black;
  }
}
@media (min-width: 1200px) {
  .le-projet-et-moudon #project_container .moudon_project .feature_block figure figcaption.w-100 {
    width: calc(100% + 6px) !important;
    left: -3px;
  }
  .le-projet-et-moudon #project_container .moudon_project .feature_block figure figcaption.f_bottom {
    bottom: -3px;
  }
  .le-projet-et-moudon #project_container .moudon_project .feature_block figure figcaption.f_top {
    top: -3px;
  }
  .le-projet-et-moudon #project_container .moudon_project .feature_block figure figcaption.f_right {
    right: -3px;
  }
  .le-projet-et-moudon #project_container .moudon_project .feature_block figure figcaption.f_left {
    left: -3px;
  }
}
@media (min-width: 1200px) and (max-width: 1699.98px) {
  .le-projet-et-moudon #project_container .moudon_project .feature_block figure figcaption.static-xl {
    position: static;
    border: none;
    border-top: 3px solid black;
  }
}
.le-projet-et-moudon #project_container .moudon_project .feature_block figure figcaption h3 {
  font-size: 1.8rem;
  margin-bottom: 0;
  transform: rotate(-5deg);
}
.le-projet-et-moudon #project_container .moudon_project .feature_block figure figcaption h3.large_text {
  font-size: 2.8rem;
  line-height: 2.8rem;
}
.le-projet-et-moudon #project_container .moudon_project .feature_block figure figcaption h3 em {
  font-style: normal;
  font-family: "wigwag-bold", serif;
  font-size: 1.3rem;
  color: #c67c4e;
  display: block;
}
.le-projet-et-moudon #project_container .moudon_project .feature_block figure figcaption p {
  font-size: 0.9rem;
  padding-top: 15px;
}
@media (min-width: 1200px) {
  .le-projet-et-moudon #project_container .moudon_project .feature_block figure img {
    height: 100%;
  }
}
@media (max-width: 767.98px) {
  .le-projet-et-moudon #project_container .moudon_project .feature_block figure img {
    object-fit: cover;
    object-position: center 50%;
    max-width: 100%;
    width: auto;
    height: auto;
  }
}

.contacts #contacts_container {
  position: relative;
}
.contacts #contacts_container:after {
  content: "";
  display: block;
  height: 16rem;
  width: 100%;
  z-index: -1;
  left: 0;
  bottom: 0;
  background: url(../../images/top_gradient_dots.png) top center repeat;
  position: absolute;
}
.contacts #contacts_container h1 {
  font-size: 2rem;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .contacts #contacts_container h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 992px) {
  .contacts #contacts_container h1 {
    font-size: 3rem;
  }
}
.contacts #contacts_container .block_barnes .brokers {
  line-height: 1.2rem;
}
.contacts #contacts_container .block_barnes .brokers img {
  max-width: 100%;
  height: auto;
  border: 3px solid black;
}
@media (max-width: 767.98px) {
  .contacts #contacts_container .block_barnes .brokers img {
    max-width: 250px;
  }
}
.contacts #contacts_container .moudon_partners .row,
.contacts #contacts_container .moudon_contacts .row {
  margin-bottom: 30px;
}
.contacts #contacts_container .moudon_partners .row .partner,
.contacts #contacts_container .moudon_contacts .row .partner {
  border: 3px solid black;
  height: 100%;
}
.contacts #contacts_container .moudon_partners .row .partner a,
.contacts #contacts_container .moudon_contacts .row .partner a {
  color: #007768;
}
.contacts #contacts_container .moudon_partners .row .partner a:hover,
.contacts #contacts_container .moudon_contacts .row .partner a:hover {
  color: black;
}
.contacts #contacts_container .moudon_partners .row .white_block,
.contacts #contacts_container .moudon_contacts .row .white_block {
  background: white url(../../images/header_dots.png) center bottom repeat-x;
}
.contacts #contacts_container .moudon_partners .row .light_yellow_block,
.contacts #contacts_container .moudon_contacts .row .light_yellow_block {
  background: #fed77c;
}
.contacts #contacts_container .moudon_partners .row .light_teal_block,
.contacts #contacts_container .moudon_contacts .row .light_teal_block {
  background: #8aced6;
}
.contacts #contacts_container .moudon_partners .row .partner_role,
.contacts #contacts_container .moudon_contacts .row .partner_role {
  position: absolute;
  display: block;
  top: -3rem;
  left: 3rem;
  width: 13rem;
  height: 9.5rem;
  background: url(../../images/titles_balloon.svg) top left no-repeat;
}
.contacts #contacts_container .moudon_partners .row .partner_role h3,
.contacts #contacts_container .moudon_contacts .row .partner_role h3 {
  font-size: 1.5rem;
  line-height: 1.5rem;
  transform: rotate(-5deg);
}
.contacts #contacts_container .moudon_partners .row .partner_role h3 em,
.contacts #contacts_container .moudon_contacts .row .partner_role h3 em {
  font-style: normal;
  font-family: "wigwag-bold", serif;
  color: #c67c4e;
  font-size: 1.25rem;
}
.contacts #contacts_container .moudon_partners .row .partner_role.smaller h3,
.contacts #contacts_container .moudon_contacts .row .partner_role.smaller h3 {
  font-size: 1.2rem;
  line-height: 1.3rem;
}
.contacts #contacts_container .moudon_partners .row .partner_role.smaller h3 em,
.contacts #contacts_container .moudon_contacts .row .partner_role.smaller h3 em {
  font-style: normal;
  font-size: 1rem;
}
.contacts #contacts_container .moudon_partners .row p,
.contacts #contacts_container .moudon_contacts .row p {
  font-size: 0.95rem;
  line-height: 1.6rem;
}
.contacts #contacts_container .moudon_partners .row .partner_logo,
.contacts #contacts_container .moudon_contacts .row .partner_logo {
  max-width: 150px;
  max-height: 100px;
  width: 100%;
  height: 100%;
}
@media (max-width: 575.98px) {
  .contacts #contacts_container .moudon_partners .row .partner_logo,
.contacts #contacts_container .moudon_contacts .row .partner_logo {
    width: 100px;
  }
}
@media (min-width: 1200px) {
  .contacts #contacts_container .moudon_partners .row .partner_logo,
.contacts #contacts_container .moudon_contacts .row .partner_logo {
    max-width: none;
    max-height: none;
  }
}
.contacts #contacts_container .moudon_partners .row .partner_logo.logo_contact,
.contacts #contacts_container .moudon_contacts .row .partner_logo.logo_contact {
  max-width: 230px;
}
@media (max-width: 1699.98px) {
  .contacts #contacts_container .moudon_partners .row .partner_logo.logo_contact,
.contacts #contacts_container .moudon_contacts .row .partner_logo.logo_contact {
    max-width: 150px;
    max-height: 100px;
  }
}
@media (max-width: 767.98px) {
  .contacts #contacts_container .moudon_partners .row .partner_logo.logo_contact,
.contacts #contacts_container .moudon_contacts .row .partner_logo.logo_contact {
    width: 150px;
    max-height: 100px;
  }
}
.contacts #contacts_container .moudon_partners .row .partner_logo img,
.contacts #contacts_container .moudon_contacts .row .partner_logo img {
  width: 100%;
  height: 100%;
}
@media (max-width: 767.98px) {
  .contacts #contacts_container .moudon_partners .row .partner_1 .partner_logo,
.contacts #contacts_container .moudon_contacts .row .partner_1 .partner_logo {
    width: 137px;
    height: 120px;
    max-width: none;
    max-height: none;
  }
}
@media (min-width: 1200px) {
  .contacts #contacts_container .moudon_partners .row .partner_1 .partner_logo,
.contacts #contacts_container .moudon_contacts .row .partner_1 .partner_logo {
    width: 137px;
    height: 100px;
  }
}
@media (min-width: 1700px) {
  .contacts #contacts_container .moudon_partners .row .partner_1 .partner_logo,
.contacts #contacts_container .moudon_contacts .row .partner_1 .partner_logo {
    width: 137px;
    height: 130px;
  }
}
@media (max-width: 767.98px) {
  .contacts #contacts_container .moudon_partners .row .partner_2 .partner_logo,
.contacts #contacts_container .moudon_contacts .row .partner_2 .partner_logo {
    width: 195px;
    height: 28px;
    max-width: none;
    max-height: none;
  }
}
@media (min-width: 992px) {
  .contacts #contacts_container .moudon_partners .row .partner_2 .partner_logo,
.contacts #contacts_container .moudon_contacts .row .partner_2 .partner_logo {
    width: 182px;
    height: 28px;
    max-width: none;
    max-height: none;
  }
}
@media (min-width: 1200px) {
  .contacts #contacts_container .moudon_partners .row .partner_2 .partner_logo,
.contacts #contacts_container .moudon_contacts .row .partner_2 .partner_logo {
    width: 177px;
    height: 28px;
  }
}
@media (min-width: 1700px) {
  .contacts #contacts_container .moudon_partners .row .partner_2 .partner_logo,
.contacts #contacts_container .moudon_contacts .row .partner_2 .partner_logo {
    width: 250px;
    height: 34px;
  }
}
@media (max-width: 767.98px) {
  .contacts #contacts_container .moudon_partners .row .partner_3 .partner_logo,
.contacts #contacts_container .moudon_contacts .row .partner_3 .partner_logo {
    width: 130px;
    height: 87px;
    max-width: none;
    max-height: none;
  }
}
@media (min-width: 768px) {
  .contacts #contacts_container .moudon_partners .row .partner_3 .partner_logo,
.contacts #contacts_container .moudon_contacts .row .partner_3 .partner_logo {
    width: 115px;
    height: 76px;
  }
}
@media (min-width: 1700px) {
  .contacts #contacts_container .moudon_partners .row .partner_3 .partner_logo,
.contacts #contacts_container .moudon_contacts .row .partner_3 .partner_logo {
    width: 150px;
    height: 100px;
  }
}
@media (max-width: 767.98px) {
  .contacts #contacts_container .moudon_partners .row .partner_4 .partner_logo,
.contacts #contacts_container .moudon_contacts .row .partner_4 .partner_logo {
    width: 150px;
    height: 80px;
    max-width: none;
    max-height: none;
  }
}
@media (min-width: 768px) {
  .contacts #contacts_container .moudon_partners .row .partner_4 .partner_logo,
.contacts #contacts_container .moudon_contacts .row .partner_4 .partner_logo {
    width: 150px;
    height: 80px;
  }
}
@media (min-width: 1200px) {
  .contacts #contacts_container .moudon_partners .row .partner_4 .partner_logo,
.contacts #contacts_container .moudon_contacts .row .partner_4 .partner_logo {
    width: 150px;
    height: 80px;
  }
}
@media (min-width: 1700px) {
  .contacts #contacts_container .moudon_partners .row .partner_4 .partner_logo,
.contacts #contacts_container .moudon_contacts .row .partner_4 .partner_logo {
    width: 189px;
    height: 100px;
  }
}
@media (max-width: 767.98px) {
  .contacts #contacts_container .moudon_partners .row .partner_5 .partner_logo,
.contacts #contacts_container .moudon_contacts .row .partner_5 .partner_logo {
    width: 228px;
    height: 60px;
    max-width: none;
    max-height: none;
  }
}
@media (min-width: 768px) {
  .contacts #contacts_container .moudon_partners .row .partner_5 .partner_logo,
.contacts #contacts_container .moudon_contacts .row .partner_5 .partner_logo {
    width: 175px;
    height: 42px;
    max-width: none;
    max-height: none;
  }
}
@media (min-width: 1200px) {
  .contacts #contacts_container .moudon_partners .row .partner_5 .partner_logo,
.contacts #contacts_container .moudon_contacts .row .partner_5 .partner_logo {
    width: 175px;
    height: 68px;
  }
}
@media (min-width: 1700px) {
  .contacts #contacts_container .moudon_partners .row .partner_5 .partner_logo,
.contacts #contacts_container .moudon_contacts .row .partner_5 .partner_logo {
    width: 260px;
    height: 100px;
  }
}
@media (max-width: 767.98px) {
  .contacts #contacts_container .moudon_partners .row .partner_7 .partner_logo,
.contacts #contacts_container .moudon_contacts .row .partner_7 .partner_logo {
    width: 130px;
    height: 87px;
    max-width: none;
    max-height: none;
  }
}
@media (min-width: 1200px) {
  .contacts #contacts_container .moudon_partners .row .partner_7 .partner_logo,
.contacts #contacts_container .moudon_contacts .row .partner_7 .partner_logo {
    width: 140px;
    height: 58px;
  }
}
@media (min-width: 1700px) {
  .contacts #contacts_container .moudon_partners .row .partner_7 .partner_logo,
.contacts #contacts_container .moudon_contacts .row .partner_7 .partner_logo {
    width: 163px;
    height: 100px;
  }
}
.contacts #contacts_container .moudon_partners .row .moudon_comune_one figure img,
.contacts #contacts_container .moudon_contacts .row .moudon_comune_one figure img {
  height: 335px;
}
.contacts #contacts_container .moudon_partners .row .block_description,
.contacts #contacts_container .moudon_contacts .row .block_description {
  background: white;
  border: 3px solid black;
  padding: 30px;
  position: relative;
}
.contacts #contacts_container .moudon_partners .row .block_description h2,
.contacts #contacts_container .moudon_contacts .row .block_description h2 {
  font-size: 1.8rem;
  transform: rotate(-5deg);
}
.contacts #contacts_container .moudon_partners .row .block_description h2 em,
.contacts #contacts_container .moudon_contacts .row .block_description h2 em {
  font-style: normal;
  font-family: "wigwag-bold", serif;
  font-size: 1.5rem;
  color: #c67c4e;
  display: block;
}
.contacts #contacts_container .moudon_partners .row .block_description p,
.contacts #contacts_container .moudon_contacts .row .block_description p {
  line-height: 1.8rem;
}
.contacts #contacts_container .moudon_contacts {
  position: relative;
}
.contacts #contacts_container .moudon_contacts:after {
  content: "";
  display: block;
  height: 24rem;
  width: 100%;
  z-index: -1;
  left: 0;
  bottom: -18rem;
  background: url(../../images/project_dots.png) left center repeat;
  opacity: 0.4;
  position: absolute;
}
.contacts #contacts_container .moudon_contacts .contact_block {
  position: relative;
  width: 270px;
  height: 200px;
  background: url(../../images/explosion_barnes.svg) left top no-repeat;
  padding: 30px;
}
.contacts #contacts_container .moudon_contacts .contact_block h4,
.contacts #contacts_container .moudon_contacts .contact_block p {
  transform: rotate(-5deg);
}
.contacts #contacts_container .moudon_contacts .contact_block h4 a,
.contacts #contacts_container .moudon_contacts .contact_block p a {
  color: #007768;
}
.contacts #contacts_container .moudon_contacts .contact_block h4 a:hover,
.contacts #contacts_container .moudon_contacts .contact_block p a:hover {
  color: black;
}
.contacts #contacts_container .moudon_contacts .contact_block h4 {
  margin-bottom: 0px;
  padding-top: 10px;
}

.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 textarea {
  padding: 0.25rem 0.5rem;
  width: 100%;
  border: 3px solid black;
  height: 2.5rem;
  background: #B6E0E7;
  margin-bottom: 0.75rem;
  border-radius: 0;
}
.wpcf7 textarea {
  height: 150px;
}
.wpcf7 span.wpcf7-not-valid-tip {
  padding-left: 0.5rem;
  padding-bottom: 1rem;
  padding-top: 0;
}
.wpcf7 .wpcf7-response-output {
  border: none !important;
  margin: 0 auto !important;
  padding: 1rem !important;
  margin-top: 1rem !important;
  width: 100% !important;
}
.wpcf7 .wpcf7-validation-errors {
  background: #dc3232 !important;
  color: white !important;
  font-weight: bold !important;
}
.wpcf7 label {
  display: none;
}
.wpcf7 .acceptance-concours label {
  display: block;
}
.wpcf7 button {
  text-indent: -9999px;
  display: block;
  border: none;
  width: 70px;
  height: 70px;
  background: transparent url(../../images/button_send.svg) left top no-repeat;
  transition: 0.2s all ease-out;
}
.wpcf7 button:hover {
  transform: scale(1.2);
  transition: 0.2s all ease-out;
}

.invitation_rendez_vous {
  text-transform: uppercase;
  font-family: "wigwag-bold", serif;
  font-size: 1.5rem;
  color: black !important;
  position: relative;
  padding-right: 70px;
  display: block;
}
.invitation_rendez_vous:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  height: 70px;
  background: url(../../images/button_calendar.svg) left top no-repeat;
}
.invitation_rendez_vous .presence {
  font-family: "aglet-slab", sans-serif;
  text-transform: none;
}
.invitation_rendez_vous .presence strong {
  color: #c67c4e;
}

.galerie h1 {
  font-size: 2rem;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .galerie h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 992px) {
  .galerie h1 {
    font-size: 3rem;
  }
}
.galerie .moudon_gallery {
  position: relative;
  height: calc(100vh - var(--header-height));
}
.galerie .moudon_gallery:after {
  content: "";
  display: block;
  height: 16rem;
  width: 100%;
  z-index: -1;
  left: 0;
  bottom: 0;
  background: url(../../images/top_gradient_dots.png) top center repeat;
  position: absolute;
}
.galerie .moudon_gallery .moudon_gallery .row {
  margin-bottom: 30px;
}
.galerie .moudon_gallery .gallery_intro {
  background: #fed77c;
  padding: 2rem;
  border: 3px solid black;
  position: relative;
}
.galerie .moudon_gallery .gallery_intro .quality_title {
  position: absolute;
  display: block;
  top: -5rem;
  left: 3rem;
  width: 15rem;
  height: 11rem;
  background: url(../../images/titles_balloon.svg) top left no-repeat;
}
.galerie .moudon_gallery .gallery_intro .quality_title h3 {
  font-size: 1.5rem;
  line-height: 1.6rem;
  transform: rotate(-5deg);
}
.galerie .moudon_gallery .gallery_intro .quality_title h3 em {
  font-family: "wigwag-bold", serif;
  color: #c67c4e;
  font-size: 1.25rem;
  display: block;
  font-style: normal;
}
.galerie .carousel_content {
  width: 70%;
  height: 100%;
  padding-left: calc((100vw - var(--container-width)) / 2);
}
@media (min-width: 768px) {
  .galerie .carousel_content {
    width: 50%;
  }
}
@media (max-width: 991.98px) {
  .galerie .carousel_content .placeholder,
.galerie .carousel_content .gallery_intro {
    width: 100% !important;
  }
}

/*! Flickity v2.2.2
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: 0;
}

.flickity-viewport {
  position: relative;
  height: 100%;
}
@media (min-width: 768px) {
  .flickity-viewport {
    overflow: hidden;
  }
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.flickity-button {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: #fff;
  cursor: pointer;
}

.flickity-button:focus {
  outline: 0;
  box-shadow: 0 0 0 5px #19f;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

/* Flickity fullscreen v1.0.1
------------------------- */
.flickity-enabled.is-fullscreen {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  padding-bottom: 35px;
  z-index: 1;
}

.flickity-enabled.is-fullscreen .flickity-page-dots {
  bottom: 10px;
}

.flickity-enabled.is-fullscreen .flickity-page-dots .dot {
  background: white;
}

/* prevent page scrolling when flickity is fullscreen */
html.is-flickity-fullscreen {
  overflow: hidden;
}

/* ---- flickity-fullscreen-button ---- */
.flickity-fullscreen-button {
  display: block;
  right: 10px;
  top: 10px;
  width: 24px;
  height: 24px;
  border-radius: 4px;
}
@media (max-width: 991.98px) {
  .flickity-fullscreen-button {
    display: none;
  }
}

/* right-to-left */
.flickity-rtl .flickity-fullscreen-button {
  right: auto;
  left: 10px;
}

.flickity-fullscreen-button-exit {
  display: none;
}

.flickity-enabled.is-fullscreen .flickity-fullscreen-button-exit {
  display: block;
}

.flickity-enabled.is-fullscreen .flickity-fullscreen-button-view {
  display: none;
}

.flickity-fullscreen-button .flickity-button-icon {
  position: absolute;
  width: 16px;
  height: 16px;
  left: 4px;
  top: 4px;
}

/* flickity-fade */
.flickity-enabled.is-fade .flickity-slider > * {
  pointer-events: none;
  z-index: 0;
}

.flickity-enabled.is-fade .flickity-slider > .is-selected {
  pointer-events: auto;
  z-index: 1;
}

/* CUSTOM */
.main-carousel {
  width: 100%;
}
.main-carousel .flickity-viewport .carousel-cell {
  margin-right: 30px;
  position: relative;
}
.main-carousel .flickity-viewport .carousel-cell img {
  display: block;
  height: calc(100vh - var(--header-height) - 15rem);
  border: 3px solid black;
}
.main-carousel.is-fullscreen {
  padding-top: 35px;
}
.main-carousel.is-fullscreen .flickity-viewport .carousel-cell img {
  height: auto;
}
.main-carousel button.flickity-button {
  width: 70px;
  height: 70px;
  background: transparent;
}
.main-carousel button.flickity-button:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.main-carousel button.flickity-button.flickity-fullscreen-button:after {
  background: url(../../images/full_screen.svg) left top no-repeat;
}
.main-carousel button.flickity-button.previous:after {
  background: url(../../images/arrow_left.svg) left top no-repeat;
}
.main-carousel button.flickity-button.next:after {
  background: url(../../images/arrow_right.svg) left top no-repeat;
}
.main-carousel button.flickity-button svg {
  display: none !important;
}

.appartements-disponibles .contactez_nous {
  display: block;
  width: 300px;
  height: 112px;
}
.appartements-disponibles .contactez_nous img {
  width: 100%;
}
@media (min-width: 992px) {
  .appartements-disponibles .contactez_nous {
    width: 300px;
    height: 112px;
  }
}
@media (min-width: 1200px) {
  .appartements-disponibles .contactez_nous {
    width: 400px;
    height: 150px;
  }
}
.appartements-disponibles #search_container {
  position: relative;
}
.appartements-disponibles #search_container:after {
  content: "";
  display: block;
  height: 16rem;
  width: 100%;
  z-index: -1;
  left: 0;
  bottom: 0;
  background: url(../../images/top_gradient_dots.png) top center repeat;
  position: absolute;
}
.appartements-disponibles #search_container .search_intro {
  font-size: 1.1rem;
}
.appartements-disponibles #search_container h1 {
  font-size: 2rem;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .appartements-disponibles #search_container h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 992px) {
  .appartements-disponibles #search_container h1 {
    font-size: 3rem;
  }
}
.appartements-disponibles #search_container .floorplans_container {
  height: 470px;
}
@media (max-width: 1199.98px) {
  .appartements-disponibles #search_container .floorplans_container .floorplans_wrapper {
    margin-left: 0;
    margin-right: 0;
  }
}
.appartements-disponibles #search_container .floorplans_container .floorplans_wrapper .floorplans {
  border: 3px solid black;
  background: #fed77c;
  position: relative;
  margin-bottom: 0;
}
@media (min-width: 1700px) {
  .appartements-disponibles #search_container .floorplans_container .floorplans_wrapper .floorplans {
    height: 470px;
  }
}
.appartements-disponibles #search_container .floorplans_container .floorplans_wrapper .floorplans img.floor {
  object-fit: contain;
  /*width: 667px;
  height: 464px;*/
  object-position: center bottom;
  width: 100%;
}
@media (min-width: 1200px) and (max-width: 1699.98px) {
  .appartements-disponibles #search_container .floorplans_container .floorplans_wrapper .floorplans img.floor {
    object-position: center center;
  }
}
.appartements-disponibles #search_container .floorplans_container .floorplans_wrapper .floorplans img.preloader {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -35px;
  margin-top: -35px;
  width: 70px;
  height: 70px;
  display: none;
}
@media (min-width: 576px) {
  .appartements-disponibles #search_container .floorplans_container .floorplans_wrapper .floorplans img.preloader {
    width: 80px;
    height: 80px;
    margin-left: -40px;
    margin-top: -40px;
  }
}
.appartements-disponibles #search_container .floorplans_container .floorplans_wrapper .floorplans img.active_floor {
  object-fit: contain;
  /*width: 667px;
  height: 464px;*/
  object-position: center bottom;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 100;
  display: none;
}
@media (min-width: 1200px) and (max-width: 1699.98px) {
  .appartements-disponibles #search_container .floorplans_container .floorplans_wrapper .floorplans img.active_floor {
    object-position: center center;
  }
}
.appartements-disponibles #search_container .floorplans_container .floorplans_wrapper .floorplans a.second_phase {
  cursor: pointer;
  position: absolute;
  left: 50%;
  margin-left: -30px;
  top: 30%;
  margin-top: -30px;
  z-index: 1;
}
.appartements-disponibles #search_container .floorplans_container .floorplans_wrapper .floorplans a.second_phase img {
  width: 60px;
  height: 60px;
}
.appartements-disponibles #search_container .floorplans_container .floorplans_wrapper .floorplans a.second_phase span {
  display: block;
  width: 200px;
  height: 150px;
  position: absolute;
  left: -190px;
  top: -140px;
  background: url(../../images/balloon_second_phase.svg) left top no-repeat;
  opacity: 0;
}
.appartements-disponibles #search_container .floorplans_container .floorplans_wrapper .floorplans a.second_phase span p {
  padding-top: 30px;
  font-family: "wigwag-bold", serif;
  color: black;
  font-size: 1rem;
  text-transform: uppercase;
  line-height: 1.4rem;
  font-weight: bolder;
  text-align: center;
  transform: rotate(-10deg);
}
.appartements-disponibles #search_container .floorplans_container .placeholder {
  width: auto;
}
@media (min-width: 1200px) and (max-width: 1699.98px) {
  .appartements-disponibles #search_container .floorplans_container .placeholder.placeholder_bottom {
    height: 115px !important;
  }
}
.appartements-disponibles #search_container .search_results {
  border: 3px solid black;
  background: white url(../../images/appt_dots.png) left top repeat-x;
  height: 470px;
}
.appartements-disponibles #search_container .filter_container {
  border: 3px solid black;
  background: #B6E0E7 url(../../images/appt_dots_filter.png) left top repeat-x;
  position: relative;
}
.appartements-disponibles #search_container .filter_container .filter_title {
  position: absolute;
  display: block;
  top: -1.5rem;
  left: 2.5rem;
  width: 12rem;
  height: 8.5rem;
  z-index: 1;
}
.appartements-disponibles #search_container .filter_container .filter_title .balloon_title {
  width: 100%;
  height: 100%;
  background: url(../../images/titles_balloon.svg) top left no-repeat;
}
.appartements-disponibles #search_container .filter_container .filter_title .balloon_title h2 {
  font-size: 2rem;
  line-height: 1.8rem;
  transform: rotate(-5deg);
}
.appartements-disponibles #search_container .filter_container .option_title {
  padding-bottom: 0.25rem;
  padding-top: 1rem;
}
@media (min-width: 1200px) {
  .appartements-disponibles #search_container .filter_container .option_title {
    height: 4rem;
    padding-bottom: 1rem;
  }
}
.appartements-disponibles #search_container .filter_container .option_title h4 {
  display: inline-block;
  font-family: "wigwag-bold", serif;
  text-transform: uppercase;
  transform: rotate(-5deg);
  line-height: 1.1rem;
  font-size: 1.15rem;
  margin-bottom: 0;
  font-weight: normal;
}
@-moz-document url-prefix() {
  .appartements-disponibles #search_container .filter_container .option_title h4 {
    line-height: 0.6rem;
  }
}
.appartements-disponibles #search_container .filter_container .floor_options .checkbox_label {
  line-height: 1rem;
  padding-left: 1.5rem;
  text-indent: -1.5rem;
  display: inline-block;
}
@media (max-width: 767.98px) {
  .appartements-disponibles #search_container .filter_container .floor_options .checkbox_label {
    padding-left: 1.55rem;
    text-indent: -1.55rem;
  }
}
@media (min-width: 1200px) {
  .appartements-disponibles #search_container .filter_container .status_options {
    width: 13%;
  }
}
@media (min-width: 1700px) {
  .appartements-disponibles #search_container .filter_container .status_options {
    width: 12%;
  }
}
@media (min-width: 1200px) {
  .appartements-disponibles #search_container .filter_container .building_options {
    width: 15%;
  }
}
@media (min-width: 1700px) {
  .appartements-disponibles #search_container .filter_container .building_options {
    width: 12%;
  }
}
@media (min-width: 1200px) {
  .appartements-disponibles #search_container .filter_container .floor_options {
    width: 17%;
  }
}
@media (min-width: 1200px) {
  .appartements-disponibles #search_container .filter_container .rooms_options {
    width: 18%;
  }
}
@media (min-width: 1700px) {
  .appartements-disponibles #search_container .filter_container .rooms_options {
    width: 16%;
  }
}
.appartements-disponibles #search_container .filter_container .rooms_options .rooms_title h4 br {
  display: none;
}
@media (min-width: 1200px) {
  .appartements-disponibles #search_container .filter_container .rooms_options .rooms_title h4 br {
    display: block;
  }
}
@media (min-width: 1200px) {
  .appartements-disponibles #search_container .filter_container .surface_price_options {
    width: 37%;
  }
}
@media (min-width: 1700px) {
  .appartements-disponibles #search_container .filter_container .surface_price_options {
    width: 43%;
  }
}
.appartements-disponibles #search_container .filter_container label {
  margin-right: 1rem;
}
@media (min-width: 1200px) {
  .appartements-disponibles #search_container .filter_container label {
    margin-right: 0;
  }
}
.appartements-disponibles #search_container .filter_container label span {
  font-family: "aglet-slab", sans-serif;
  font-weight: bold;
}
@media (max-width: 767.98px) {
  .appartements-disponibles #search_container .filter_container label span {
    font-size: 0.9rem;
  }
}
.appartements-disponibles #search_container .filter_container #appts_form {
  margin-top: 7rem;
  /* Text color for the label */
  /* Checkbox un-checked style */
  /* Checked checkbox style (in this case the background is green #e7ffba, change this to change the color) */
}
@media (min-width: 992px) {
  .appartements-disponibles #search_container .filter_container #appts_form {
    margin-top: 0;
    margin-left: 16rem;
  }
}
.appartements-disponibles #search_container .filter_container #appts_form input[type=checkbox] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.appartements-disponibles #search_container .filter_container #appts_form input[type=checkbox] + span {
  cursor: pointer;
  color: black;
}
.appartements-disponibles #search_container .filter_container #appts_form input[type=checkbox] + span:before {
  content: "";
  border: 3px solid black;
  border-radius: 100%;
  background: white;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 0.3rem;
  margin-top: 0.5rem;
  vertical-align: -0.25rem;
}
.appartements-disponibles #search_container .filter_container #appts_form input[type=checkbox]:checked + span:before {
  border: 3px solid white;
  border-radius: 100%;
  background-color: black;
  width: 16px;
  height: 16px;
  -webkit-box-shadow: 0px 0px 0px 3px black;
  -moz-box-shadow: 0px 0px 0px 3px black;
  box-shadow: 0px 0px 0px 3px black;
  margin-right: 0.45rem;
  margin-left: 0.1rem;
  margin-top: 0.6rem;
  vertical-align: -0.1rem;
}
@media (min-width: 1200px) {
  .appartements-disponibles #search_container .results_container {
    padding-left: 30px;
    padding-right: 0;
  }
}
.appartements-disponibles #search_container .results_container .rooms_buttons {
  margin-bottom: 1.5rem;
}
@media (min-width: 1200px) {
  .appartements-disponibles #search_container .results_container .rooms_buttons {
    margin-top: -8rem;
  }
}
.appartements-disponibles #search_container .results_container .rooms_buttons button {
  display: block;
  width: 6.5rem;
  height: 6.5rem;
  position: relative;
  background: transparent;
  border: none;
  text-indent: -9999px;
}
.appartements-disponibles #search_container .results_container .rooms_buttons button:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: none;
}
.appartements-disponibles #search_container .results_container .rooms_buttons button:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: block;
}
.appartements-disponibles #search_container .results_container .rooms_buttons button.active:after {
  display: block;
}
.appartements-disponibles #search_container .results_container .rooms_buttons button.active:before {
  display: none;
}
.appartements-disponibles #search_container .results_container .rooms_buttons button.r_1-5:before {
  background: url(../../images/pieces_15.svg) left top no-repeat;
}
.appartements-disponibles #search_container .results_container .rooms_buttons button.r_1-5:after {
  background: url(../../images/pieces_15_on.svg) left top no-repeat;
}
.appartements-disponibles #search_container .results_container .rooms_buttons button.r_2-5:before {
  background: url(../../images/pieces_25.svg) left top no-repeat;
}
.appartements-disponibles #search_container .results_container .rooms_buttons button.r_2-5:after {
  background: url(../../images/pieces_25_on.svg) left top no-repeat;
}
.appartements-disponibles #search_container .results_container .rooms_buttons button.r_3-5:before {
  background: url(../../images/pieces_35.svg) left top no-repeat;
}
.appartements-disponibles #search_container .results_container .rooms_buttons button.r_3-5:after {
  background: url(../../images/pieces_35_on.svg) left top no-repeat;
}
.appartements-disponibles #search_container .results_container .rooms_buttons button.r_4-5:before {
  background: url(../../images/pieces_45.svg) left top no-repeat;
}
.appartements-disponibles #search_container .results_container .rooms_buttons button.r_4-5:after {
  background: url(../../images/pieces_45_on.svg) left top no-repeat;
}
.appartements-disponibles #search_container .results_container .rooms_buttons button.r_5-5:before {
  background: url(../../images/pieces_55.svg) left top no-repeat;
}
.appartements-disponibles #search_container .results_container .rooms_buttons button.r_5-5:after {
  background: url(../../images/pieces_55_on.svg) left top no-repeat;
}
.appartements-disponibles #search_container .search_results .results_titles {
  height: 4rem;
  padding-right: 10px;
  padding-top: 1rem;
}
.appartements-disponibles #search_container .search_results .results_titles .result_title {
  font-family: "wigwag-bold", serif;
  text-transform: uppercase;
  transform: rotate(-5deg);
  line-height: 1.1rem;
}
@media (min-width: 1200px) and (max-width: 1699.98px) {
  .appartements-disponibles #search_container .search_results .results_titles .result_title {
    font-size: 0.75rem;
  }
}
@media (max-width: 767.98px) {
  .appartements-disponibles #search_container .search_results .results_titles .result_title {
    font-size: 0.75rem;
  }
  .appartements-disponibles #search_container .search_results .results_titles .result_title.title_surface_in {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .appartements-disponibles #search_container .search_results .result {
    font-size: 0.9rem;
  }
}
.appartements-disponibles #search_container .search_results .result_appt,
.appartements-disponibles #search_container .search_results .title_appt {
  width: 15%;
}
@media (min-width: 768px) {
  .appartements-disponibles #search_container .search_results .result_appt,
.appartements-disponibles #search_container .search_results .title_appt {
    width: 14%;
  }
}
@media (min-width: 992px) {
  .appartements-disponibles #search_container .search_results .result_appt,
.appartements-disponibles #search_container .search_results .title_appt {
    width: 12%;
  }
}
.appartements-disponibles #search_container .search_results .result_appt strong {
  font-weight: 900;
}
.appartements-disponibles #search_container .search_results .result_floor,
.appartements-disponibles #search_container .search_results .title_floor {
  width: 15%;
}
@media (min-width: 768px) {
  .appartements-disponibles #search_container .search_results .result_floor,
.appartements-disponibles #search_container .search_results .title_floor {
    width: 13%;
  }
}
@media (min-width: 992px) {
  .appartements-disponibles #search_container .search_results .result_floor,
.appartements-disponibles #search_container .search_results .title_floor {
    width: 15%;
  }
}
@media (min-width: 1200px) {
  .appartements-disponibles #search_container .search_results .result_floor,
.appartements-disponibles #search_container .search_results .title_floor {
    width: 10%;
  }
}
.appartements-disponibles #search_container .search_results .result_rooms,
.appartements-disponibles #search_container .search_results .title_rooms {
  width: 20%;
}
@media (min-width: 768px) {
  .appartements-disponibles #search_container .search_results .result_rooms,
.appartements-disponibles #search_container .search_results .title_rooms {
    width: 15%;
  }
}
@media (min-width: 768px) {
  .appartements-disponibles #search_container .search_results .result_rooms,
.appartements-disponibles #search_container .search_results .title_rooms {
    width: 15%;
  }
}
@media (min-width: 1200px) {
  .appartements-disponibles #search_container .search_results .result_rooms,
.appartements-disponibles #search_container .search_results .title_rooms {
    width: 12%;
  }
}
.appartements-disponibles #search_container .search_results .result_surface_in,
.appartements-disponibles #search_container .search_results .title_surface_in {
  width: 20%;
}
@media (min-width: 768px) {
  .appartements-disponibles #search_container .search_results .result_surface_in,
.appartements-disponibles #search_container .search_results .title_surface_in {
    width: 15%;
  }
}
@media (max-width: 991.98px) {
  .appartements-disponibles #search_container .search_results .result_surface_in,
.appartements-disponibles #search_container .search_results .title_surface_in {
    display: none;
  }
}
@media (min-width: 1200px) {
  .appartements-disponibles #search_container .search_results .result_surface_in,
.appartements-disponibles #search_container .search_results .title_surface_in {
    width: 13%;
  }
}
.appartements-disponibles #search_container .search_results .result_surface_out,
.appartements-disponibles #search_container .search_results .title_surface_out {
  width: 20%;
}
@media (min-width: 768px) {
  .appartements-disponibles #search_container .search_results .result_surface_out,
.appartements-disponibles #search_container .search_results .title_surface_out {
    width: 15%;
  }
}
@media (max-width: 991.98px) {
  .appartements-disponibles #search_container .search_results .result_surface_out,
.appartements-disponibles #search_container .search_results .title_surface_out {
    width: 16%;
  }
}
@media (min-width: 1200px) {
  .appartements-disponibles #search_container .search_results .result_surface_out,
.appartements-disponibles #search_container .search_results .title_surface_out {
    width: 17%;
  }
}
.appartements-disponibles #search_container .search_results .result_price,
.appartements-disponibles #search_container .search_results .title_price {
  width: 26%;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .appartements-disponibles #search_container .search_results .result_price,
.appartements-disponibles #search_container .search_results .title_price {
    width: 17%;
  }
}
@media (min-width: 992px) {
  .appartements-disponibles #search_container .search_results .result_price,
.appartements-disponibles #search_container .search_results .title_price {
    width: 15%;
  }
}
@media (min-width: 1200px) {
  .appartements-disponibles #search_container .search_results .result_price,
.appartements-disponibles #search_container .search_results .title_price {
    width: 16%;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .appartements-disponibles #search_container .search_results .title_price {
    margin-right: 26%;
  }
}
@media (min-width: 992px) {
  .appartements-disponibles #search_container .search_results .title_price {
    margin-right: 20%;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .appartements-disponibles #search_container .search_results .title_price {
    width: 21%;
  }
}
.appartements-disponibles #search_container .search_results .result_price strong {
  font-weight: 900;
}
.appartements-disponibles #search_container .search_results .result_statut {
  width: 35%;
}
@media (min-width: 768px) {
  .appartements-disponibles #search_container .search_results .result_statut {
    width: 26%;
  }
}
@media (min-width: 992px) {
  .appartements-disponibles #search_container .search_results .result_statut {
    width: 20%;
  }
}
@media (min-width: 1200px) {
  .appartements-disponibles #search_container .search_results .result_statut {
    width: 20%;
  }
}
.appartements-disponibles #search_container .search_results .result_statut {
  height: 2.3rem;
  font-weight: 900;
  color: black;
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  .appartements-disponibles #search_container .search_results .result_statut {
    height: 1.9rem;
  }
}
.appartements-disponibles #search_container .search_results .result_statut div.reserve {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.appartements-disponibles #search_container .search_results .result_statut div.reserve a {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding-left: 0.5rem;
  padding-top: 0.75rem;
  color: black;
  background: url(../../images/reserve_small.svg) left top no-repeat;
}
@media (min-width: 768px) {
  .appartements-disponibles #search_container .search_results .result_statut div.reserve a {
    padding-left: 1rem;
    padding-top: 0.25rem;
  }
}
@media (min-width: 768px) {
  .appartements-disponibles #search_container .search_results .result_statut div.reserve a {
    background: url(../../images/reserve.svg) left top no-repeat;
  }
}
.appartements-disponibles #search_container .search_results .result_statut div.reserve a:hover {
  color: black;
  transform: scale(1.2);
}
@media (max-width: 991.98px) {
  .appartements-disponibles #search_container .search_results .result_statut div.reserve a:hover {
    transform-origin: 0;
  }
}
.appartements-disponibles #search_container .search_results .result_statut div.vendu {
  background: url(../../images/vendu_small.svg) left top no-repeat;
  padding-left: 0.5rem;
  padding-top: 0.75rem;
  display: inline-block;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .appartements-disponibles #search_container .search_results .result_statut div.vendu {
    background: url(../../images/vendu.svg) left top no-repeat;
  }
}
@media (min-width: 768px) {
  .appartements-disponibles #search_container .search_results .result_statut div.vendu {
    padding-left: 1rem;
    padding-top: 0.25rem;
  }
}
.appartements-disponibles #search_container .search_results .result_statut div.vacant {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.appartements-disponibles #search_container .search_results .result_statut div.vacant a {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding-left: 0.5rem;
  padding-top: 0.75rem;
  color: black;
  background: url(../../images/vacant_small.svg) left top no-repeat;
}
@media (min-width: 768px) {
  .appartements-disponibles #search_container .search_results .result_statut div.vacant a {
    padding-left: 1rem;
    padding-top: 0.25rem;
  }
}
@media (min-width: 768px) {
  .appartements-disponibles #search_container .search_results .result_statut div.vacant a {
    background: url(../../images/vacant.svg) left top no-repeat;
  }
}
.appartements-disponibles #search_container .search_results .result_statut div.vacant a:hover {
  color: black;
  transform: scale(1.2);
}
@media (max-width: 991.98px) {
  .appartements-disponibles #search_container .search_results .result_statut div.vacant a:hover {
    transform-origin: 0;
  }
}
.appartements-disponibles #search_container .search_results .results_slider {
  max-height: calc(95% - 5rem);
  overflow: scroll;
  overflow-x: hidden;
  margin-top: 1rem;
}
@media (max-width: 767.98px) {
  .appartements-disponibles #search_container .search_results .results_slider .results_list {
    padding-bottom: 300px;
  }
}
.appartements-disponibles #search_container .search_results .results_slider .building_heading {
  background: url(../../images/angled.png) left 0.5rem repeat-x;
  margin-right: 1rem;
  margin-top: 1.5rem;
}
.appartements-disponibles #search_container .search_results .results_slider .building_heading h4 {
  color: #c67c4e;
  font-size: 1.1rem;
  font-weight: bold;
  background: white;
  display: inline-block;
  padding-right: 0.5rem;
}
.appartements-disponibles #search_container .search_results .results_slider .building_heading:first-child {
  margin-top: 0;
}
.appartements-disponibles #search_container .search_results .results_slider .apartments_list {
  list-style-type: none;
  padding-left: 0;
}
.appartements-disponibles #search_container .search_results .results_slider .apartments_list .apartment_entry {
  min-height: 2.2rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.appartements-disponibles #search_container .search_results .results_slider .apartments_list .apartment_entry:hover {
  background: url(../../images/apartment_highlight.png) left top repeat;
  cursor: pointer;
}
.appartements-disponibles #search_container .search_results .results_slider .apartments_list .apartment_entry div strong {
  font-weight: 700;
}

/**
Ion.RangeSlider, 2.3.1
© Denis Ineshin, 2010 - 2019, IonDen.com
Build date: 2019-12-19 16:51:02
*/
.irs {
  position: relative;
  display: block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.irs-line {
  position: relative;
  display: block;
  overflow: hidden;
  outline: none !important;
}

.irs-bar {
  position: absolute;
  display: block;
  left: 0;
  width: 0;
}

.irs-shadow {
  position: absolute;
  display: none;
  left: 0;
  width: 0;
}

.irs-handle {
  position: absolute;
  display: block;
  box-sizing: border-box;
  cursor: default;
  z-index: 1;
}

.irs-handle.type_last {
  z-index: 2;
}

.irs-min,
.irs-max {
  position: absolute;
  display: block;
  cursor: default;
}

.irs-min {
  left: 0;
}

.irs-max {
  right: 0;
}

.irs-from,
.irs-to,
.irs-single {
  position: absolute;
  display: block;
  top: -8px;
  left: 0;
  cursor: default;
  white-space: nowrap;
}

.irs-grid {
  position: absolute;
  display: none;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
}

.irs-with-grid .irs-grid {
  display: block;
}

.irs-grid-pol {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 8px;
  background: #000;
}

.irs-grid-pol.small {
  height: 4px;
}

.irs-grid-text {
  position: absolute;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  text-align: center;
  font-size: 9px;
  line-height: 9px;
  padding: 0 3px;
  color: #000;
}

.irs-disable-mask {
  position: absolute;
  display: block;
  top: 0;
  left: -1%;
  width: 102%;
  height: 100%;
  cursor: default;
  background: rgba(0, 0, 0, 0);
  z-index: 2;
}

.lt-ie9 .irs-disable-mask {
  background: #000;
  filter: alpha(opacity=0);
  cursor: not-allowed;
}

.irs-disabled {
  opacity: 0.4;
}

.irs-hidden-input {
  position: absolute !important;
  display: block !important;
  top: 0 !important;
  left: 0 !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  outline: none !important;
  z-index: -9999 !important;
  background: none !important;
  border-style: solid !important;
  border-color: transparent !important;
}

.irs--flat {
  height: 4rem;
  margin-bottom: 1rem;
  font-size: 14px;
}
@media (max-width: 1199.98px) {
  .irs--flat {
    margin-top: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .irs--flat {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
}

.irs--flat.irs-with-grid {
  height: 60px;
}

.irs--flat .irs-line {
  top: 25px;
  height: 10px;
  background-color: white;
  border: 2px solid black;
}

.irs--flat .irs-bar {
  top: 25px;
  height: 10px;
  background-color: black;
}

.irs--flat .irs-bar--single {
  border-radius: 4px 0 0 4px;
}

.irs--flat .irs-shadow {
  height: 1px;
  bottom: 16px;
  background-color: #e1e4e9;
}

.irs--flat .irs-handle {
  top: 22px;
  width: 16px;
  height: 18px;
  background-color: transparent;
}

.irs--flat .irs-handle > i:first-child {
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  width: 30px;
  height: 30px;
  margin-left: -15px;
  margin-top: -7px;
  background: url(../../images/cucarda.svg) left top no-repeat;
}

.irs--flat .irs-handle.state_hover > i:first-child,
.irs--flat .irs-handle:hover > i:first-child {
  cursor: pointer;
}

.irs--flat .irs-min,
.irs--flat .irs-max {
  top: 0;
  padding: 1px 3px;
  color: #666;
  font-size: 12px;
  line-height: 1.333;
  text-shadow: none;
  background-color: white;
  border-radius: 4px;
}

.irs--flat .irs-from,
.irs--flat .irs-to,
.irs--flat .irs-single {
  color: white;
  font-size: 14px;
  line-height: 1.333;
  text-shadow: none;
  padding: 1px 5px;
  background-color: black;
  border-radius: 4px;
}

.irs--flat .irs-from:before,
.irs--flat .irs-to:before,
.irs--flat .irs-single:before {
  position: absolute;
  display: block;
  content: "";
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -3px;
  overflow: hidden;
  border: 3px solid transparent;
  border-top-color: black;
}

.irs--flat .irs-grid-pol {
  background-color: white;
}

.irs--flat .irs-grid-text {
  color: #999;
}

.explication iframe,
.fin_du_jeu iframe,
.rhapsody iframe {
  height: 612px;
}

.felicitacion iframe {
  height: 612px;
}

.game {
  background: transparent;
}
.game main .popup_container {
  border: 3px solid black;
  position: relative;
  width: 100%;
}
.game.explication, .game.fin_du_jeu, .game.rhapsody {
  margin: 39px 50px;
}
.game.explication main .popup_container, .game.fin_du_jeu main .popup_container, .game.rhapsody main .popup_container {
  height: 534px;
}
@media (max-width: 767.98px) {
  .game.explication main .popup_container, .game.fin_du_jeu main .popup_container, .game.rhapsody main .popup_container {
    height: 500px;
  }
}
@media (min-width: 768px) {
  .game.explication, .game.fin_du_jeu, .game.rhapsody {
    margin: 39px 75px;
  }
}
@media (min-width: 992px) {
  .game.explication, .game.fin_du_jeu, .game.rhapsody {
    margin: 39px 113px;
  }
}
@media (min-width: 1200px) {
  .game.explication, .game.fin_du_jeu, .game.rhapsody {
    margin: 39px 143px;
  }
}
.game.rhapsody .wp-block-embed {
  width: 100%;
}
.game.felicitacion {
  margin: 104px 50px;
}
.game.felicitacion main .popup_container {
  height: 404px;
}
@media (min-width: 768px) {
  .game.felicitacion {
    margin: 104px 75px;
  }
}
@media (min-width: 992px) {
  .game.felicitacion {
    margin: 104px 143px;
  }
}

.explication .popup_container {
  background: #54a39b;
}
.explication .video_wrapper {
  position: absolute;
  bottom: 0;
}
.explication .explication_prix ul {
  z-index: 100;
  font-weight: bolder;
  padding-top: 0px;
  width: 58%;
  position: absolute;
  right: 5%;
  top: 5%;
}
@media (min-width: 576px) {
  .explication .explication_prix ul {
    width: 48%;
  }
}
@media (min-width: 768px) {
  .explication .explication_prix ul {
    width: 45%;
  }
}
@media (min-width: 1200px) {
  .explication .explication_prix ul {
    width: 43%;
  }
}
.explication .explication_prix ul li {
  padding-bottom: 0.5rem;
}
.explication .cliquez {
  display: block;
  position: absolute;
  z-index: 100;
  top: -55px;
  left: -76px;
  text-indent: -9999px;
  background: url(../../images/cliquez.png) left top no-repeat;
  background-size: contain;
  width: calc(41% + 77px);
  height: 250px;
}
@media (min-width: 576px) {
  .explication .cliquez {
    top: -39px;
    left: -50px;
    width: 288px;
    height: 278px;
  }
}
@media (min-width: 768px) {
  .explication .cliquez {
    width: 315px;
    height: 410px;
    left: -50px;
  }
}
@media (min-width: 1200px) {
  .explication .cliquez {
    width: 394px;
    height: 379px;
    left: -143px;
  }
}
.explication .rabbit_explication {
  display: block;
  position: absolute;
  z-index: 100;
  left: -33px;
  bottom: 135px;
}
.explication .rabbit_explication img {
  width: 130px;
}
@media (min-width: 576px) {
  .explication .rabbit_explication {
    bottom: 105px;
    width: 140px;
  }
}
@media (min-width: 768px) {
  .explication .rabbit_explication {
    bottom: 70px;
    left: -70px;
  }
}
@media (min-width: 992px) {
  .explication .rabbit_explication {
    bottom: 61px;
    left: -70px;
  }
}
@media (min-width: 1200px) {
  .explication .rabbit_explication img {
    width: 120px;
  }
}
.explication .read_link {
  position: absolute;
  width: 238px;
  height: 226px;
  right: -85px;
  bottom: 150px;
  background: url(../../images/cucarda_game.png) left top no-repeat;
  font-weight: bolder;
  transform: rotate(5deg);
  text-transform: uppercase;
  font-family: "wigwag-bold", serif;
  color: black;
  font-size: 1.2rem;
  line-height: 1.4rem;
  transform-origin: center center;
  transition: 0.25s all ease-out;
  background-size: contain;
}
.explication .read_link p {
  line-height: 1.4rem;
}
@media (min-width: 1200px) {
  .explication .read_link {
    width: 200px;
    height: 190px;
    bottom: 150px;
  }
}
@media (max-width: 1199.98px) {
  .explication .read_link {
    width: 200px;
    height: 190px;
    bottom: 120px;
  }
}
@media (max-width: 767.98px) {
  .explication .read_link {
    width: 170px;
    height: 160px;
    bottom: 80px;
    right: -65px;
  }
}
@media (max-width: 575.98px) {
  .explication .read_link {
    width: 130px;
    height: 120px;
    bottom: 80px;
    font-size: 0.9rem;
    line-height: 1rem;
  }
}
.explication .read_link span {
  width: 100%;
}
.explication .read_link:hover {
  color: #c67c4e;
  transform: scale(1.2);
  transform-origin: center center;
  transition: 0.25s all ease-out;
}

.felicitacion .popup_container {
  background: #f4a09e url(../../images/dots_game.png) left top repeat-x;
}
.felicitacion .trouve {
  display: block;
  position: absolute;
  z-index: 100;
  top: -55px;
  left: -76px;
  text-indent: -9999px;
  background: url(../../images/trouve.png) left top no-repeat;
  background-size: contain;
  width: calc(41% + 77px);
  height: 250px;
}
@media (min-width: 576px) {
  .felicitacion .trouve {
    top: -39px;
    left: -50px;
    width: 288px;
    height: 278px;
  }
}
@media (min-width: 768px) {
  .felicitacion .trouve {
    width: 315px;
    height: 410px;
    left: -78px;
    top: -104px;
  }
}
@media (min-width: 992px) {
  .felicitacion .trouve {
    width: 387px;
    height: 345px;
    left: -118px;
    top: -104px;
  }
}
.felicitacion .rabbit_felicitacion {
  display: block;
  position: absolute;
  z-index: 100;
  top: -45px;
  right: 20%;
}
.felicitacion .rabbit_felicitacion img {
  width: 100px;
}
@media (min-width: 768px) {
  .felicitacion .rabbit_felicitacion {
    top: -45px;
    left: 280px;
    right: auto;
  }
  .felicitacion .rabbit_felicitacion img {
    width: 135px;
  }
}
@media (min-width: 992px) {
  .felicitacion .rabbit_felicitacion {
    top: -45px;
    left: 290px;
  }
  .felicitacion .rabbit_felicitacion img {
    width: 140px;
  }
}
.felicitacion .rabbit_number {
  font-family: "wigwag-deluxe", serif;
  color: black;
  font-size: 3rem;
  display: block;
  position: absolute;
  z-index: 100;
  top: 100px;
  right: 20%;
}
@media (min-width: 768px) {
  .felicitacion .rabbit_number {
    right: 13%;
    top: 30px;
  }
}
@media (min-width: 992px) {
  .felicitacion .rabbit_number {
    right: 16%;
  }
}
@media (min-width: 1200px) {
  .felicitacion .rabbit_number {
    right: 18%;
  }
}
.felicitacion .game_text {
  position: absolute;
  top: 235px;
  left: 30px;
}
@media (min-width: 768px) {
  .felicitacion .game_text {
    left: 46px;
  }
}
@media (max-width: 575.98px) {
  .felicitacion .game_text {
    top: 180px;
  }
}
.felicitacion .game_text h1 {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .felicitacion .game_text h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 992px) {
  .felicitacion .game_text h1 {
    font-size: 2.8rem;
  }
}
.felicitacion .game_text p {
  font-weight: bolder;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .felicitacion .game_text p {
    width: 50%;
  }
}
@media (max-width: 767.98px) {
  .felicitacion .game_text p {
    width: 75%;
  }
}
@media (min-width: 768px) {
  .felicitacion .game_text p {
    width: auto;
  }
}
.felicitacion .concours {
  position: absolute;
  bottom: -10%;
  right: -35px;
  width: 130px;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .felicitacion .concours {
    bottom: auto;
    right: 35px;
    top: 135px;
    width: 180px;
  }
}
@media (min-width: 992px) {
  .felicitacion .concours {
    bottom: auto;
    right: 50px;
    width: 235px;
    top: 135px;
  }
}

.fin_du_jeu .popup_container {
  background: #f8b06f url(../../images/dots_game.png) left top repeat-x;
}
.fin_du_jeu .tous {
  display: block;
  position: absolute;
  z-index: 100;
  top: -55px;
  left: -76px;
  text-indent: -9999px;
  background: url(../../images/tous.png) left top no-repeat;
  background-size: contain;
  width: calc(41% + 77px);
  height: 250px;
}
@media (min-width: 576px) {
  .fin_du_jeu .tous {
    top: -39px;
    left: -50px;
    width: 288px;
    height: 278px;
  }
}
@media (min-width: 768px) {
  .fin_du_jeu .tous {
    width: 315px;
    height: 410px;
    left: -50px;
  }
}
@media (min-width: 1200px) {
  .fin_du_jeu .tous {
    width: 438px;
    height: 333 px;
    left: -143px;
  }
}
.fin_du_jeu h1 {
  font-size: 2.4rem;
}
.fin_du_jeu .prix {
  z-index: 100;
  font-weight: bolder;
  padding-left: 0;
}
.fin_du_jeu .prix li {
  padding-bottom: 0.25rem;
  font-size: 1rem;
  line-height: 1.4rem;
}
@media (min-width: 768px) {
  .fin_du_jeu .prix li {
    padding-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.6rem;
  }
}
.fin_du_jeu .popup_title {
  width: 67%;
}
@media (min-width: 992px) {
  .fin_du_jeu .popup_title {
    width: auto;
  }
}
@media (max-width: 1199.98px) {
  .fin_du_jeu .popup_title h1 {
    font-size: 2.2rem;
  }
}
@media (max-width: 991.98px) {
  .fin_du_jeu .popup_title h1 {
    font-size: 2rem;
  }
}
@media (max-width: 575.98px) {
  .fin_du_jeu .popup_title h1 {
    display: none;
  }
}
.fin_du_jeu p {
  font-size: 1rem;
  line-height: 1.4rem;
}
.fin_du_jeu .rabbit_fin_small {
  position: absolute;
  left: 50%;
  top: -42px;
}
.fin_du_jeu .rabbit_fin_small img {
  width: 90px;
}
.fin_du_jeu .rabbit_fin {
  position: absolute;
}
.fin_du_jeu .rabbit_fin img {
  max-width: 100%;
}
@media (max-width: 991.98px) {
  .fin_du_jeu .rabbit_fin {
    width: 50%;
    top: -30px;
    right: 5%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .fin_du_jeu .rabbit_fin {
    left: 300px;
    top: -30px;
  }
}
@media (min-width: 1200px) {
  .fin_du_jeu .rabbit_fin {
    left: 340px;
    top: 30px;
  }
}
.fin_du_jeu .telecharger_link {
  position: absolute;
  width: 238px;
  height: 226px;
  right: -65px;
  bottom: 150px;
  background: url(../../images/cucarda_game.png) left top no-repeat;
  font-weight: bolder;
  transform: rotate(5deg);
  color: black;
  font-size: 1.1rem;
  line-height: 1.1rem;
  transform-origin: center center;
  transition: 0.25s all ease-out;
  background-size: contain;
}
.fin_du_jeu .telecharger_link button {
  background: transparent;
  border: none;
  width: 100%;
  height: 100%;
  line-height: 1.4rem;
}
@media (min-width: 992px) {
  .fin_du_jeu .telecharger_link {
    width: 200px;
    height: 190px;
    bottom: 200px;
  }
}
@media (max-width: 991.98px) {
  .fin_du_jeu .telecharger_link {
    width: 200px;
    height: 190px;
    bottom: -10px;
  }
}
@media (max-width: 767.98px) {
  .fin_du_jeu .telecharger_link {
    width: 170px;
    height: 160px;
    bottom: -10px;
  }
}
@media (max-width: 575.98px) {
  .fin_du_jeu .telecharger_link {
    width: 170px;
    height: 160px;
    bottom: -50px;
  }
}
.fin_du_jeu .telecharger_link span {
  width: 100%;
}
.fin_du_jeu .telecharger_link:hover {
  color: #c67c4e;
  transform: scale(1.2);
  transform-origin: center center;
  transition: 0.25s all ease-out;
}

.formulaire-fin-jeu {
  background: transparent;
  margin: 39px 50px;
}
.formulaire-fin-jeu main .popup_container {
  overflow-y: auto;
  overflow-x: hidden;
  border: 3px solid black;
  background: #fed77c url(../../images/dots_game.png) left top repeat-x;
  position: relative;
  width: 100%;
  height: 534px;
}
@media (max-width: 767.98px) {
  .formulaire-fin-jeu main .popup_container {
    height: 500px;
  }
}
.formulaire-fin-jeu main .popup_container .wpcf7-acceptance a {
  color: #007768;
}
@media (min-width: 768px) {
  .formulaire-fin-jeu {
    margin: 39px 75px;
  }
}
@media (min-width: 992px) {
  .formulaire-fin-jeu {
    margin: 39px 113px;
  }
}
@media (min-width: 1200px) {
  .formulaire-fin-jeu {
    margin: 39px 143px;
  }
}

.wpcf7 #submit_pdf {
  text-indent: -9999px;
  display: block;
  border: none;
  width: 70px;
  height: 70px;
  background: transparent url(../../images/button_send.svg) 0 0 no-repeat;
  transition: all 0.2s ease-out;
}
.wpcf7 #submit_pdf:disabled {
  opacity: 0.5;
}

#location_container {
  position: relative;
}
#location_container:after {
  content: "";
  display: block;
  height: 16rem;
  width: 100%;
  z-index: -1;
  left: 0;
  bottom: 0;
  background: url(../../images/top_gradient_dots.png) center top repeat;
  position: absolute;
}
#location_container .location_intro {
  font-size: 1.1rem;
  font-weight: bolder;
}
#location_container h1 {
  font-size: 2rem;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  #location_container h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 992px) {
  #location_container h1 {
    font-size: 3rem;
  }
}
#location_container .decouvrez_ville figure {
  display: inline-block;
  border: 3px solid black;
  position: relative;
  background: #fed77c url(../../images/dots_game.png) left -30px repeat-x;
}
#location_container .decouvrez_ville figure a {
  display: block;
  cursor: pointer;
}
#location_container .decouvrez_ville figure figcaption {
  position: absolute;
  z-index: 100;
  position: absolute;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-family: "wigwag-bold", serif;
  color: black;
  display: block;
  text-align: center;
  top: 25%;
  width: 100%;
}
@media (min-width: 768px) {
  #location_container .decouvrez_ville figure figcaption {
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
}
#location_container .decouvrez_ville figure img {
  padding: 30px;
  max-width: 100%;
  height: auto;
}
#location_container .map_container {
  position: relative;
}
#location_container .map_container .postcard {
  position: absolute;
  z-index: 100;
  display: none;
}
@media (min-width: 992px) {
  #location_container .map_container .postcard {
    width: 400px;
    margin-left: 0;
    top: 130px;
    left: -50px;
    display: block;
  }
}

body.page-template-landing,
body.page-template-countdown_teaser {
  overflow-y: scroll;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
body.page-template-landing .landing_container,
body.page-template-landing .count_container,
body.page-template-countdown_teaser .landing_container,
body.page-template-countdown_teaser .count_container {
  position: relative;
}
body.page-template-landing .landing_container .landing_top_container,
body.page-template-landing .count_container .landing_top_container,
body.page-template-countdown_teaser .landing_container .landing_top_container,
body.page-template-countdown_teaser .count_container .landing_top_container {
  display: block;
  margin-bottom: 10vh;
  position: relative;
}
body.page-template-landing .landing_container .landing_top_container .landing_logo,
body.page-template-landing .count_container .landing_top_container .landing_logo,
body.page-template-countdown_teaser .landing_container .landing_top_container .landing_logo,
body.page-template-countdown_teaser .count_container .landing_top_container .landing_logo {
  display: block;
  height: 30vw;
  text-indent: -9999px;
  background: url(../../images/Quartier-Saint-Michel-logo-shadow.svg) center center no-repeat;
  background-size: 60vw 30vw;
  margin: auto;
  margin-top: 6vh;
}
@media (min-width: 576px) {
  body.page-template-landing .landing_container .landing_top_container .landing_logo,
body.page-template-landing .count_container .landing_top_container .landing_logo,
body.page-template-countdown_teaser .landing_container .landing_top_container .landing_logo,
body.page-template-countdown_teaser .count_container .landing_top_container .landing_logo {
    height: 25vw;
    background-size: 50vw 25vw;
  }
}
@media (min-width: 768px) {
  body.page-template-landing .landing_container .landing_top_container .landing_logo,
body.page-template-landing .count_container .landing_top_container .landing_logo,
body.page-template-countdown_teaser .landing_container .landing_top_container .landing_logo,
body.page-template-countdown_teaser .count_container .landing_top_container .landing_logo {
    height: 20vw;
    background-size: 40vw 20vw;
  }
}
@media (min-width: 992px) {
  body.page-template-landing .landing_container .landing_top_container .landing_logo,
body.page-template-landing .count_container .landing_top_container .landing_logo,
body.page-template-countdown_teaser .landing_container .landing_top_container .landing_logo,
body.page-template-countdown_teaser .count_container .landing_top_container .landing_logo {
    height: 16vw;
    background-size: 32vw 16vw;
  }
}
@media (min-width: 1200px) {
  body.page-template-landing .landing_container .landing_top_container .landing_logo,
body.page-template-landing .count_container .landing_top_container .landing_logo,
body.page-template-countdown_teaser .landing_container .landing_top_container .landing_logo,
body.page-template-countdown_teaser .count_container .landing_top_container .landing_logo {
    height: 12vw;
    background-size: 24vw 12vw;
  }
}
@media (min-width: 1700px) {
  body.page-template-landing .landing_container .landing_top_container .landing_logo,
body.page-template-landing .count_container .landing_top_container .landing_logo,
body.page-template-countdown_teaser .landing_container .landing_top_container .landing_logo,
body.page-template-countdown_teaser .count_container .landing_top_container .landing_logo {
    width: 20vw;
    height: 10vw;
    background-size: 20vw 10vw;
  }
}
body.page-template-landing .landing_container .landing_top_container .video_landing,
body.page-template-landing .count_container .landing_top_container .video_landing,
body.page-template-countdown_teaser .landing_container .landing_top_container .video_landing,
body.page-template-countdown_teaser .count_container .landing_top_container .video_landing {
  max-width: 50vw;
  height: 50vw;
}
@media (min-width: 576px) {
  body.page-template-landing .landing_container .landing_top_container .video_landing,
body.page-template-landing .count_container .landing_top_container .video_landing,
body.page-template-countdown_teaser .landing_container .landing_top_container .video_landing,
body.page-template-countdown_teaser .count_container .landing_top_container .video_landing {
    max-width: 40vw;
    height: 40vw;
  }
}
@media (min-width: 768px) {
  body.page-template-landing .landing_container .landing_top_container .video_landing,
body.page-template-landing .count_container .landing_top_container .video_landing,
body.page-template-countdown_teaser .landing_container .landing_top_container .video_landing,
body.page-template-countdown_teaser .count_container .landing_top_container .video_landing {
    max-width: 30vw;
    height: 30vw;
  }
}
@media (min-width: 992px) {
  body.page-template-landing .landing_container .landing_top_container .video_landing,
body.page-template-landing .count_container .landing_top_container .video_landing,
body.page-template-countdown_teaser .landing_container .landing_top_container .video_landing,
body.page-template-countdown_teaser .count_container .landing_top_container .video_landing {
    max-width: 26vw;
    height: 26vw;
  }
}
@media (min-width: 1200px) {
  body.page-template-landing .landing_container .landing_top_container .video_landing,
body.page-template-landing .count_container .landing_top_container .video_landing,
body.page-template-countdown_teaser .landing_container .landing_top_container .video_landing,
body.page-template-countdown_teaser .count_container .landing_top_container .video_landing {
    max-width: 20vw;
    height: 20vw;
  }
}
@media (min-width: 1700px) {
  body.page-template-landing .landing_container .landing_top_container .video_landing,
body.page-template-landing .count_container .landing_top_container .video_landing,
body.page-template-countdown_teaser .landing_container .landing_top_container .video_landing,
body.page-template-countdown_teaser .count_container .landing_top_container .video_landing {
    max-width: 15vw;
    height: 15vw;
  }
}
body.page-template-landing .landing_container .landing_top_container .video_landing span,
body.page-template-landing .count_container .landing_top_container .video_landing span,
body.page-template-countdown_teaser .landing_container .landing_top_container .video_landing span,
body.page-template-countdown_teaser .count_container .landing_top_container .video_landing span {
  bottom: 15%;
  font-size: 1.2rem;
}
body.page-template-landing .landing_container .landing_top_container .video_landing span br,
body.page-template-landing .count_container .landing_top_container .video_landing span br,
body.page-template-countdown_teaser .landing_container .landing_top_container .video_landing span br,
body.page-template-countdown_teaser .count_container .landing_top_container .video_landing span br {
  display: none;
}
body.page-template-landing .landing_container #curve_landing .black_curve,
body.page-template-landing .count_container #curve_landing .black_curve,
body.page-template-countdown_teaser .landing_container #curve_landing .black_curve,
body.page-template-countdown_teaser .count_container #curve_landing .black_curve {
  background: black;
  clip-path: url(#reveal);
  -webkit-clip-path: url(#reveal);
  padding-top: 5px;
  width: 160%;
  margin-left: -30%;
}
@media (min-width: 992px) {
  body.page-template-landing .landing_container #curve_landing .black_curve,
body.page-template-landing .count_container #curve_landing .black_curve,
body.page-template-countdown_teaser .landing_container #curve_landing .black_curve,
body.page-template-countdown_teaser .count_container #curve_landing .black_curve {
    width: 100%;
    margin-left: 0;
  }
}
body.page-template-landing .landing_container #curve_landing svg,
body.page-template-landing .count_container #curve_landing svg,
body.page-template-countdown_teaser .landing_container #curve_landing svg,
body.page-template-countdown_teaser .count_container #curve_landing svg {
  display: block;
}
body.page-template-landing .landing_container #curve_landing .yellow_curve,
body.page-template-landing .count_container #curve_landing .yellow_curve,
body.page-template-countdown_teaser .landing_container #curve_landing .yellow_curve,
body.page-template-countdown_teaser .count_container #curve_landing .yellow_curve {
  position: relative;
  background: #fcbe04;
  clip-path: url(#reveal);
  -webkit-clip-path: url(#reveal);
}
body.page-template-landing .landing_container #curve_landing .yellow_curve:before,
body.page-template-landing .count_container #curve_landing .yellow_curve:before,
body.page-template-countdown_teaser .landing_container #curve_landing .yellow_curve:before,
body.page-template-countdown_teaser .count_container #curve_landing .yellow_curve:before {
  display: block;
  left: 0;
  top: 0;
  content: "";
  width: 30%;
  height: 100%;
  background: url(../../images/dotted_home_left.png) right top repeat-y;
  position: absolute;
  opacity: 0.7;
  z-index: -1;
}
@media (min-width: 992px) {
  body.page-template-landing .landing_container #curve_landing .yellow_curve:before,
body.page-template-landing .count_container #curve_landing .yellow_curve:before,
body.page-template-countdown_teaser .landing_container #curve_landing .yellow_curve:before,
body.page-template-countdown_teaser .count_container #curve_landing .yellow_curve:before {
    width: 20%;
  }
}
body.page-template-landing .landing_container #curve_landing .yellow_curve:after,
body.page-template-landing .count_container #curve_landing .yellow_curve:after,
body.page-template-countdown_teaser .landing_container #curve_landing .yellow_curve:after,
body.page-template-countdown_teaser .count_container #curve_landing .yellow_curve:after {
  display: block;
  right: 0;
  top: 0;
  content: "";
  width: 30%;
  height: 100%;
  background: url(../../images/dotted_home_right.png) left top repeat-y;
  position: absolute;
  opacity: 0.7;
  z-index: -1;
}
@media (min-width: 992px) {
  body.page-template-landing .landing_container #curve_landing .yellow_curve:after,
body.page-template-landing .count_container #curve_landing .yellow_curve:after,
body.page-template-countdown_teaser .landing_container #curve_landing .yellow_curve:after,
body.page-template-countdown_teaser .count_container #curve_landing .yellow_curve:after {
    width: 20%;
  }
}
body.page-template-landing .landing_container #curve_landing .yellow_curve h1,
body.page-template-landing .count_container #curve_landing .yellow_curve h1,
body.page-template-countdown_teaser .landing_container #curve_landing .yellow_curve h1,
body.page-template-countdown_teaser .count_container #curve_landing .yellow_curve h1 {
  font-family: "wigwag-bold", serif;
  font-size: 1.5rem;
}
body.page-template-landing .landing_container #curve_landing .yellow_curve input[type=submit],
body.page-template-landing .count_container #curve_landing .yellow_curve input[type=submit],
body.page-template-countdown_teaser .landing_container #curve_landing .yellow_curve input[type=submit],
body.page-template-countdown_teaser .count_container #curve_landing .yellow_curve input[type=submit] {
  text-indent: -9999px;
  display: block;
  border: none;
  width: 70px;
  height: 70px;
  background: #fcbe04 url(../../images/button_send.svg) left top no-repeat;
}
body.page-template-landing .landing_container #curve_landing .yellow_curve,
body.page-template-landing .count_container #curve_landing .yellow_curve,
body.page-template-countdown_teaser .landing_container #curve_landing .yellow_curve,
body.page-template-countdown_teaser .count_container #curve_landing .yellow_curve {
  min-height: 50vh;
}

.page-template-confidentialite {
  overflow-y: scroll;
}
.page-template-confidentialite main .popup_container {
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}
@media (max-width: 575.98px) {
  .page-template-confidentialite main .popup_container h1 {
    font-size: 2rem;
  }
}

.confidentialite {
  background: transparent;
  width: 60vw;
  margin: auto;
}
@media (max-width: 767.98px) {
  .confidentialite {
    width: 80vw;
  }
}
.confidentialite .modal-content {
  height: 612px;
}

.confidential {
  background: transparent;
}

body.page-template-distribution {
  position: relative;
  background: url(../../images/home_image.jpg) center center no-repeat;
  background-size: cover;
  overflow-y: visible;
}
body.page-template-distribution .dist_logo_container {
  display: block;
  height: 75vh;
}
@media (min-width: 768px) {
  body.page-template-distribution .dist_logo_container {
    height: 65vh;
  }
}
body.page-template-distribution .dist_logo_container .container {
  height: 100%;
  position: relative;
}
body.page-template-distribution .dist_logo_container .container .dist_logo {
  display: block;
  width: 350px;
  height: 170px;
  position: absolute;
  text-indent: -9999px;
  top: 50%;
  left: 50%;
  margin-left: -175px;
  margin-top: -85px;
  background: url(../../images/Quartier-Saint-Michel-logo-shadow.svg) center center no-repeat;
}
@media (min-width: 1200px) {
  body.page-template-distribution .dist_logo_container .container .dist_logo {
    height: 200px;
  }
}
body.page-template-distribution .dist_texts {
  background: #fcbe04;
  border-top: 5px solid black;
  position: relative;
}
body.page-template-distribution .dist_texts:before {
  display: block;
  left: 0;
  top: 0;
  content: "";
  width: 30%;
  height: 100%;
  background: url(../../images/dotted_home_left.png) right top repeat-y;
  position: absolute;
  opacity: 0.7;
}
@media (min-width: 992px) {
  body.page-template-distribution .dist_texts:before {
    width: 20%;
  }
}
body.page-template-distribution .dist_texts:after {
  display: block;
  right: 0;
  top: 0;
  content: "";
  width: 30%;
  height: 100%;
  background: url(../../images/dotted_home_right.png) left top repeat-y;
  position: absolute;
  opacity: 0.7;
}
@media (min-width: 992px) {
  body.page-template-distribution .dist_texts:after {
    width: 20%;
  }
}
body.page-template-distribution .dist_texts h1.dist_title {
  font-family: "wigwag-bold", serif;
  font-size: 1.8rem;
}
body.page-template-distribution .dist_texts .dist_coordonnees {
  font-family: "wigwag-bold", serif;
  font-size: 1.5rem;
  text-transform: uppercase;
}
body.page-template-distribution .dist_texts .dist_text {
  font-family: "aglet-slab", sans-serif;
  font-weight: 700;
}
body.page-template-distribution .dist_texts .dist_buttons {
  position: absolute;
  width: 100%;
  margin-top: -2rem;
  z-index: 100;
}
body.page-template-distribution .dist_texts .dist_buttons a {
  border: 5px solid black;
  border-radius: 0.75rem;
  padding: 1rem;
  color: black;
  font-family: "wigwag-bold", serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  min-width: 40vw;
  text-align: center;
  display: block;
  cursor: pointer;
}
@media (min-width: 576px) {
  body.page-template-distribution .dist_texts .dist_buttons a {
    min-width: 30vw;
    font-size: 1.5rem;
    letter-spacing: 0.15rem;
  }
}
@media (min-width: 992px) {
  body.page-template-distribution .dist_texts .dist_buttons a {
    font-size: 2.2rem;
    letter-spacing: 0.25rem;
  }
}
@media (min-width: 1200px) {
  body.page-template-distribution .dist_texts .dist_buttons a {
    min-width: 25vw;
  }
}
@media (min-width: 1700px) {
  body.page-template-distribution .dist_texts .dist_buttons a {
    min-width: 15vw;
  }
}
body.page-template-distribution .dist_texts .dist_buttons .location_link {
  background: #00acb9;
}
body.page-template-distribution .dist_texts .dist_buttons .vente_link {
  background: #ef7500;
}
