@charset "UTF-8";
/*
    1. For developers: Copy this url and put it in the config.
    2. For media: Paste the Google/Adobe import here:
    @import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*/
/*
button sizing based on padding.
for examples: https://pixelsconverter.com/px-to-rem
*/
: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: #282023;
  --secondary: #7B5A51;
  --success: #00b900;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --tertiary: #375D8E;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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

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

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

body {
  margin: 0;
  font-family: "Quicksand", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  text-align: left;
  background-color: #fff;
}

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

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

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

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

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

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

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

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

dt {
  font-weight: 700;
}

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

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #7B5A51;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: #4d3833;
  text-decoration: underline;
}

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

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

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -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;
}

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

button {
  border-radius: 0;
}

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

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[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] {
  -webkit-box-sizing: border-box;
  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: 3.25rem;
}

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

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

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

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

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

.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: 4px;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
  }

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

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

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

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

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

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

  .row-cols-sm-7 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 14.2857142857%;
    flex: 0 0 14.2857142857%;
    max-width: 14.2857142857%;
  }

  .row-cols-sm-8 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 12.5%;
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }

  .row-cols-sm-9 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 11.1111111111%;
    flex: 0 0 11.1111111111%;
    max-width: 11.1111111111%;
  }

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

  .row-cols-sm-11 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 9.0909090909%;
    flex: 0 0 9.0909090909%;
    max-width: 9.0909090909%;
  }

  .row-cols-sm-12 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
  }

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

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

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

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

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

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

  .row-cols-md-7 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 14.2857142857%;
    flex: 0 0 14.2857142857%;
    max-width: 14.2857142857%;
  }

  .row-cols-md-8 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 12.5%;
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }

  .row-cols-md-9 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 11.1111111111%;
    flex: 0 0 11.1111111111%;
    max-width: 11.1111111111%;
  }

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

  .row-cols-md-11 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 9.0909090909%;
    flex: 0 0 9.0909090909%;
    max-width: 9.0909090909%;
  }

  .row-cols-md-12 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
  }

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

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

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

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

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

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

  .row-cols-lg-7 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 14.2857142857%;
    flex: 0 0 14.2857142857%;
    max-width: 14.2857142857%;
  }

  .row-cols-lg-8 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 12.5%;
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }

  .row-cols-lg-9 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 11.1111111111%;
    flex: 0 0 11.1111111111%;
    max-width: 11.1111111111%;
  }

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

  .row-cols-lg-11 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 9.0909090909%;
    flex: 0 0 9.0909090909%;
    max-width: 9.0909090909%;
  }

  .row-cols-lg-12 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
  }

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

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

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

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

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

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

  .row-cols-xl-7 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 14.2857142857%;
    flex: 0 0 14.2857142857%;
    max-width: 14.2857142857%;
  }

  .row-cols-xl-8 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 12.5%;
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }

  .row-cols-xl-9 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 11.1111111111%;
    flex: 0 0 11.1111111111%;
    max-width: 11.1111111111%;
  }

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

  .row-cols-xl-11 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 9.0909090909%;
    flex: 0 0 9.0909090909%;
    max-width: 9.0909090909%;
  }

  .row-cols-xl-12 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.table-bordered {
  border: 1px solid #DDDDDD;
}
.table-bordered th,
.table-bordered td {
  border: 1px solid #DDDDDD;
}
.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: #000000;
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #c3c1c1;
}
.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #8f8b8d;
}

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

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

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

.table-success,
.table-success > th,
.table-success > td {
  background-color: #b8ebb8;
}
.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #7adb7a;
}

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

.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-tertiary,
.table-tertiary > th,
.table-tertiary > td {
  background-color: #c7d2df;
}
.table-tertiary th,
.table-tertiary td,
.table-tertiary thead th,
.table-tertiary tbody + tbody {
  border-color: #97abc4;
}

.table-hover .table-tertiary:hover {
  background-color: #b7c5d6;
}
.table-hover .table-tertiary:hover > td,
.table-hover .table-tertiary:hover > th {
  background-color: #b7c5d6;
}

.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, .style table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
}
.table .thead-light th, .style table .thead-light th {
  color: #000;
  background-color: #e9ecef;
  border-color: #DDDDDD;
}

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

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

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

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

select.form-control:focus::-ms-value {
  color: #696969;
  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: #000000;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

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

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

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

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

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

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 16px 16px;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: #00b900;
  border-radius: 4px;
}

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

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #00b900;
}
.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: #00b900;
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #00b900;
}
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #00ec00;
  background-color: #00ec00;
}
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 185, 0, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(0, 185, 0, 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: #00b900;
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #00b900;
}
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #00b900;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 185, 0, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(0, 185, 0, 0.25);
}

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

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 16px 16px;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: #dc3545;
  border-radius: 4px;
}

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

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

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

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

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

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

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

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

.btn {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  color: #000000;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.9rem 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  border-radius: 0px;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    -webkit-transition: none;
    transition: none;
  }
}
.btn:hover {
  color: #000000;
  text-decoration: none;
}
.btn:focus, .btn.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 32, 35, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(40, 32, 35, 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: #282023;
  border-color: #282023;
}
.btn-primary:hover {
  color: #fff;
  background-color: #130f10;
  border-color: #0c090a;
}
.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #130f10;
  border-color: #0c090a;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(72, 65, 68, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(72, 65, 68, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #282023;
  border-color: #282023;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0c090a;
  border-color: #050404;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(72, 65, 68, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(72, 65, 68, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #7B5A51;
  border-color: #7B5A51;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #644942;
  border-color: #5c443d;
}
.btn-secondary:focus, .btn-secondary.focus {
  color: #fff;
  background-color: #644942;
  border-color: #5c443d;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(143, 115, 107, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(143, 115, 107, 0.5);
}
.btn-secondary.disabled, .btn-secondary:disabled {
  color: #fff;
  background-color: #7B5A51;
  border-color: #7B5A51;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #5c443d;
  border-color: #553e38;
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(143, 115, 107, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(143, 115, 107, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #00b900;
  border-color: #00b900;
}
.btn-success:hover {
  color: #fff;
  background-color: #009300;
  border-color: #008600;
}
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #009300;
  border-color: #008600;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(38, 196, 38, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(38, 196, 38, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #00b900;
  border-color: #00b900;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #008600;
  border-color: #007900;
}
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(38, 196, 38, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(38, 196, 38, 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;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
  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 {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
  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;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
  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 {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
  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;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
  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 {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
  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;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
  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 {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
  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;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
  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 {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-tertiary {
  color: #fff;
  background-color: #375D8E;
  border-color: #375D8E;
}
.btn-tertiary:hover {
  color: #fff;
  background-color: #2c4b72;
  border-color: #294569;
}
.btn-tertiary:focus, .btn-tertiary.focus {
  color: #fff;
  background-color: #2c4b72;
  border-color: #294569;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(85, 117, 159, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(85, 117, 159, 0.5);
}
.btn-tertiary.disabled, .btn-tertiary:disabled {
  color: #fff;
  background-color: #375D8E;
  border-color: #375D8E;
}
.btn-tertiary:not(:disabled):not(.disabled):active, .btn-tertiary:not(:disabled):not(.disabled).active, .show > .btn-tertiary.dropdown-toggle {
  color: #fff;
  background-color: #294569;
  border-color: #253f60;
}
.btn-tertiary:not(:disabled):not(.disabled):active:focus, .btn-tertiary:not(:disabled):not(.disabled).active:focus, .show > .btn-tertiary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(85, 117, 159, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(85, 117, 159, 0.5);
}

.btn-outline-primary {
  color: #282023;
  border-color: #282023;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #282023;
  border-color: #282023;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 32, 35, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(40, 32, 35, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #282023;
  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: #282023;
  border-color: #282023;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 32, 35, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(40, 32, 35, 0.5);
}

.btn-outline-secondary {
  color: #7B5A51;
  border-color: #7B5A51;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #7B5A51;
  border-color: #7B5A51;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(123, 90, 81, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(123, 90, 81, 0.5);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #7B5A51;
  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: #7B5A51;
  border-color: #7B5A51;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(123, 90, 81, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(123, 90, 81, 0.5);
}

.btn-outline-success {
  color: #00b900;
  border-color: #00b900;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #00b900;
  border-color: #00b900;
}
.btn-outline-success:focus, .btn-outline-success.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 185, 0, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(0, 185, 0, 0.5);
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #00b900;
  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: #00b900;
  border-color: #00b900;
}
.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 185, 0, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(0, 185, 0, 0.5);
}

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

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

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

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

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

.btn-outline-tertiary {
  color: #375D8E;
  border-color: #375D8E;
}
.btn-outline-tertiary:hover {
  color: #fff;
  background-color: #375D8E;
  border-color: #375D8E;
}
.btn-outline-tertiary:focus, .btn-outline-tertiary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(55, 93, 142, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(55, 93, 142, 0.5);
}
.btn-outline-tertiary.disabled, .btn-outline-tertiary:disabled {
  color: #375D8E;
  background-color: transparent;
}
.btn-outline-tertiary:not(:disabled):not(.disabled):active, .btn-outline-tertiary:not(:disabled):not(.disabled).active, .show > .btn-outline-tertiary.dropdown-toggle {
  color: #fff;
  background-color: #375D8E;
  border-color: #375D8E;
}
.btn-outline-tertiary:not(:disabled):not(.disabled):active:focus, .btn-outline-tertiary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-tertiary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(55, 93, 142, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(55, 93, 142, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #7B5A51;
  text-decoration: none;
}
.btn-link:hover {
  color: #4d3833;
  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 {
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    -webkit-transition: none;
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.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: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
  z-index: 1;
}
.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #282023;
  background-color: #282023;
}
.custom-control-input:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 32, 35, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(40, 32, 35, 0.25);
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #6f5961;
}
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #8b6f7a;
  border-color: #8b6f7a;
}
.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}
.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-item {
  margin-bottom: -1px;
}
.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.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: 4px;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #282023;
}

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

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

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

.navbar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}
.navbar .container,
.navbar .container-fluid,
.navbar .container-sm,
.navbar .container-md,
.navbar .container-lg,
.navbar .container-xl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.navbar-brand {
  display: inline-block;
  padding-top: 0.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

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

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

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

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

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

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

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

.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #ffffff;
  background-clip: border-box;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

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

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

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

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

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

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: #F9F9F9;
  border-bottom: 1px solid #ddd;
}
.card-header:first-child {
  border-radius: 3px 3px 0 0;
}
.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: #F9F9F9;
  border-top: 1px solid #ddd;
}
.card-footer:last-child {
  border-radius: 0 0 3px 3px;
}

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

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

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

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

.card-img,
.card-img-top {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

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

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

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

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

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

.breadcrumb-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #000000;
  content: "/";
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #000000;
}

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

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #696969;
  background-color: #fff;
  border: 1px solid #ddd;
}
.page-link:hover {
  z-index: 2;
  color: #fff;
  text-decoration: none;
  background-color: #F9F9F9;
  border-color: #ddd;
}
.page-link:focus {
  z-index: 3;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 32, 35, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(40, 32, 35, 0.25);
}

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

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

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

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

.badge:empty {
  display: none;
}

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

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

.badge-primary {
  color: #fff;
  background-color: #282023;
}
a.badge-primary:hover, a.badge-primary:focus {
  color: #fff;
  background-color: #0c090a;
}
a.badge-primary:focus, a.badge-primary.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 32, 35, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(40, 32, 35, 0.5);
}

.badge-secondary {
  color: #fff;
  background-color: #7B5A51;
}
a.badge-secondary:hover, a.badge-secondary:focus {
  color: #fff;
  background-color: #5c443d;
}
a.badge-secondary:focus, a.badge-secondary.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(123, 90, 81, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(123, 90, 81, 0.5);
}

.badge-success {
  color: #fff;
  background-color: #00b900;
}
a.badge-success:hover, a.badge-success:focus {
  color: #fff;
  background-color: #008600;
}
a.badge-success:focus, a.badge-success.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 185, 0, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(0, 185, 0, 0.5);
}

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

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

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

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

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

.badge-tertiary {
  color: #fff;
  background-color: #375D8E;
}
a.badge-tertiary:hover, a.badge-tertiary:focus {
  color: #fff;
  background-color: #294569;
}
a.badge-tertiary:focus, a.badge-tertiary.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(55, 93, 142, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(55, 93, 142, 0.5);
}

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

.alert-heading {
  color: inherit;
}

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

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

.alert-primary {
  color: #151112;
  background-color: #d4d2d3;
  border-color: #c3c1c1;
}
.alert-primary hr {
  border-top-color: #b6b4b4;
}
.alert-primary .alert-link {
  color: black;
}

.alert-secondary {
  color: #402f2a;
  background-color: #e5dedc;
  border-color: #dad1ce;
}
.alert-secondary hr {
  border-top-color: #cfc3bf;
}
.alert-secondary .alert-link {
  color: #211816;
}

.alert-success {
  color: #006000;
  background-color: #ccf1cc;
  border-color: #b8ebb8;
}
.alert-success hr {
  border-top-color: #a4e5a4;
}
.alert-success .alert-link {
  color: #002d00;
}

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

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

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

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

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

.alert-tertiary {
  color: #1d304a;
  background-color: #d7dfe8;
  border-color: #c7d2df;
}
.alert-tertiary hr {
  border-top-color: #b7c5d6;
}
.alert-tertiary .alert-link {
  color: #0f1825;
}

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

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

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

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

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

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

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

.list-group-item-primary {
  color: #151112;
  background-color: #c3c1c1;
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #151112;
  background-color: #b6b4b4;
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #151112;
  border-color: #151112;
}

.list-group-item-secondary {
  color: #402f2a;
  background-color: #dad1ce;
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #402f2a;
  background-color: #cfc3bf;
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #402f2a;
  border-color: #402f2a;
}

.list-group-item-success {
  color: #006000;
  background-color: #b8ebb8;
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #006000;
  background-color: #a4e5a4;
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #006000;
  border-color: #006000;
}

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

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

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

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

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

.list-group-item-tertiary {
  color: #1d304a;
  background-color: #c7d2df;
}
.list-group-item-tertiary.list-group-item-action:hover, .list-group-item-tertiary.list-group-item-action:focus {
  color: #1d304a;
  background-color: #b7c5d6;
}
.list-group-item-tertiary.list-group-item-action.active {
  color: #fff;
  background-color: #1d304a;
  border-color: #1d304a;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #DDDDDD;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.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: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }

  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
.modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.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: #282023 !important;
}

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

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

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

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

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #008600 !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-tertiary {
  background-color: #375D8E !important;
}

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

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

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

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

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

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

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

.border-left {
  border-left: 1px solid #DDDDDD !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: #282023 !important;
}

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

.border-success {
  border-color: #00b900 !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-tertiary {
  border-color: #375D8E !important;
}

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

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

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

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

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

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

.rounded-left {
  border-top-left-radius: 4px !important;
  border-bottom-left-radius: 4px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

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

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

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

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

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

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

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

  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

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

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

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

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

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

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

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

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

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

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

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

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

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

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

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

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

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

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

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

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

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

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

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

  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .float-xl-none {
    float: none !important;
  }
}
.user-select-all {
  -webkit-user-select: all !important;
  -moz-user-select: all !important;
  -ms-user-select: all !important;
  user-select: all !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shadow {
  -webkit-box-shadow: 0px 0px 10px #0000000D !important;
  box-shadow: 0px 0px 10px #0000000D !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mb-0, #page.products-specific .area-title,
.my-0 {
  margin-bottom: 0 !important;
}

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

.m-1, .gap-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, .gap-2 {
  margin: 0.5rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pr-1,
.px-1,
.gap-1 > [class*=col-] {
  padding-right: 0.25rem !important;
}

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

.pl-1,
.px-1,
.gap-1 > [class*=col-] {
  padding-left: 0.25rem !important;
}

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

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

.pr-2,
.px-2,
.gap-2 > [class*=col-] {
  padding-right: 0.5rem !important;
}

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

.pl-2,
.px-2,
.gap-2 > [class*=col-] {
  padding-left: 0.5rem !important;
}

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

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

.pr-3,
.px-3,
.gap-3 > [class*=col-] {
  padding-right: 1rem !important;
}

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

.pl-3,
.px-3,
.gap-3 > [class*=col-] {
  padding-left: 1rem !important;
}

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

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

.pr-4,
.px-4,
.gap-4 > [class*=col-] {
  padding-right: 1.5rem !important;
}

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

.pl-4,
.px-4,
.gap-4 > [class*=col-] {
  padding-left: 1.5rem !important;
}

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

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

.pr-5,
.px-5,
.gap-5 > [class*=col-] {
  padding-right: 3rem !important;
}

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

.pl-5,
.px-5,
.gap-5 > [class*=col-] {
  padding-left: 3rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .mb-sm-5,
.my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
.mx-sm-5 {
    margin-left: 3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
.py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
.px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
.py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
.px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .pt-sm-1,
.py-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1,
.px-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1,
.py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1,
.px-sm-1 {
    padding-left: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .pt-sm-2,
.py-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2,
.px-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2,
.py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2,
.px-sm-2 {
    padding-left: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,
.py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
.px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
.py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
.px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,
.py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
.px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
.py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
.px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,
.py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
.px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
.py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
.px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-n1 {
    margin: -0.25rem !important;
  }

  .mt-sm-n1,
.my-sm-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-sm-n1,
.mx-sm-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-sm-n1,
.my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-sm-n1,
.mx-sm-n1 {
    margin-left: -0.25rem !important;
  }

  .m-sm-n2 {
    margin: -0.5rem !important;
  }

  .mt-sm-n2,
.my-sm-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-sm-n2,
.mx-sm-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-sm-n2,
.my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-sm-n2,
.mx-sm-n2 {
    margin-left: -0.5rem !important;
  }

  .m-sm-n3 {
    margin: -1rem !important;
  }

  .mt-sm-n3,
.my-sm-n3 {
    margin-top: -1rem !important;
  }

  .mr-sm-n3,
.mx-sm-n3 {
    margin-right: -1rem !important;
  }

  .mb-sm-n3,
.my-sm-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-sm-n3,
.mx-sm-n3 {
    margin-left: -1rem !important;
  }

  .m-sm-n4 {
    margin: -1.5rem !important;
  }

  .mt-sm-n4,
.my-sm-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-sm-n4,
.mx-sm-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-sm-n4,
.my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-sm-n4,
.mx-sm-n4 {
    margin-left: -1.5rem !important;
  }

  .m-sm-n5 {
    margin: -3rem !important;
  }

  .mt-sm-n5,
.my-sm-n5 {
    margin-top: -3rem !important;
  }

  .mr-sm-n5,
.mx-sm-n5 {
    margin-right: -3rem !important;
  }

  .mb-sm-n5,
.my-sm-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-sm-n5,
.mx-sm-n5 {
    margin-left: -3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
.my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
.mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
.my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
.mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
.my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
.mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
.my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
.mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .mt-md-1,
.my-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1,
.mx-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1,
.my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1,
.mx-md-1 {
    margin-left: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .mt-md-2,
.my-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2,
.mx-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2,
.my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2,
.mx-md-2 {
    margin-left: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,
.my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
.mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
.my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
.mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,
.my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
.mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
.my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
.mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,
.my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
.mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
.my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
.mx-md-5 {
    margin-left: 3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
.py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
.px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
.py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
.px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .pt-md-1,
.py-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1,
.px-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1,
.py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1,
.px-md-1 {
    padding-left: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .pt-md-2,
.py-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2,
.px-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2,
.py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2,
.px-md-2 {
    padding-left: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,
.py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
.px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
.py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
.px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,
.py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
.px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
.py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
.px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,
.py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
.px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
.py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
.px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-n1 {
    margin: -0.25rem !important;
  }

  .mt-md-n1,
.my-md-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-md-n1,
.mx-md-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-md-n1,
.my-md-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-md-n1,
.mx-md-n1 {
    margin-left: -0.25rem !important;
  }

  .m-md-n2 {
    margin: -0.5rem !important;
  }

  .mt-md-n2,
.my-md-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-md-n2,
.mx-md-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-md-n2,
.my-md-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-md-n2,
.mx-md-n2 {
    margin-left: -0.5rem !important;
  }

  .m-md-n3 {
    margin: -1rem !important;
  }

  .mt-md-n3,
.my-md-n3 {
    margin-top: -1rem !important;
  }

  .mr-md-n3,
.mx-md-n3 {
    margin-right: -1rem !important;
  }

  .mb-md-n3,
.my-md-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-md-n3,
.mx-md-n3 {
    margin-left: -1rem !important;
  }

  .m-md-n4 {
    margin: -1.5rem !important;
  }

  .mt-md-n4,
.my-md-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-md-n4,
.mx-md-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-md-n4,
.my-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-md-n4,
.mx-md-n4 {
    margin-left: -1.5rem !important;
  }

  .m-md-n5 {
    margin: -3rem !important;
  }

  .mt-md-n5,
.my-md-n5 {
    margin-top: -3rem !important;
  }

  .mr-md-n5,
.mx-md-n5 {
    margin-right: -3rem !important;
  }

  .mb-md-n5,
.my-md-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-md-n5,
.mx-md-n5 {
    margin-left: -3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
.my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
.mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
.my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
.mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
.my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
.mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
.my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
.mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1,
.my-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1,
.mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1,
.my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1,
.mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2,
.my-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2,
.mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2,
.my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2,
.mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
.my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
.mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
.my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
.mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
.my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
.mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
.my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
.mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
.my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
.mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
.my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
.mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
.py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
.px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
.py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
.px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1,
.py-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1,
.px-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1,
.py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1,
.px-lg-1 {
    padding-left: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2,
.py-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2,
.px-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2,
.py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2,
.px-lg-2 {
    padding-left: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
.py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
.px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
.py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
.px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
.py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
.px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
.py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
.px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
.py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
.px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
.py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
.px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-n1 {
    margin: -0.25rem !important;
  }

  .mt-lg-n1,
.my-lg-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-lg-n1,
.mx-lg-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-lg-n1,
.my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-lg-n1,
.mx-lg-n1 {
    margin-left: -0.25rem !important;
  }

  .m-lg-n2 {
    margin: -0.5rem !important;
  }

  .mt-lg-n2,
.my-lg-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-lg-n2,
.mx-lg-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-lg-n2,
.my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-lg-n2,
.mx-lg-n2 {
    margin-left: -0.5rem !important;
  }

  .m-lg-n3 {
    margin: -1rem !important;
  }

  .mt-lg-n3,
.my-lg-n3 {
    margin-top: -1rem !important;
  }

  .mr-lg-n3,
.mx-lg-n3 {
    margin-right: -1rem !important;
  }

  .mb-lg-n3,
.my-lg-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-lg-n3,
.mx-lg-n3 {
    margin-left: -1rem !important;
  }

  .m-lg-n4 {
    margin: -1.5rem !important;
  }

  .mt-lg-n4,
.my-lg-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-lg-n4,
.mx-lg-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-lg-n4,
.my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-lg-n4,
.mx-lg-n4 {
    margin-left: -1.5rem !important;
  }

  .m-lg-n5 {
    margin: -3rem !important;
  }

  .mt-lg-n5,
.my-lg-n5 {
    margin-top: -3rem !important;
  }

  .mr-lg-n5,
.mx-lg-n5 {
    margin-right: -3rem !important;
  }

  .mb-lg-n5,
.my-lg-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-lg-n5,
.mx-lg-n5 {
    margin-left: -3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
.my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
.mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
.my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
.mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
.my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
.mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
.my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
.mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .mt-xl-1,
.my-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xl-1,
.mx-xl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xl-1,
.my-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xl-1,
.mx-xl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .mt-xl-2,
.my-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-2,
.mx-xl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-2,
.my-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-2,
.mx-xl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3,
.my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3,
.mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3,
.my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3,
.mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4,
.my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4,
.mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4,
.my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4,
.mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,
.my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,
.mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,
.my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,
.mx-xl-5 {
    margin-left: 3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
.py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
.px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
.py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
.px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .pt-xl-1,
.py-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xl-1,
.px-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xl-1,
.py-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xl-1,
.px-xl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .pt-xl-2,
.py-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-2,
.px-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-2,
.py-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-2,
.px-xl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3,
.py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3,
.px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3,
.py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3,
.px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4,
.py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4,
.px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4,
.py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4,
.px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,
.py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,
.px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,
.py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,
.px-xl-5 {
    padding-left: 3rem !important;
  }

  .m-xl-n1 {
    margin: -0.25rem !important;
  }

  .mt-xl-n1,
.my-xl-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-xl-n1,
.mx-xl-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-xl-n1,
.my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xl-n1,
.mx-xl-n1 {
    margin-left: -0.25rem !important;
  }

  .m-xl-n2 {
    margin: -0.5rem !important;
  }

  .mt-xl-n2,
.my-xl-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-xl-n2,
.mx-xl-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-xl-n2,
.my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xl-n2,
.mx-xl-n2 {
    margin-left: -0.5rem !important;
  }

  .m-xl-n3 {
    margin: -1rem !important;
  }

  .mt-xl-n3,
.my-xl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xl-n3,
.mx-xl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xl-n3,
.my-xl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xl-n3,
.mx-xl-n3 {
    margin-left: -1rem !important;
  }

  .m-xl-n4 {
    margin: -1.5rem !important;
  }

  .mt-xl-n4,
.my-xl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xl-n4,
.mx-xl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xl-n4,
.my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xl-n4,
.mx-xl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xl-n5 {
    margin: -3rem !important;
  }

  .mt-xl-n5,
.my-xl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xl-n5,
.mx-xl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xl-n5,
.my-xl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xl-n5,
.mx-xl-n5 {
    margin-left: -3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
.my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
.mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
.my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
.mx-xl-auto {
    margin-left: auto !important;
  }
}
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #282023 !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: black !important;
}

.text-secondary {
  color: #7B5A51 !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #4d3833 !important;
}

.text-success {
  color: #00b900 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #006d00 !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-tertiary {
  color: #375D8E !important;
}

a.text-tertiary:hover, a.text-tertiary:focus {
  color: #223957 !important;
}

.text-body {
  color: #000000 !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-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {
  *,
*::before,
*::after {
    text-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
img {
    page-break-inside: avoid;
  }

  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
h3 {
    page-break-after: avoid;
  }

  @page {
    size: a3;
  }
  body {
    min-width: 992px !important;
  }

  .container {
    min-width: 992px !important;
  }

  .navbar {
    display: none;
  }

  .badge {
    border: 1px solid #000;
  }

  .table, .style table {
    border-collapse: collapse !important;
  }
  .table td, .style table td,
.table th,
.style table th {
    background-color: #fff !important;
  }

  .table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6 !important;
  }

  .table-dark {
    color: inherit;
  }
  .table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
    border-color: #DDDDDD;
  }

  .table .thead-dark th, .style table .thead-dark th {
    color: inherit;
    border-color: #DDDDDD;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: "Quicksand", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 1;
}
.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[x-placement^=top] {
  padding: 0.4rem 0;
}
.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=top] .arrow {
  bottom: 0;
}
.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=top] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #fff;
}

.bs-tooltip-right, .bs-tooltip-auto[x-placement^=right] {
  padding: 0 0.4rem;
}
.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=right] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=right] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #fff;
}

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=bottom] {
  padding: 0.4rem 0;
}
.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=bottom] .arrow {
  top: 0;
}
.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #fff;
}

.bs-tooltip-left, .bs-tooltip-auto[x-placement^=left] {
  padding: 0 0.4rem;
}
.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=left] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=left] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #fff;
}

.tooltip-inner {
  max-width: 230px;
  padding: 16px 16px;
  color: #696969;
  text-align: center;
  background-color: #fff;
  border-radius: 4px;
}

.btn-light {
  color: #212529;
  background-color: #fff;
  border-color: #cccccc;
  color: #282023;
}
.btn-light:hover, .btn-light.hover, .card-vacancy-b:hover .card-footer .btn-light.btn, .card-vacancy-a:hover .card-footer .btn-light.btn, .card-product-d:hover .card-footer .btn-light.btn, .card-product-b-upsell:hover .btn-light.btn, .card-product-a:hover .btn-light.btn, .event-a:hover .card-footer .btn-light.btn, .card-download-a:hover .card-footer .btn-light.btn, .card-application-a:hover .card-footer .btn-light.btn, .card-uber-e:hover .card-footer .btn-light.btn, .card-uber-d:hover .card-footer .btn-light.btn, .card-uber-b:hover .card-footer .btn-light.btn {
  color: #fff;
  background-color: #282023;
  border-color: #282023;
}
.btn-light:focus, .btn-light.focus {
  color: #fff;
  background-color: #282023;
  border-color: #282023;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(178, 179, 180, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(178, 179, 180, 0.5);
}
.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #fff;
  border-color: #cccccc;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(178, 179, 180, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(178, 179, 180, 0.5);
}
.btn-light:hover {
  color: #fff !important;
}

.btn-outline-primary {
  background-color: transparent;
}
.btn-outline-primary:hover, .btn-outline-primary.hover, .card-vacancy-b:hover .card-footer .btn-outline-primary.btn, .card-vacancy-a:hover .card-footer .btn-outline-primary.btn, .card-product-d:hover .card-footer .btn-outline-primary.btn, .card-product-b-upsell:hover .btn-outline-primary.btn, .card-product-a:hover .btn-outline-primary.btn, .event-a:hover .card-footer .btn-outline-primary.btn, .card-download-a:hover .card-footer .btn-outline-primary.btn, .card-application-a:hover .card-footer .btn-outline-primary.btn, .card-uber-e:hover .card-footer .btn-outline-primary.btn, .card-uber-d:hover .card-footer .btn-outline-primary.btn, .card-uber-b:hover .card-footer .btn-outline-primary.btn {
  background-color: #282023;
  color: #fff;
}

.btn-outline-secondary {
  background-color: #fff;
}
.btn-outline-secondary:hover, .btn-outline-secondary.hover, .card-vacancy-b:hover .card-footer .btn-outline-secondary.btn, .card-vacancy-a:hover .card-footer .btn-outline-secondary.btn, .card-product-d:hover .card-footer .btn-outline-secondary.btn, .card-product-b-upsell:hover .btn-outline-secondary.btn, .card-product-a:hover .btn-outline-secondary.btn, .event-a:hover .card-footer .btn-outline-secondary.btn, .card-download-a:hover .card-footer .btn-outline-secondary.btn, .card-application-a:hover .card-footer .btn-outline-secondary.btn, .card-uber-e:hover .card-footer .btn-outline-secondary.btn, .card-uber-d:hover .card-footer .btn-outline-secondary.btn, .card-uber-b:hover .card-footer .btn-outline-secondary.btn {
  background-color: #7B5A51;
  color: #fff;
}

.btn-outline-tertiary {
  background-color: #fff;
}
.btn-outline-tertiary:hover, .btn-outline-tertiary.hover, .card-vacancy-b:hover .card-footer .btn-outline-tertiary.btn, .card-vacancy-a:hover .card-footer .btn-outline-tertiary.btn, .card-product-d:hover .card-footer .btn-outline-tertiary.btn, .card-product-b-upsell:hover .btn-outline-tertiary.btn, .card-product-a:hover .btn-outline-tertiary.btn, .event-a:hover .card-footer .btn-outline-tertiary.btn, .card-download-a:hover .card-footer .btn-outline-tertiary.btn, .card-application-a:hover .card-footer .btn-outline-tertiary.btn, .card-uber-e:hover .card-footer .btn-outline-tertiary.btn, .card-uber-d:hover .card-footer .btn-outline-tertiary.btn, .card-uber-b:hover .card-footer .btn-outline-tertiary.btn {
  background-color: #375D8E;
  color: #fff;
}

.btn-banner-contact {
  border: 1px solid #fff;
  border-radius: 4px;
}
.btn-banner-contact i {
  color: #fff;
  font-size: 18px;
}

input {
  font-size: 16px !important;
}
@media (max-width: 991.98px) {
  input {
    font-size: 16px !important;
  }
}

.btn {
  font-size: 15px;
}
@media (max-width: 991.98px) {
  .btn {
    font-size: 14px;
  }
}
.btn img {
  width: 15px;
  height: 15px;
}
.btn.disabled {
  pointer-events: none;
  cursor: default;
}

.btn-sm, .btn-group-sm > .btn {
  font-size: 14px !important;
  border-radius: 0px !important;
}
@media (max-width: 991.98px) {
  .btn-sm, .btn-group-sm > .btn {
    font-size: 12px;
  }
}

.btn-lg, .btn-group-lg > .btn {
  font-size: 20px !important;
  border-radius: 0px !important;
}
@media (max-width: 991.98px) {
  .btn-lg, .btn-group-lg > .btn {
    font-size: 18px;
  }
}

.overflow-x-auto-y-hidden {
  overflow-x: auto;
  overflow-y: hidden;
}

.white-space-nowrap {
  white-space: nowrap;
}

.modal .modal-header {
  background-color: #fff;
}
.modal .modal-title {
  color: #000000;
  font-weight: 500;
  font-size: 16px;
}
.modal button.close {
  color: #000000;
  opacity: 0.5;
}
.modal .modal-body {
  color: #000000;
  font-size: 16px;
  background-color: #fff;
}
.modal .modal-body p {
  color: inherit;
  font-size: inherit;
}
.modal .modal-body p:last-child {
  margin-bottom: 0px;
}

.header-popup .modal-content {
  border-radius: 0px 0px 4px 4px;
}
.header-popup .modal-content .modal-header {
  border-bottom: 0px;
  padding-bottom: 0;
}
.header-popup .modal-content .modal-body {
  padding-top: 0;
}
.header-popup .modal-content .modal-title {
  font-size: 18px;
  font-weight: bold;
}
.header-popup .modal-content .modal-footer {
  border: 0;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}
.header-popup .modal-content .btn {
  font-family: "Quicksand", sans-serif;
}

.tooltip .tooltip-inner {
  border: 1px solid #DDDDDD;
  font-family: "Quicksand", sans-serif;
  text-align: left;
  line-height: 23px;
}

.order-end {
  -webkit-box-ordinal-group: 1000000;
  -ms-flex-order: 999999;
  order: 999999;
}
.order-before-end {
  -webkit-box-ordinal-group: 999999;
  -ms-flex-order: 999998;
  order: 999998;
}
.order-before-before-end {
  -webkit-box-ordinal-group: 999998;
  -ms-flex-order: 999997;
  order: 999997;
}

.no-collapsing-animation.collapsing {
  -webkit-transition: none !important;
  transition: none !important;
}

.owl-theme .owl-dots .active span {
  background: #282023 !important;
}
.owl-theme .owl-dots span {
  background: #7B5A51 !important;
}

@media (max-width: 767.98px) {
  .btn-sm-block {
    width: 100%;
  }
}
@media (min-width: 576px) {
  .dont-collapse-sm {
    display: block !important;
    height: auto !important;
    visibility: visible !important;
  }
}
@media (max-width: 991.98px) {
  .btn-md-block {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .dont-collapse-md {
    display: block !important;
    height: auto !important;
    visibility: visible !important;
  }
}
@media (max-width: 1199.98px) {
  .btn-lg-block {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .dont-collapse-lg {
    display: block !important;
    height: auto !important;
    visibility: visible !important;
  }
}
.btn-xl-block {
  width: 100%;
}

@media (min-width: 1200px) {
  .dont-collapse-xl {
    display: block !important;
    height: auto !important;
    visibility: visible !important;
  }
}
.custom-switch.custom-switch-sm .custom-control-label {
  padding-left: 0rem;
  padding-bottom: 1rem;
}
.custom-switch.custom-switch-sm .custom-control-label::before {
  height: 1rem;
  width: calc(1rem + 0.75rem);
  border-radius: 2rem;
}
.custom-switch.custom-switch-sm .custom-control-label::after {
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  border-radius: calc(1rem - (1rem / 2));
}
.custom-switch.custom-switch-sm .custom-control-input:checked ~ .custom-control-label::after {
  -webkit-transform: translateX(calc(1rem - 0.25rem));
  transform: translateX(calc(1rem - 0.25rem));
}

.custom-switch.custom-switch-md .custom-control-label {
  padding-left: 0.5rem;
  padding-bottom: 1.5rem;
}
.custom-switch.custom-switch-md .custom-control-label::before {
  height: 1.5rem;
  width: calc(2rem + 0.75rem);
  border-radius: 3rem;
}
.custom-switch.custom-switch-md .custom-control-label::after {
  width: calc(1.5rem - 4px);
  height: calc(1.5rem - 4px);
  border-radius: calc(2rem - (1.5rem / 2));
}
.custom-switch.custom-switch-md .custom-control-input:checked ~ .custom-control-label::after {
  -webkit-transform: translateX(calc(1.5rem - 0.25rem));
  transform: translateX(calc(1.5rem - 0.25rem));
}

.custom-switch.custom-switch-lg .custom-control-label {
  padding-left: 1.5rem;
  padding-bottom: 2rem;
}
.custom-switch.custom-switch-lg .custom-control-label::before {
  height: 2rem;
  width: calc(3rem + 0.75rem);
  border-radius: 4rem;
}
.custom-switch.custom-switch-lg .custom-control-label::after {
  width: calc(2rem - 4px);
  height: calc(2rem - 4px);
  border-radius: calc(3rem - (2rem / 2));
}
.custom-switch.custom-switch-lg .custom-control-input:checked ~ .custom-control-label::after {
  -webkit-transform: translateX(calc(2rem - 0.25rem));
  transform: translateX(calc(2rem - 0.25rem));
}

.custom-switch.custom-switch-xl .custom-control-label {
  padding-left: 4rem;
  padding-bottom: 2.5rem;
}
.custom-switch.custom-switch-xl .custom-control-label::before {
  height: 2.5rem;
  width: calc(4rem + 0.75rem);
  border-radius: 5rem;
}
.custom-switch.custom-switch-xl .custom-control-label::after {
  width: calc(2.5rem - 4px);
  height: calc(2.5rem - 4px);
  border-radius: calc(4rem - (2.5rem / 2));
}
.custom-switch.custom-switch-xl .custom-control-input:checked ~ .custom-control-label::after {
  -webkit-transform: translateX(calc(2.5rem - 0.25rem));
  transform: translateX(calc(2.5rem - 0.25rem));
}

/* Base (xs) */
.offset-right-0 {
  margin-right: 0;
}

.offset-right-1 {
  margin-right: 8.333333%;
}

.offset-right-2 {
  margin-right: 16.666667%;
}

.offset-right-3 {
  margin-right: 25%;
}

.offset-right-4 {
  margin-right: 33.333333%;
}

.offset-right-5 {
  margin-right: 41.666667%;
}

.offset-right-6 {
  margin-right: 50%;
}

.offset-right-7 {
  margin-right: 58.333333%;
}

.offset-right-8 {
  margin-right: 66.666667%;
}

.offset-right-9 {
  margin-right: 75%;
}

.offset-right-10 {
  margin-right: 83.333333%;
}

.offset-right-11 {
  margin-right: 91.666667%;
}

/* SM */
@media (min-width: 576px) {
  .offset-right-sm-0 {
    margin-right: 0;
  }

  .offset-right-sm-1 {
    margin-right: 8.333333%;
  }

  .offset-right-sm-2 {
    margin-right: 16.666667%;
  }

  .offset-right-sm-3 {
    margin-right: 25%;
  }

  .offset-right-sm-4 {
    margin-right: 33.333333%;
  }

  .offset-right-sm-5 {
    margin-right: 41.666667%;
  }

  .offset-right-sm-6 {
    margin-right: 50%;
  }

  .offset-right-sm-7 {
    margin-right: 58.333333%;
  }

  .offset-right-sm-8 {
    margin-right: 66.666667%;
  }

  .offset-right-sm-9 {
    margin-right: 75%;
  }

  .offset-right-sm-10 {
    margin-right: 83.333333%;
  }

  .offset-right-sm-11 {
    margin-right: 91.666667%;
  }
}
/* MD */
@media (min-width: 768px) {
  .offset-right-md-0 {
    margin-right: 0;
  }

  .offset-right-md-1 {
    margin-right: 8.333333%;
  }

  .offset-right-md-2 {
    margin-right: 16.666667%;
  }

  .offset-right-md-3 {
    margin-right: 25%;
  }

  .offset-right-md-4 {
    margin-right: 33.333333%;
  }

  .offset-right-md-5 {
    margin-right: 41.666667%;
  }

  .offset-right-md-6 {
    margin-right: 50%;
  }

  .offset-right-md-7 {
    margin-right: 58.333333%;
  }

  .offset-right-md-8 {
    margin-right: 66.666667%;
  }

  .offset-right-md-9 {
    margin-right: 75%;
  }

  .offset-right-md-10 {
    margin-right: 83.333333%;
  }

  .offset-right-md-11 {
    margin-right: 91.666667%;
  }
}
/* LG */
@media (min-width: 992px) {
  .offset-right-lg-0 {
    margin-right: 0;
  }

  .offset-right-lg-1 {
    margin-right: 8.333333%;
  }

  .offset-right-lg-2 {
    margin-right: 16.666667%;
  }

  .offset-right-lg-3 {
    margin-right: 25%;
  }

  .offset-right-lg-4 {
    margin-right: 33.333333%;
  }

  .offset-right-lg-5 {
    margin-right: 41.666667%;
  }

  .offset-right-lg-6 {
    margin-right: 50%;
  }

  .offset-right-lg-7 {
    margin-right: 58.333333%;
  }

  .offset-right-lg-8 {
    margin-right: 66.666667%;
  }

  .offset-right-lg-9 {
    margin-right: 75%;
  }

  .offset-right-lg-10 {
    margin-right: 83.333333%;
  }

  .offset-right-lg-11 {
    margin-right: 91.666667%;
  }
}
/* XL */
@media (min-width: 1200px) {
  .offset-right-xl-0 {
    margin-right: 0;
  }

  .offset-right-xl-1 {
    margin-right: 8.333333%;
  }

  .offset-right-xl-2 {
    margin-right: 16.666667%;
  }

  .offset-right-xl-3 {
    margin-right: 25%;
  }

  .offset-right-xl-4 {
    margin-right: 33.333333%;
  }

  .offset-right-xl-5 {
    margin-right: 41.666667%;
  }

  .offset-right-xl-6 {
    margin-right: 50%;
  }

  .offset-right-xl-7 {
    margin-right: 58.333333%;
  }

  .offset-right-xl-8 {
    margin-right: 66.666667%;
  }

  .offset-right-xl-9 {
    margin-right: 75%;
  }

  .offset-right-xl-10 {
    margin-right: 83.333333%;
  }

  .offset-right-xl-11 {
    margin-right: 91.666667%;
  }
}
.panel {
  border: 1px solid #DDDDDD !important;
  border-radius: 0.375rem;
}
.panel .panel-header {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
  border-bottom: 1px solid #DDDDDD !important;
  background-color: #F9F9F9;
}
.panel .panel-title {
  margin-top: 0;
  margin-bottom: 0;
}
.panel .panel-body {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.panel-container-center {
  background-color: #fff;
  max-width: 685px;
  margin: 0 auto;
}

.panel-container-center-default {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 12px #3B3B3B0A;
  box-shadow: 0px 0px 12px #3B3B3B0A;
}

.panel-container-center-second {
  background-color: #696969;
}

.ratio {
  width: 100%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}
.ratio.ratio-cover .inner img {
  -o-object-fit: cover;
  object-fit: cover;
}
.ratio.ratio-contain .inner img {
  -o-object-fit: contain;
  object-fit: contain;
}
.ratio.ratio-16x10 {
  padding-top: 62.5%;
}
.ratio.ratio-10x16 {
  padding-top: 160%;
}
.ratio.ratio-21x9 {
  padding-top: 42.85714286%;
}
.ratio.ratio-9x21 {
  padding-top: 233.33333333%;
}
.ratio.ratio-16x9 {
  padding-top: 56.25%;
}
.ratio.ratio-8x5 {
  padding-top: 62.5%;
}
.ratio.ratio-6x7 {
  padding-top: 116.6667%;
}
.ratio.ratio-5x4 {
  padding-top: 80%;
}
.ratio.ratio-5x3 {
  padding-top: 60%;
}
.ratio.ratio-4x5 {
  padding-top: 125%;
}
.ratio.ratio-4x3 {
  padding-top: 75%;
}
.ratio.ratio-4x1 {
  padding-top: 25%;
}
.ratio.ratio-3x4 {
  padding-top: 133.33333333%;
}
.ratio.ratio-3x5 {
  padding-top: 166.66666667%;
}
.ratio.ratio-2x3 {
  padding-top: 150%;
}
.ratio.ratio-3x2 {
  padding-top: 66.66%;
}
.ratio.ratio-2x1 {
  padding-top: 50%;
}
.ratio.ratio-1x2 {
  padding-top: 200%;
}
.ratio.ratio-1x1 {
  padding-top: 100%;
}
.ratio .inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.ratio .inner img {
  width: 100%;
  height: 100%;
}

.widget-kiyoh {
  position: fixed;
  right: 0;
  top: 40%;
  border: 1px solid #545454;
  border-right: none;
  width: 135px;
  height: auto;
  text-align: right;
  vertical-align: middle;
  background: #545454;
  z-index: 99;
}
@media (max-width: 767.98px) {
  .widget-kiyoh {
    display: none;
  }
}

.widget-whatsapp {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 99;
}
.widget-whatsapp .fa-circle {
  color: #25d366;
}
.widget-whatsapp .fa-whatsapp {
  color: #fff;
}
.widget-whatsapp .notification {
  text-align: center;
  width: 15px;
  height: 15px;
  line-height: 15px;
  position: fixed;
  right: 33px;
  bottom: 68px;
  z-index: 100;
  font-size: 9px !important;
  background: #DC3545;
  color: #fff !important;
}
@media (max-width: 991.98px) {
  .widget-whatsapp .notification {
    right: 25px;
    bottom: 55px;
  }
}
@media (max-width: 991.98px) {
  .widget-whatsapp.widget-higher-default {
    bottom: 65px;
  }
  .widget-whatsapp.widget-higher-default .notification {
    bottom: 105px;
  }
  .widget-whatsapp.widget-higher-specific {
    bottom: 85px;
  }
  .widget-whatsapp.widget-higher-specific .notification {
    bottom: 125px;
  }
}

.grecaptcha-badge {
  display: none !important;
}

.style-form,
.style-primary,
.style-secondary,
.style-tertiary {
  text-align: left;
}
.style-form label,
.style-primary label,
.style-secondary label,
.style-tertiary label {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  cursor: pointer;
}
@media (max-width: 991.98px) {
  .style-form label,
.style-primary label,
.style-secondary label,
.style-tertiary label {
    font-size: 14px;
  }
}
.style-form label.required::after,
.style-primary label.required::after,
.style-secondary label.required::after,
.style-tertiary label.required::after {
  content: " *";
  position: relative;
  top: -0.5em;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
  color: #545454;
}
.style-form select[readonly],
.style-primary select[readonly],
.style-secondary select[readonly],
.style-tertiary select[readonly] {
  pointer-events: none;
}
.style-form input:focus,
.style-form textarea:focus,
.style-form select:focus,
.style-form button:focus,
.style-primary input:focus,
.style-primary textarea:focus,
.style-primary select:focus,
.style-primary button:focus,
.style-secondary input:focus,
.style-secondary textarea:focus,
.style-secondary select:focus,
.style-secondary button:focus,
.style-tertiary input:focus,
.style-tertiary textarea:focus,
.style-tertiary select:focus,
.style-tertiary button:focus {
  outline: none !important;
  outline-width: 0 !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.style-form ::-webkit-input-placeholder, .style-primary ::-webkit-input-placeholder, .style-secondary ::-webkit-input-placeholder, .style-tertiary ::-webkit-input-placeholder {
  font-weight: 200;
  color: #BAC1C6;
}
.style-form ::-moz-placeholder, .style-primary ::-moz-placeholder, .style-secondary ::-moz-placeholder, .style-tertiary ::-moz-placeholder {
  font-weight: 200;
  color: #BAC1C6;
}
.style-form :-ms-input-placeholder, .style-primary :-ms-input-placeholder, .style-secondary :-ms-input-placeholder, .style-tertiary :-ms-input-placeholder {
  font-weight: 200;
  color: #BAC1C6;
}
.style-form ::-ms-input-placeholder, .style-primary ::-ms-input-placeholder, .style-secondary ::-ms-input-placeholder, .style-tertiary ::-ms-input-placeholder {
  font-weight: 200;
  color: #BAC1C6;
}
.style-form ::placeholder,
.style-primary ::placeholder,
.style-secondary ::placeholder,
.style-tertiary ::placeholder {
  font-weight: 200;
  color: #BAC1C6;
}
.style-form input::-ms-reveal,
.style-form input::-ms-clear,
.style-primary input::-ms-reveal,
.style-primary input::-ms-clear,
.style-secondary input::-ms-reveal,
.style-secondary input::-ms-clear,
.style-tertiary input::-ms-reveal,
.style-tertiary input::-ms-clear {
  display: none;
}
.style-form .password-checker-container,
.style-primary .password-checker-container,
.style-secondary .password-checker-container,
.style-tertiary .password-checker-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
}
.style-form .password-checker-container > input,
.style-primary .password-checker-container > input,
.style-secondary .password-checker-container > input,
.style-tertiary .password-checker-container > input {
  border-width: 1px 0px 1px 1px !important;
  border-style: solid !important;
  border-color: #DDDDDD transparent #DDDDDD #DDDDDD !important;
  border-radius: 4px 0px 0px 4px !important;
}
.style-form .password-checker-container span,
.style-primary .password-checker-container span,
.style-secondary .password-checker-container span,
.style-tertiary .password-checker-container span {
  min-width: 30px;
  border-left-color: transparent !important;
  border-radius: 0px 4px 4px 0px !important;
  border-width: 1px 1px 1px 0px !important;
  border-style: solid !important;
  border-color: #DDDDDD #DDDDDD #DDDDDD transparent;
  cursor: pointer;
}
.style-form .password-checker-container span.password-checker,
.style-primary .password-checker-container span.password-checker,
.style-secondary .password-checker-container span.password-checker,
.style-tertiary .password-checker-container span.password-checker {
  background-image: url("../img/eye-password.svg");
  background-repeat: no-repeat;
  background-size: 17px;
  background-position-x: calc(100% - 10px);
  background-position-y: 50%;
}
.style-form .checkbox,
.style-primary .checkbox,
.style-secondary .checkbox,
.style-tertiary .checkbox {
  margin-right: 0.25rem;
  position: relative;
  width: 12px !important;
  height: 12px !important;
}
@media (pointer: fine) {
  .style-form .checkbox:hover:not([disabled]):before,
.style-primary .checkbox:hover:not([disabled]):before,
.style-secondary .checkbox:hover:not([disabled]):before,
.style-tertiary .checkbox:hover:not([disabled]):before {
    background-color: #7B5A51;
    border: 1px solid #7B5A51;
  }
  .style-form .checkbox:hover:not([disabled]):after,
.style-primary .checkbox:hover:not([disabled]):after,
.style-secondary .checkbox:hover:not([disabled]):after,
.style-tertiary .checkbox:hover:not([disabled]):after {
    content: "";
    width: 5.6px;
    height: 9.8px;
    position: absolute;
    z-index: 50;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
    border-bottom: 2.8px solid #fff;
    border-right: 2.8px solid #fff;
    left: 3.85px;
    top: 45%;
    -webkit-transform-origin: top;
    transform-origin: top;
  }
}
.style-form .checkbox:before,
.style-primary .checkbox:before,
.style-secondary .checkbox:before,
.style-tertiary .checkbox:before {
  content: "";
  width: 14px;
  height: 14px;
  background: #fff;
  border: 1px solid #ddd;
  position: absolute;
  z-index: 50;
  border-radius: 4px;
  left: -1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.style-form .checkbox:checked:before,
.style-primary .checkbox:checked:before,
.style-secondary .checkbox:checked:before,
.style-tertiary .checkbox:checked:before {
  background-color: #7B5A51;
  border: 1px solid #7B5A51;
}
.style-form .checkbox:checked:after,
.style-primary .checkbox:checked:after,
.style-secondary .checkbox:checked:after,
.style-tertiary .checkbox:checked:after {
  content: "";
  width: 5.6px;
  height: 9.8px;
  position: absolute;
  z-index: 50;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  border-bottom: 2.8px solid #fff;
  border-right: 2.8px solid #fff;
  left: 3.85px;
  top: 45%;
  -webkit-transform-origin: top;
  transform-origin: top;
}
.style-form .checkbox:disabled,
.style-primary .checkbox:disabled,
.style-secondary .checkbox:disabled,
.style-tertiary .checkbox:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.style-form .checkbox:disabled + label,
.style-primary .checkbox:disabled + label,
.style-secondary .checkbox:disabled + label,
.style-tertiary .checkbox:disabled + label {
  pointer-events: none;
  opacity: 0.5;
}
.style-form .radio,
.style-primary .radio,
.style-secondary .radio,
.style-tertiary .radio {
  margin-right: 0.5rem;
  position: relative;
  width: 12px !important;
  height: 12px !important;
}
@media (pointer: fine) {
  .style-form .radio:hover[disabled]:before,
.style-primary .radio:hover[disabled]:before,
.style-secondary .radio:hover[disabled]:before,
.style-tertiary .radio:hover[disabled]:before {
    background: #7B5A51;
    border: 1px solid #7B5A51;
  }
  .style-form .radio:hover[disabled]:after,
.style-primary .radio:hover[disabled]:after,
.style-secondary .radio:hover[disabled]:after,
.style-tertiary .radio:hover[disabled]:after {
    content: "";
    width: 4.2px;
    height: 8.4px;
    position: absolute;
    z-index: 999;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
    border-bottom: 2.8px solid #fff;
    border-right: 2.8px solid #fff;
    left: 4.9px;
    top: 47%;
    -webkit-transform-origin: top;
    transform-origin: top;
  }
}
.style-form .radio:before,
.style-primary .radio:before,
.style-secondary .radio:before,
.style-tertiary .radio:before {
  content: "";
  width: 14px;
  height: 14px;
  background: #fff;
  border: 1px solid #ddd;
  position: absolute;
  z-index: 999;
  border-radius: 28px;
  left: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.style-form .radio:checked:before,
.style-primary .radio:checked:before,
.style-secondary .radio:checked:before,
.style-tertiary .radio:checked:before {
  background: #7B5A51;
  border: 1px solid #7B5A51;
}
.style-form .radio:checked:after,
.style-primary .radio:checked:after,
.style-secondary .radio:checked:after,
.style-tertiary .radio:checked:after {
  content: "";
  width: 4.2px;
  height: 8.4px;
  position: absolute;
  z-index: 999;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  border-bottom: 2.8px solid #fff;
  border-right: 2.8px solid #fff;
  left: 4.9px;
  top: 47%;
  -webkit-transform-origin: top;
  transform-origin: top;
}
.style-form .radio:disabled,
.style-primary .radio:disabled,
.style-secondary .radio:disabled,
.style-tertiary .radio:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.style-form .radio:disabled + label,
.style-primary .radio:disabled + label,
.style-secondary .radio:disabled + label,
.style-tertiary .radio:disabled + label {
  pointer-events: none;
  opacity: 0.5;
}

.style-primary {
  position: relative;
  background-color: #fff;
  padding-top: 60px;
  padding-bottom: 70px;
}
@media (max-width: 991.98px) {
  .style-primary {
    padding: 30px 0;
  }
}
.style-primary h1, .style-primary .h1,
.style-primary h2, .style-primary .h2,
.style-primary h3, .style-primary .h3,
.style-primary h4, .style-primary .h4,
.style-primary h5, .style-primary .h5,
.style-primary h6, .style-primary .h6,
.style-primary p,
.style-primary ul, .style-primary li, .style-primary ol, .style-primary b, .style-primary strong, .style-primary i, .style-primary s, .style-primary code {
  color: #212529;
}
.style-primary .card-image-background {
  background-color: white;
}
.style-primary .card-image-background.no-image {
  color: #212529 !important;
}
.style-primary .card-image-background.no-image h1, .style-primary .card-image-background.no-image .h1,
.style-primary .card-image-background.no-image h2, .style-primary .card-image-background.no-image .h2,
.style-primary .card-image-background.no-image h3, .style-primary .card-image-background.no-image .h3,
.style-primary .card-image-background.no-image h4, .style-primary .card-image-background.no-image .h4,
.style-primary .card-image-background.no-image h5, .style-primary .card-image-background.no-image .h5,
.style-primary .card-image-background.no-image h6, .style-primary .card-image-background.no-image .h6,
.style-primary .card-image-background.no-image p,
.style-primary .card-image-background.no-image ul, .style-primary .card-image-background.no-image li, .style-primary .card-image-background.no-image ol, .style-primary .card-image-background.no-image b, .style-primary .card-image-background.no-image strong, .style-primary .card-image-background.no-image i, .style-primary .card-image-background.no-image s, .style-primary .card-image-background.no-image code {
  color: inherit !important;
}
.style-primary .card-image-default .card-body {
  background-color: white;
}
.style-primary .carousel-overflow-none.overflow-left .owl-stage-outer::before {
  background-color: #fff;
}
.style-primary .carousel-overflow-none.overflow-right .owl-stage-outer::after {
  background-color: #fff;
}
.style-primary .carousel-gradient::before, .style-primary .carousel-gradient::after {
  top: -60px;
  bottom: -70px;
}
@media (max-width: 991.98px) {
  .style-primary .carousel-gradient::before, .style-primary .carousel-gradient::after {
    top: -30px;
    bottom: -30px;
  }
}
.style-primary .carousel-gradient::before {
  background: transparent -webkit-gradient(linear, left top, right top, from(#fff), color-stop(53%, #F6F6F6B1), to(transparent)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #fff 0%, #F6F6F6B1 53%, transparent 100%) 0% 0% no-repeat padding-box;
}
.style-primary .carousel-gradient::after {
  background: transparent -webkit-gradient(linear, right top, left top, from(#fff), color-stop(53%, #F6F6F6B1), to(transparent)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(270deg, #fff 0%, #F6F6F6B1 53%, transparent 100%) 0% 0% no-repeat padding-box;
}

.style-quaternary {
  position: relative;
  background-color: #D6D6D6;
  padding-top: 60px;
  padding-bottom: 70px;
}
@media (max-width: 991.98px) {
  .style-quaternary {
    padding: 30px 0;
  }
}
.style-quaternary h1, .style-quaternary .h1,
.style-quaternary h2, .style-quaternary .h2,
.style-quaternary h3, .style-quaternary .h3,
.style-quaternary h4, .style-quaternary .h4,
.style-quaternary h5, .style-quaternary .h5,
.style-quaternary h6, .style-quaternary .h6,
.style-quaternary p,
.style-quaternary ul, .style-quaternary li, .style-quaternary ol, .style-quaternary b, .style-quaternary strong, .style-quaternary i, .style-quaternary s, .style-quaternary code {
  color: #212529;
}
.style-quaternary .card-image-background {
  background-color: #f0f0f0;
}
.style-quaternary .card-image-background.no-image {
  color: #212529 !important;
}
.style-quaternary .card-image-background.no-image h1, .style-quaternary .card-image-background.no-image .h1,
.style-quaternary .card-image-background.no-image h2, .style-quaternary .card-image-background.no-image .h2,
.style-quaternary .card-image-background.no-image h3, .style-quaternary .card-image-background.no-image .h3,
.style-quaternary .card-image-background.no-image h4, .style-quaternary .card-image-background.no-image .h4,
.style-quaternary .card-image-background.no-image h5, .style-quaternary .card-image-background.no-image .h5,
.style-quaternary .card-image-background.no-image h6, .style-quaternary .card-image-background.no-image .h6,
.style-quaternary .card-image-background.no-image p,
.style-quaternary .card-image-background.no-image ul, .style-quaternary .card-image-background.no-image li, .style-quaternary .card-image-background.no-image ol, .style-quaternary .card-image-background.no-image b, .style-quaternary .card-image-background.no-image strong, .style-quaternary .card-image-background.no-image i, .style-quaternary .card-image-background.no-image s, .style-quaternary .card-image-background.no-image code {
  color: inherit !important;
}
.style-quaternary .card-image-default .card-body {
  background-color: #f0f0f0;
}
.style-quaternary .carousel-overflow-none.overflow-left .owl-stage-outer::before {
  background-color: #D6D6D6;
}
.style-quaternary .carousel-overflow-none.overflow-right .owl-stage-outer::after {
  background-color: #D6D6D6;
}
.style-quaternary .carousel-gradient::before, .style-quaternary .carousel-gradient::after {
  top: -60px;
  bottom: -70px;
}
@media (max-width: 991.98px) {
  .style-quaternary .carousel-gradient::before, .style-quaternary .carousel-gradient::after {
    top: -30px;
    bottom: -30px;
  }
}
.style-quaternary .carousel-gradient::before {
  background: transparent -webkit-gradient(linear, left top, right top, from(#D6D6D6), color-stop(20%, #2F2F37E6), color-stop(43%, #3A3A42BE), color-stop(64%, #44444B9A), to(transparent)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #D6D6D6 0%, #2F2F37E6 20%, #3A3A42BE 43%, #44444B9A 64%, transparent 100%) 0% 0% no-repeat padding-box;
}
.style-quaternary .carousel-gradient::after {
  background: transparent -webkit-gradient(linear, right top, left top, from(#D6D6D6), color-stop(20%, #2F2F37E6), color-stop(43%, #3A3A42BE), color-stop(64%, #44444B9A), to(transparent)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(270deg, #D6D6D6 0%, #2F2F37E6 20%, #3A3A42BE 43%, #44444B9A 64%, transparent 100%) 0% 0% no-repeat padding-box;
}

.style-secondary {
  position: relative;
  background-color: #696969;
  padding-top: 60px;
  padding-bottom: 70px;
}
@media (max-width: 991.98px) {
  .style-secondary {
    padding: 30px 0;
  }
}
.style-secondary h1, .style-secondary .h1,
.style-secondary h2, .style-secondary .h2,
.style-secondary h3, .style-secondary .h3,
.style-secondary h4, .style-secondary .h4,
.style-secondary h5, .style-secondary .h5,
.style-secondary h6, .style-secondary .h6,
.style-secondary p,
.style-secondary ul, .style-secondary li, .style-secondary ol, .style-secondary b, .style-secondary strong, .style-secondary i, .style-secondary s, .style-secondary code {
  color: #fff !important;
}
.style-secondary .card-image-background {
  background-color: #838383;
}
.style-secondary .card-image-background.no-image {
  color: #fff !important;
}
.style-secondary .card-image-background.no-image h1, .style-secondary .card-image-background.no-image .h1,
.style-secondary .card-image-background.no-image h2, .style-secondary .card-image-background.no-image .h2,
.style-secondary .card-image-background.no-image h3, .style-secondary .card-image-background.no-image .h3,
.style-secondary .card-image-background.no-image h4, .style-secondary .card-image-background.no-image .h4,
.style-secondary .card-image-background.no-image h5, .style-secondary .card-image-background.no-image .h5,
.style-secondary .card-image-background.no-image h6, .style-secondary .card-image-background.no-image .h6,
.style-secondary .card-image-background.no-image p,
.style-secondary .card-image-background.no-image ul, .style-secondary .card-image-background.no-image li, .style-secondary .card-image-background.no-image ol, .style-secondary .card-image-background.no-image b, .style-secondary .card-image-background.no-image strong, .style-secondary .card-image-background.no-image i, .style-secondary .card-image-background.no-image s, .style-secondary .card-image-background.no-image code {
  color: inherit !important;
}
.style-secondary .card-image-default .card-body {
  background-color: #838383;
}
.style-secondary .carousel-overflow-none.overflow-left .owl-stage-outer::before {
  background-color: #696969;
}
.style-secondary .carousel-overflow-none.overflow-right .owl-stage-outer::after {
  background-color: #696969;
}
.style-secondary .carousel-gradient::before, .style-secondary .carousel-gradient::after {
  top: -60px;
  bottom: -70px;
}
@media (max-width: 991.98px) {
  .style-secondary .carousel-gradient::before, .style-secondary .carousel-gradient::after {
    top: -30px;
    bottom: -30px;
  }
}
.style-secondary .carousel-gradient::before {
  background: transparent -webkit-gradient(linear, left top, right top, from(#696969), color-stop(20%, #2F2F37E6), color-stop(43%, #3A3A42BE), color-stop(64%, #44444B9A), to(transparent)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #696969 0%, #2F2F37E6 20%, #3A3A42BE 43%, #44444B9A 64%, transparent 100%) 0% 0% no-repeat padding-box;
}
.style-secondary .carousel-gradient::after {
  background: transparent -webkit-gradient(linear, right top, left top, from(#696969), color-stop(20%, #2F2F37E6), color-stop(43%, #3A3A42BE), color-stop(64%, #44444B9A), to(transparent)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(270deg, #696969 0%, #2F2F37E6 20%, #3A3A42BE 43%, #44444B9A 64%, transparent 100%) 0% 0% no-repeat padding-box;
}

.style h1,
.style .h1,
.style h2,
.style .h2,
.style h3,
.style .h3,
.style h4,
.style .h4,
.style h5,
.style .h5,
.style h6,
.style .h6 {
  font-weight: 700;
  color: #000;
  font-family: "Roboto", sans-serif;
}
.style h1,
.style .h1 {
  font-size: 52px;
  line-height: 1.2;
}
@media (max-width: 991.98px) {
  .style h1,
.style .h1 {
    font-size: 46px;
  }
}
.style h2,
.style .h2 {
  font-size: 48px;
  line-height: 1.2;
}
@media (max-width: 991.98px) {
  .style h2,
.style .h2 {
    font-size: 42px;
  }
}
.style h3,
.style .h3 {
  font-size: 28px;
  line-height: 1.2;
}
@media (max-width: 991.98px) {
  .style h3,
.style .h3 {
    font-size: 22px;
  }
}
.style h4,
.style .h4 {
  font-size: 20px;
  line-height: 1.2;
  font-family: "Quicksand", sans-serif;
  color: #7B5A51;
  text-transform: uppercase;
  font-weight: normal;
}
.style h4 p,
.style .h4 p {
  color: #7B5A51;
}
@media (max-width: 991.98px) {
  .style h4,
.style .h4 {
    font-size: 20px;
  }
}
.style h5,
.style .h5 {
  font-size: 20px;
  line-height: 1.2;
}
@media (max-width: 991.98px) {
  .style h5,
.style .h5 {
    font-size: 18px;
  }
}
.style h6,
.style .h6 {
  font-size: 18px;
  line-height: 1.2;
}
@media (max-width: 991.98px) {
  .style h6,
.style .h6 {
    font-size: 16px;
  }
}
.style p {
  color: #000000;
}
@media (max-width: 767.98px) {
  .style .content-editor.read-more-content p {
    margin-bottom: 0px !important;
  }
  .style .content-editor.read-more-content p:first-child {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .style .content-editor.read-more-content p:not(:first-child) {
    display: none;
  }
  .style .content-editor.read-more-content .btn-open-read-more {
    padding-bottom: 0px !important;
  }
}
.style .content-editor .link,
.style .content-editor .link-tinymce {
  color: #7B5A51;
}
.style .content-editor .p,
.style .content-editor p {
  line-height: 1.8;
}
.style .content-editor a:not(.btn) {
  text-decoration: underline;
}
.style .content-editor .btn {
  margin-bottom: 0.5rem;
  margin-right: 0 !important;
}
@media (min-width: 1200px) {
  .style .content-editor .btn {
    margin-bottom: 0 !important;
  }
}
@media (min-width: 768px) {
  .style .content-editor .btn {
    margin-right: 1rem !important;
  }
}
.style .content-editor ul {
  padding-left: 0 !important;
  margin-left: 18px;
}
.style .content-editor ul a:not(.btn) {
  text-decoration: underline;
}
.style .content-editor ul ::marker {
  color: #282023;
}
.style .content-editor ol {
  padding-left: 0 !important;
  margin-left: 18px;
}
.style .content-editor ol a:not(.btn) {
  text-decoration: underline;
}
.style .content-editor iframe {
  border: 0px !important;
  max-width: 100%;
}
.style .content-editor iframe .vp-center {
  -ms-flex-item-align: left;
  -ms-grid-row-align: left;
  align-self: left;
}
.style .content-editor table,
.style .content-editor th,
.style .content-editor tr,
.style .content-editor td {
  border: none;
}
.style .content-editor img,
.style .content-editor .tinymce-image {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0.25rem;
  border: 1px solid;
  height: auto;
}
.style .content-buttons {
  margin-left: -8px;
  margin-right: -8px;
}
.style .content-buttons a.btn {
  margin: 0 8px;
}
.filters-toggle-more-less {
  display: none;
}

.filters-more-less-container {
  border-top: 1px solid #DDDDDD;
}
.filters-more-less-container .btn-filters-more-less {
  font-size: 14px;
  cursor: pointer;
}
.filters-more-less-container .btn-filters-more-less:hover {
  text-decoration: underline;
}

.images-slider {
  margin-top: 60px;
  margin-bottom: 70px;
  position: relative;
}
@media (max-width: 991.98px) {
  .images-slider {
    margin-top: 30px;
  }
}
.images-slider::before, .images-slider::after {
  content: "";
  position: absolute;
  top: 0;
  opacity: 1;
  z-index: 20;
  width: 150px;
  height: 100%;
}
@media (max-width: 1024px) {
  .images-slider::before, .images-slider::after {
    display: none;
  }
}
.images-slider::after {
  right: 0;
}
.images-slider::before {
  left: 0;
}
.images-slider .btn-back-slider {
  left: 110px;
}
.images-slider .btn-forward-slider {
  right: 110px;
}
.images-slider .btn-back-slider,
.images-slider .btn-forward-slider {
  top: calc(50% - 20px);
  z-index: 21;
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #ffffffa1;
  border: 1px solid #DDDDDD;
  border-radius: 4px;
  color: #282023;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .images-slider .btn-back-slider,
.images-slider .btn-forward-slider {
    display: none;
  }
}
.images-slider .btn-back-slider:hover,
.images-slider .btn-forward-slider:hover {
  cursor: pointer;
}
.images-slider .btn-back-slider i,
.images-slider .btn-forward-slider i {
  font-size: 14px;
}

.default-link {
  font-size: 15px;
  line-height: 1.8;
  color: #7B5A51;
  font-family: "Quicksand", sans-serif;
}
@media (max-width: 991.98px) {
  .default-link {
    font-size: 13px;
  }
}

.carousel-overflow-none .owl-stage-outer {
  overflow: unset !important;
  position: relative;
}
.carousel-overflow-none.overflow-left .owl-stage-outer::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  bottom: 0;
  background-color: #fff;
  width: 100vw;
  z-index: 1;
}
.carousel-overflow-none.overflow-right .owl-stage-outer::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  bottom: 0;
  background-color: #fff;
  width: 100vw;
  z-index: 1;
}

.card-head {
  font-weight: bolder;
  font-size: 18px;
  line-height: 1.2;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .card-head {
    font-size: 16px;
  }
}

.label-text {
  font-weight: normal;
  font-size: 14px !important;
  line-height: 1.8 !important;
  color: #696969 !important;
}
@media (max-width: 991.98px) {
  .label-text {
    font-size: 13px !important;
  }
}

.label {
  font-weight: bold;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  line-height: 1.8;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .label {
    font-size: 14px;
  }
}

.stroke-title {
  font-weight: bold;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  line-height: 1.2;
  color: #000;
}
@media (max-width: 991.98px) {
  .stroke-title {
    font-size: 13px;
  }
}

.sidebar-head {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.2;
  color: #000;
}
@media (max-width: 991.98px) {
  .sidebar-head {
    font-size: 16px;
  }
}

.sidebar-title {
  font-weight: bold;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  line-height: 1.2;
  color: #000;
}
@media (max-width: 991.98px) {
  .sidebar-title {
    font-size: 13px;
  }
}

.overlay-gradient,
.read-more-gradient {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 60;
  background-color: rgba(0, 0, 0, 0.7);
}

.read-more-gradient {
  z-index: 1151 !important;
}

.sidebar-link {
  font-size: 14px;
  line-height: 1.8;
  color: #696969;
}
@media (max-width: 991.98px) {
  .sidebar-link {
    font-size: 12px;
  }
}

.sidebar-text {
  font-size: 14px;
  line-height: 1.8;
  color: #696969;
}
@media (max-width: 991.98px) {
  .sidebar-text {
    font-size: 12px;
  }
}

.table-head {
  font-weight: bold;
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  line-height: 1.8;
  color: #000;
}
@media (max-width: 991.98px) {
  .table-head {
    font-size: 12px;
  }
}

.table-title {
  font-weight: bold;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  line-height: 1.8;
  color: #000;
}
@media (max-width: 991.98px) {
  .table-title {
    font-size: 13px;
  }
}

.table-item {
  font-size: 14px;
  line-height: 1.8;
  color: #696969;
}
@media (max-width: 991.98px) {
  .table-item {
    font-size: 12px;
  }
}

.table-link {
  font-size: 14px;
  line-height: 1.8;
  color: #7B5A51;
  text-decoration: underline;
}
@media (max-width: 991.98px) {
  .table-link {
    font-size: 12px;
  }
}

.tab-title {
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 1.2;
  color: #000;
}
@media (max-width: 991.98px) {
  .tab-title {
    font-size: 12px;
  }
}

.form-text {
  font-size: 24px !important;
  line-height: 1.2 !important;
  color: #000000 !important;
}
@media (max-width: 991.98px) {
  .form-text {
    font-size: 18px !important;
  }
}

#consent-modal .nav-consent .active {
  font-weight: bold;
}
#consent-modal .info-spacing {
  padding-left: 29px;
}
@media (max-width: 991.98px) {
  #consent-modal .info-spacing {
    padding-left: 0px;
  }
}
#consent-modal .tab-pane-overflow {
  max-height: 450px;
  height: 100%;
  overflow-x: auto;
}
#consent-modal .fa-chevron-down,
#consent-modal .fa-angle-down {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
#consent-modal [aria-expanded=true] .fa-chevron-down,
#consent-modal [aria-expanded=true] .fa-angle-down {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.video-container {
  overflow: hidden;
  height: 550px;
  background: transparent -webkit-gradient(linear, left top, right top, color-stop(100%, rgba(0, 0, 0, 0.5)), to(lch(0 0 0/50%))) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, rgba(0, 0, 0, 0.5) 100%, lch(0 0 0/50%) 100%) 0% 0% no-repeat padding-box;
}
.video-container .bg-video {
  z-index: -1;
  position: fixed;
  left: 0;
  top: 0;
  background-size: cover;
  background: no-repeat center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  height: 100%;
  width: 100%;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.video-container .video-title {
  color: white;
  font-size: 60px;
  font-weight: 600;
}
@media (max-width: 1199.98px) {
  .video-container .video-title {
    font-size: 25px;
  }
}
.video-container .video-text {
  color: white;
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 1199.98px) {
  .video-container .video-text {
    font-size: 25px;
  }
}

.style-tertiary {
  position: relative;
  background-color: #000000;
  padding-top: 60px;
  padding-bottom: 70px;
}
@media (max-width: 991.98px) {
  .style-tertiary {
    padding: 30px 0;
  }
}
.style-tertiary h1, .style-tertiary .h1,
.style-tertiary h2, .style-tertiary .h2,
.style-tertiary h3, .style-tertiary .h3,
.style-tertiary h4, .style-tertiary .h4,
.style-tertiary h5, .style-tertiary .h5,
.style-tertiary h6, .style-tertiary .h6,
.style-tertiary p,
.style-tertiary ul, .style-tertiary li, .style-tertiary ol, .style-tertiary b, .style-tertiary strong, .style-tertiary i, .style-tertiary s, .style-tertiary code {
  color: #fff;
}
.style-tertiary .card-image-background {
  background-color: #1a1a1a;
}
.style-tertiary .card-image-background.no-image {
  color: #fff !important;
}
.style-tertiary .card-image-background.no-image h1, .style-tertiary .card-image-background.no-image .h1,
.style-tertiary .card-image-background.no-image h2, .style-tertiary .card-image-background.no-image .h2,
.style-tertiary .card-image-background.no-image h3, .style-tertiary .card-image-background.no-image .h3,
.style-tertiary .card-image-background.no-image h4, .style-tertiary .card-image-background.no-image .h4,
.style-tertiary .card-image-background.no-image h5, .style-tertiary .card-image-background.no-image .h5,
.style-tertiary .card-image-background.no-image h6, .style-tertiary .card-image-background.no-image .h6,
.style-tertiary .card-image-background.no-image p,
.style-tertiary .card-image-background.no-image ul, .style-tertiary .card-image-background.no-image li, .style-tertiary .card-image-background.no-image ol, .style-tertiary .card-image-background.no-image b, .style-tertiary .card-image-background.no-image strong, .style-tertiary .card-image-background.no-image i, .style-tertiary .card-image-background.no-image s, .style-tertiary .card-image-background.no-image code {
  color: inherit !important;
}
.style-tertiary .card-image-default .card-body {
  background-color: #1a1a1a;
}
.style-tertiary .carousel-overflow-none.overflow-left .owl-stage-outer::before {
  background-color: #000000;
}
.style-tertiary .carousel-overflow-none.overflow-right .owl-stage-outer::after {
  background-color: #000000;
}
.style-tertiary .carousel-gradient::before, .style-tertiary .carousel-gradient::after {
  top: -60px;
  bottom: -70px;
}
@media (max-width: 991.98px) {
  .style-tertiary .carousel-gradient::before, .style-tertiary .carousel-gradient::after {
    top: -30px;
    bottom: -30px;
  }
}
.style-tertiary .carousel-gradient::before {
  background: transparent -webkit-gradient(linear, left top, right top, from(#000000), color-stop(20%, #2F2F37E6), color-stop(43%, #3A3A42BE), color-stop(64%, #44444B9A), to(transparent)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #000000 0%, #2F2F37E6 20%, #3A3A42BE 43%, #44444B9A 64%, transparent 100%) 0% 0% no-repeat padding-box;
}
.style-tertiary .carousel-gradient::after {
  background: transparent -webkit-gradient(linear, right top, left top, from(#000000), color-stop(20%, #2F2F37E6), color-stop(43%, #3A3A42BE), color-stop(64%, #44444B9A), to(transparent)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(270deg, #000000 0%, #2F2F37E6 20%, #3A3A42BE 43%, #44444B9A 64%, transparent 100%) 0% 0% no-repeat padding-box;
}

.style-transparent {
  position: relative;
  background-color: transparent;
  padding-top: 60px;
  padding-bottom: 70px;
}
@media (max-width: 991.98px) {
  .style-transparent {
    padding: 30px 0;
  }
}

.card-uber-a:hover {
  cursor: pointer;
}
.card-uber-a:hover img {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.card-uber-a:hover .card-title {
  color: #282023 !important;
}
.card-uber-a .image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-uber-a .image .overlay {
  z-index: 6;
  bottom: 0;
}
.card-uber-a .image .overlay .card-image-title {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #fff;
  bottom: 16px;
  left: 24px;
}
@media (max-width: 991.98px) {
  .card-uber-a .image .overlay .card-image-title {
    font-size: 14px;
  }
}
.card-uber-a .image .overlay .card-label {
  font-size: 12px;
  line-height: 1.2;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-uber-a .image .overlay .card-label {
    font-size: 11px;
  }
}
.card-uber-a .image .overlay .card-label-top-right {
  top: -1px;
  right: -1px;
  border-top-right-radius: 4px;
  border-bottom-left-radius: 0.3rem;
}
.card-uber-a .image .overlay .card-label-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top-left-radius: 4px;
}
.card-uber-a .image .overlay .card-favorite {
  top: 5px;
  left: 5px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  cursor: pointer;
  background-color: #FFFFFF;
  text-align: center;
}
.card-uber-a .image .overlay .card-favorite i {
  color: #575756;
  line-height: 26px;
}
.card-uber-a .image .gradient {
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#00000000), to(#000000D9)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #00000000 0%, #000000D9 100%) 0% 0% no-repeat padding-box;
  top: unset;
  bottom: 0;
  left: 0;
  position: absolute;
  height: 50%;
  width: 100%;
  z-index: 5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-uber-a .card-body .card-title {
  font-size: 32px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .card-uber-a .card-body .card-title {
    font-size: 26px;
  }
}
.card-uber-a .card-body .card-subtitle {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .card-uber-a .card-body .card-subtitle {
    font-size: 14px;
  }
}
.card-uber-a .card-body .card-text {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-uber-a .card-body .card-text {
    font-size: 12px;
  }
}
.card-uber-a .card-body .card-text p {
  margin-bottom: 0px;
}
.card-uber-a .card-footer {
  background-color: transparent;
}
.card-uber-a .card-footer .card-price {
  font-size: 14px;
  line-height: 1.2;
  font-family: "Quicksand", sans-serif;
  color: #000;
}
@media (max-width: 991.98px) {
  .card-uber-a .card-footer .card-price {
    font-size: 12px;
  }
}
.card-uber-a .card-footer .btn-circle {
  width: 40px;
  height: 40px;
  padding: 10px 0px;
  border-radius: 50%;
  font-size: 15px;
  text-align: center;
}

.card-uber-b .image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-uber-b .image .overlay {
  z-index: 6;
  bottom: 0;
}
.card-uber-b .image .overlay .card-image-title {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #fff;
  top: 16px;
  left: 16px;
}
@media (max-width: 991.98px) {
  .card-uber-b .image .overlay .card-image-title {
    font-size: 14px;
  }
}
.card-uber-b .image .overlay .card-label {
  font-size: 12px;
  line-height: 1.2;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-uber-b .image .overlay .card-label {
    font-size: 11px;
  }
}
.card-uber-b .image .overlay .card-label-top-right {
  top: -1px;
  right: -1px;
  border-top-right-radius: 4px;
  border-bottom-left-radius: 0.3rem;
}
.card-uber-b .image .overlay .card-label-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top-left-radius: 4px;
}
.card-uber-b .image .overlay .btn-link {
  bottom: -32px;
  left: 16px;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
.card-uber-b .image .overlay .card-favorite {
  top: 5px;
  left: 5px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  cursor: pointer;
  background-color: #FFFFFF;
  text-align: center;
}
.card-uber-b .image .overlay .card-favorite i {
  color: #575756;
  line-height: 26px;
}
.card-uber-b .image .gradient {
  background: transparent -webkit-gradient(linear, left top, right top, from(#000000E6), to(#0000000D)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #000000E6 0%, #0000000D 100%) 0% 0% no-repeat padding-box;
  top: unset;
  bottom: 0;
  left: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-uber-b .card-body .card-title {
  font-size: 32px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .card-uber-b .card-body .card-title {
    font-size: 26px;
  }
}
.card-uber-b .card-body .card-text {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-uber-b .card-body .card-text {
    font-size: 12px;
  }
}
.card-uber-b .card-body .card-text p {
  margin-bottom: 0px;
}
.card-uber-b .card-vertical-line {
  border-top: 1px dashed #DDDDDD;
  margin: 0 16px;
}
.card-uber-b .card-footer {
  background-color: transparent;
}
.card-uber-b .card-footer .card-price {
  font-size: 14px;
  line-height: 1.2;
  font-family: "Quicksand", sans-serif;
  color: #000;
}
@media (max-width: 991.98px) {
  .card-uber-b .card-footer .card-price {
    font-size: 12px;
  }
}
.card-uber-b .card-footer .btn-circle {
  width: 40px;
  height: 40px;
  padding: 10px 0px;
  border-radius: 50%;
  font-size: 12px;
  text-align: center;
}
.card-uber-b:hover {
  cursor: pointer;
}
.card-uber-b:hover img {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.card-uber-b:hover .card-title {
  color: #282023;
}
.card-uber-b:hover .image .overlay .card-image-title {
  color: #282023;
}
.card-uber-b:hover .image .overlay .btn-link {
  bottom: 16px;
}
.card-uber-c:hover {
  cursor: pointer;
}
.card-uber-c:hover .card-overlay {
  border-radius: 0.25rem;
  opacity: 1;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.card-uber-c .image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-uber-c .image .overlay {
  z-index: 6;
  bottom: 0;
}
.card-uber-c .image .overlay .card-image-title {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #fff;
  bottom: 16px;
  left: 16px;
}
@media (max-width: 991.98px) {
  .card-uber-c .image .overlay .card-image-title {
    font-size: 14px;
  }
}
.card-uber-c .image .overlay .card-favorite {
  top: 5px;
  left: 5px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  cursor: pointer;
  background-color: #FFFFFF;
  text-align: center;
}
.card-uber-c .image .overlay .card-favorite i {
  color: #575756;
  line-height: 26px;
}
.card-uber-c .image .gradient {
  background: transparent linear-gradient(301deg, #024960CC 0%, #0000000D 100%) 0% 0% no-repeat padding-box;
  top: unset;
  bottom: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-uber-c .card-label {
  font-size: 12px;
  line-height: 1.2;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-uber-c .card-label {
    font-size: 11px;
  }
}
.card-uber-c .card-label-top-right {
  z-index: 100;
  top: -1px;
  right: -1px;
  border-top-right-radius: 4px;
  border-bottom-left-radius: 0.3rem;
}
.card-uber-c .card-label-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top-left-radius: 4px;
}
.card-uber-c .card-body .card-title {
  font-size: 32px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .card-uber-c .card-body .card-title {
    font-size: 26px;
  }
}
.card-uber-c .card-body .card-subtitle {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .card-uber-c .card-body .card-subtitle {
    font-size: 14px;
  }
}
.card-uber-c .card-body .card-text {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
}
.card-uber-c .card-body .card-text a {
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-uber-c .card-body .card-text {
    font-size: 12px;
  }
}
.card-uber-c .card-body .card-text p {
  margin-bottom: 0px;
}
.card-uber-c .card-body .card-text i {
  color: #280B5F !important;
  font-size: 10px !important;
}
.card-uber-c .card-footer {
  background-color: transparent;
}
.card-uber-c .card-footer .card-price {
  font-size: 14px;
  line-height: 1.2;
  font-family: "Quicksand", sans-serif;
  color: #000;
}
@media (max-width: 991.98px) {
  .card-uber-c .card-footer .card-price {
    font-size: 12px;
  }
}
.card-uber-c .card-overlay {
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#00000080), to(#000000BF)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #00000080 0%, #000000BF 100%) 0% 0% no-repeat padding-box;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  opacity: 0;
  font-size: 16px;
  z-index: 5;
  -webkit-transition: 0.5s !important;
  transition: 0.5s !important;
}
.card-uber-c .card-overlay .card-overlay-content {
  position: absolute;
  top: 24px;
  left: 16px;
}
.card-uber-c .card-overlay .card-overlay-content .card-image-title {
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 991.98px) {
  .card-uber-c .card-overlay .card-overlay-content .card-image-title {
    font-size: 14px;
  }
}
.card-uber-c .card-overlay .card-overlay-content .card-image-text {
  font-size: 13px;
  color: #fff;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
}
@media (max-width: 991.98px) {
  .card-uber-c .card-overlay .card-overlay-content .card-image-text {
    font-size: 12px;
  }
}
.card-uber-c .card-overlay .card-overlay-content .card-image-text i {
  font-size: 13px;
  color: #282023;
}
.card-uber-c .card-overlay .btn {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  right: 16px;
  bottom: 24px;
}

.card-uber-d .image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-uber-d .image .overlay {
  z-index: 6;
  bottom: 0;
}
.card-uber-d .image .overlay .card-image-title {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #fff;
  bottom: 16px;
  left: 16px;
}
@media (max-width: 991.98px) {
  .card-uber-d .image .overlay .card-image-title {
    font-size: 14px;
  }
}
.card-uber-d .image .overlay .card-favorite {
  bottom: 4px;
  right: 4px;
  border-radius: 4px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  cursor: pointer;
  background-color: #FFFFFF;
  text-align: center;
}
.card-uber-d .image .overlay .card-favorite i {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #7B5A51;
  color: #fff;
  line-height: 26px;
}
.card-uber-d .image .overlay .card-favorite:hover i {
  color: #282023;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #282023;
  cursor: pointer;
}
.card-uber-d .image .overlay .card-favorite.is-favorite i {
  color: #282023;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #282023;
  cursor: pointer;
}
.card-uber-d .image .overlay .card-favorite.is-favorite i:hover {
  color: #fff;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #7B5A51;
}
.card-uber-d .image .gradient {
  background: transparent -webkit-gradient(linear, left top, right top, from(#000000E6), to(#0000000D)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #000000E6 0%, #0000000D 100%) 0% 0% no-repeat padding-box;
  top: unset;
  bottom: 0;
  left: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-uber-d .card-body .card-title {
  height: 54px;
  font-size: 32px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .card-uber-d .card-body .card-title {
    font-size: 26px;
  }
}
.card-uber-d .card-body .card-text {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-uber-d .card-body .card-text {
    font-size: 12px;
  }
}
.card-uber-d .card-body .card-text p {
  margin-bottom: 0px;
}
.card-uber-d .card-vertical-line {
  border-top: 1px solid #DDDDDD;
  margin: 0 16px;
}
.card-uber-d .card-footer {
  background-color: transparent;
}
.card-uber-d .card-footer .card-price {
  font-size: 14px;
  line-height: 1.2;
  font-family: "Quicksand", sans-serif;
  color: #000;
}
@media (max-width: 991.98px) {
  .card-uber-d .card-footer .card-price {
    font-size: 12px;
  }
}
.card-uber-d:hover {
  cursor: pointer;
}
.card-uber-d:hover img {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.card-uber-d:hover .card-title {
  color: #282023;
}
.card-uber-e .image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-uber-e .image .overlay {
  z-index: 6;
  bottom: 0;
}
.card-uber-e .image .overlay .card-image-title {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #fff;
  text-transform: uppercase;
  bottom: 16px;
  left: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 991.98px) {
  .card-uber-e .image .overlay .card-image-title {
    font-size: 14px;
    left: 13px;
  }
}
.card-uber-e .image .overlay .btn-outline-secondary {
  bottom: 16px;
  left: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
.card-uber-e .image .gradient {
  background: transparent -webkit-gradient(linear, left bottom, left top, from(#34414A), to(#34414A00)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(360deg, #34414A 0%, #34414A00 100%) 0% 0% no-repeat padding-box;
  top: unset;
  bottom: 0;
  left: 0;
  position: absolute;
  height: 50%;
  width: 100%;
  z-index: 5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.card-uber-e .card-body .card-title {
  font-size: 32px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .card-uber-e .card-body .card-title {
    font-size: 26px;
    left: 13px;
  }
}
.card-uber-e .card-body .card-text {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-uber-e .card-body .card-text {
    font-size: 12px;
  }
}
.card-uber-e .card-body .card-text i {
  color: #282023;
  font-size: 12px;
  vertical-align: baseline;
}
.card-uber-e .card-body .card-text p {
  margin-bottom: 0px;
}
.card-uber-e .card-vertical-line {
  border-top: 1px dashed #DDDDDD;
  margin: 0 16px;
}
.card-uber-e .card-footer {
  background-color: transparent;
}
.card-uber-e:hover {
  cursor: pointer;
}
.card-uber-e:hover .card-title {
  color: #282023;
}
.card-uber-e:hover .image .overlay .btn-outline-secondary {
  opacity: 1;
}
.card-uber-e:hover .image .overlay .card-image-title {
  bottom: 62px;
}
.card-uber-e:hover .image .gradient {
  height: 100%;
  background: transparent -webkit-gradient(linear, left bottom, left top, from(#34414A), to(#34414A00)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(360deg, #34414A 0%, #34414A00 100%) 0% 0% no-repeat padding-box;
}
.card-uber-f .gradient {
  background: transparent -webkit-gradient(linear, left top, right top, from(#000000E6), to(#0000000D)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #000000E6 0%, #0000000D 100%) 0% 0% no-repeat padding-box;
  top: unset;
  bottom: 0;
  left: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-uber-f .z-10 {
  z-index: 10;
}
.card-uber-f .dashed-hr {
  border: dashed 1px;
}
.card-uber-f .card-favorite {
  top: 5px;
  left: 5px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  cursor: pointer;
  background-color: #FFFFFF;
  text-align: center;
}
.card-uber-f .card-favorite i {
  color: #575756;
  line-height: 26px;
}
.card-uber-f .card-image-title {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #fff;
  top: 16px;
  left: 16px;
  z-index: 7;
}
.card-uber-f .card-btn-link {
  bottom: 0;
  font-weight: normal;
  -webkit-transform: translateY(125%);
  transform: translateY(125%);
}
.card-uber-f .card-btn-link:hover {
  color: #8e0b24;
  text-decoration: underline;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}
.card-uber-f .label {
  right: 0;
  padding: 0.5em;
}
.card-uber-f .label.top {
  top: 0;
  border-radius: 0 4px 0 4px;
}
.card-uber-f .label.bottom {
  bottom: 0;
  border-radius: 4px 0 0 0;
}
.card-uber-f .price {
  font-size: 14px;
  line-height: 1.2;
  font-family: "Quicksand", sans-serif;
  color: #000;
}
.card-uber-f:hover {
  cursor: pointer;
}
.card-uber-f:hover .card-img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}
.card-uber-f:hover .card-image-title {
  color: #282023;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}
.card-uber-f:hover .card-btn-link {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}
.card-uber-f:hover .card-title {
  color: #282023;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}
.card-uber-f:hover .btn-outline-primary {
  background-color: #282023;
  color: #f8f9fa;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}

.card-application-a {
  background: #fff;
  height: 100%;
}
.card-application-a .image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-application-a .card-body .card-title {
  height: 20px;
  font-size: 32px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .card-application-a .card-body .card-title {
    font-size: 26px;
  }
}
.card-application-a .card-body .card-text {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-application-a .card-body .card-text {
    font-size: 12px;
  }
}
.card-application-a .card-body .card-text p {
  margin-bottom: 0px;
}
.card-application-a .card-vertical-line {
  border-top: 1px dashed #DDDDDD;
  margin: 0 16px;
}
.card-application-a .card-footer {
  background-color: transparent;
}
.card-application-a:hover {
  cursor: pointer;
}
.card-application-a:hover img {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.card-aside-event-information {
  background: rgba(0, 0, 0, 0) !important;
  text-align: left;
  border: none;
}
.card-aside-event-information .card-header {
  background: rgba(0, 0, 0, 0);
}
.card-aside-event-information .card-body {
  background: rgba(0, 0, 0, 0);
}
.card-aside-event-information .card-text {
  color: #666666 !important;
}
.card-aside-event-information .card-text a {
  color: #666666 !important;
}
.card-aside-event-information .card-text i {
  color: #282023;
  font-size: 12px;
  text-align: center;
}

.card-aside-information-a {
  text-align: left;
}
.card-aside-information-a .card-text {
  color: #666666 !important;
}
.card-aside-information-a .card-text a {
  color: #666666 !important;
}
.card-aside-information-a .card-text i {
  color: #282023;
  font-size: 12px;
  text-align: center;
}
.card-aside-information-a .card-text:hover .i-fa {
  text-decoration: none;
}

.card-aside-logo-a .image img {
  -o-object-fit: contain !important;
  object-fit: contain !important;
}

.card-bonus-deal-a {
  cursor: pointer;
}
.card-bonus-deal-a .product-title {
  display: -webkit-box;
  font-size: 12px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #000;
}
.card-bonus-deal-a .product-title a {
  color: inherit;
  text-decoration: none;
}

.card-bonus-deal-a.selected {
  border: 1px solid #282023;
  background: #fff;
}

.card-branche-a {
  height: 100%;
}
.card-branche-a .image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-branche-a .image .overlay {
  z-index: 6;
  bottom: 0;
}
.card-branche-a .card-body .card-title {
  font-size: 32px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
  height: 32px;
}
@media (max-width: 991.98px) {
  .card-branche-a .card-body .card-title {
    font-size: 26px;
  }
}
.card-branche-a .card-body .card-text {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-branche-a .card-body .card-text {
    font-size: 12px;
  }
}
.card-branche-a .card-body .card-text p {
  margin-bottom: 0px;
}
.card-branche-a:hover {
  cursor: pointer;
}
.card-branche-a:hover img {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.card-case-special {
  color: #747474;
  text-align: left;
  background-color: #fff;
}
.card-case-special:hover {
  text-decoration: none;
  color: #747474;
}
.card-case-special a {
  color: #747474;
}
.card-case-special .title {
  font-weight: bold;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1.5rem;
  font-family: "Quicksand", sans-serif;
  font-size: 18px;
  line-height: 24px;
}
.card-case-special .content {
  font-size: 14px;
}
.card-case-special .content .website,
.card-case-special .content .tags {
  text-decoration: underline;
}
.card-case-special .content .website:hover,
.card-case-special .content .tags:hover {
  color: #375D8E;
}
.card-case-special .content > div {
  line-height: 20px;
}
.card-case-special .content i {
  color: red;
  width: 14px;
  text-align: center;
}
.card-case-special .content .date_end {
  margin-left: 26px;
}

.card-cases-a {
  max-height: 555px;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .card-cases-a {
    max-height: 250px;
  }
}
.card-cases-a:hover {
  cursor: pointer;
}
.card-cases-a:hover .image .overlay .btn {
  opacity: 1;
}
.card-cases-a:hover .image .gradient {
  height: 100%;
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#00000000), color-stop(80%, #000000cc)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #00000000 0%, #000000cc 80%) 0% 0% no-repeat padding-box;
}
.card-cases-a .image {
  position: unset !important;
}
.card-cases-a .image > div:first-child {
  max-height: 555px;
}
@media (max-width: 991.98px) {
  .card-cases-a .image > div:first-child {
    max-height: 250px;
  }
}
.card-cases-a .image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-cases-a .image .gradient {
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#00000000), color-stop(80%, #000000cc)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #00000000 0%, #000000cc 80%) 0% 0% no-repeat padding-box;
  top: unset;
  bottom: 0;
  left: 0;
  position: absolute;
  height: 50%;
  width: 100%;
  z-index: 5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.card-cases-a .image .overlay {
  z-index: 6;
  bottom: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-cases-a .image .overlay .card-image-title {
  font-size: 24px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #fff;
  bottom: 16px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-cases-a .image .overlay .card-image-title i {
  color: #fff;
  font-size: 28px;
}
@media (max-width: 991.98px) {
  .card-cases-a .image .overlay .card-image-title {
    font-size: 14px;
    bottom: 8px;
  }
  .card-cases-a .image .overlay .card-image-title i {
    color: #fff;
    font-size: 16px;
  }
}
.card-cases-a .image .overlay .btn {
  bottom: 24px;
  left: 24px;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.card-category-a:hover {
  cursor: pointer;
}
.card-category-a:hover .image .overlay .card-category-title {
  bottom: 43px;
}
.card-category-a:hover .image .overlay .btn {
  opacity: 1;
}
.card-category-a:hover .image .gradient {
  height: 100%;
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#00000000), color-stop(80%, #000000cc)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #00000000 0%, #000000cc 80%) 0% 0% no-repeat padding-box;
}
.card-category-a .image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-category-a .image .gradient {
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#00000000), color-stop(80%, #000000cc)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #00000000 0%, #000000cc 80%) 0% 0% no-repeat padding-box;
  top: unset;
  bottom: 0;
  left: 0;
  position: absolute;
  height: 50%;
  width: 100%;
  z-index: 5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.card-category-a .image .overlay {
  z-index: 6;
  bottom: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-category-a .image .overlay .card-category-title {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #000;
  bottom: 16px;
  left: 24px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 991.98px) {
  .card-category-a .image .overlay .card-category-title {
    font-size: 13px;
  }
}
.card-category-a .image .overlay .btn {
  bottom: 10px;
  right: 16px;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.card-category-b .image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-category-b .card-body .card-category-title {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #000;
}
@media (max-width: 991.98px) {
  .card-category-b .card-body .card-category-title {
    font-size: 13px;
  }
}
.card-category-b .card-body .card-category-text {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-category-b .card-body .card-category-text {
    font-size: 12px;
  }
}
.card-category-b .card-body .card-category-item {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-category-b .card-body .card-category-item {
    font-size: 12px;
  }
  .card-category-b .card-body .card-category-item i {
    display: none;
  }
}
.card-category-b .card-body .card-category-item i {
  font-size: 10px;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  vertical-align: middle;
}
.card-category-b .card-body .card-category-item:hover i {
  opacity: 1;
}
.card-category-b:hover {
  cursor: pointer;
}
.card-category-b:hover img {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.card-category-b:hover .card-category-title {
  color: #282023;
  text-decoration: none;
}

.card-category-c:hover {
  cursor: pointer;
}
.card-category-c:hover .card-overlay {
  opacity: 1;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.card-category-c .image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-category-c .image .overlay {
  z-index: 6;
  bottom: 0;
}
.card-category-c .image .overlay .card-image-title {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #fff;
  bottom: 16px;
  left: 16px;
}
@media (max-width: 991.98px) {
  .card-category-c .image .overlay .card-image-title {
    font-size: 14px;
  }
}
.card-category-c .image .overlay .card-label {
  font-size: 12px;
  line-height: 1.2;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-category-c .image .overlay .card-label {
    font-size: 11px;
  }
}
.card-category-c .image .gradient {
  background: transparent linear-gradient(301deg, #00000033 20%, #000000cc 80%) 0% 0% no-repeat padding-box;
  top: unset;
  bottom: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-category-c .card-body .category-title {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #000;
}
@media (max-width: 991.98px) {
  .card-category-c .card-body .category-title {
    font-size: 13px;
  }
}
.card-category-c .card-body .category-text {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-category-c .card-body .category-text {
    font-size: 12px;
  }
}
.card-category-c .card-body .category-text p {
  margin-bottom: 0px;
}
.card-category-c .card-body .category-text i {
  margin-right: 0.5rem;
  color: #280B5F !important;
  font-size: 10px !important;
}
.card-category-c .card-overlay {
  background: transparent -webkit-gradient(linear, left top, left bottom, color-stop(20%, #00000033), color-stop(80%, #000000cc)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #00000033 20%, #000000cc 80%) 0% 0% no-repeat padding-box;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  opacity: 0;
  font-size: 16px;
  z-index: 5;
  -webkit-transition: 0.5s !important;
  transition: 0.5s !important;
}
.card-category-c .card-overlay .card-overlay-content {
  position: absolute;
  top: 24px;
  left: 16px;
}
.card-category-c .card-overlay .card-overlay-content .card-image-title {
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 991.98px) {
  .card-category-c .card-overlay .card-overlay-content .card-image-title {
    font-size: 14px;
  }
}
.card-category-c .card-overlay .card-overlay-content .card-image-text {
  font-size: 13px;
  color: #fff;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
}
@media (max-width: 991.98px) {
  .card-category-c .card-overlay .card-overlay-content .card-image-text {
    font-size: 12px;
  }
}
.card-category-c .card-overlay .card-overlay-content .card-image-text i {
  font-size: 13px;
  color: #282023;
}
.card-category-c .card-overlay .btn {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  right: 16px;
  bottom: 24px;
}

.card-category-d .image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-category-d .card-body .card-category-title {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #000;
}
@media (max-width: 991.98px) {
  .card-category-d .card-body .card-category-title {
    font-size: 13px;
  }
}
.card-category-d .card-body .card-category-item {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-category-d .card-body .card-category-item {
    font-size: 12px;
  }
  .card-category-d .card-body .card-category-item i {
    display: none;
  }
}
.card-category-d .card-body .card-category-item i {
  font-size: 10px;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  vertical-align: middle;
}
.card-category-d .card-body .category-text {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-category-d .card-body .category-text {
    font-size: 12px;
  }
}
.card-category-d .card-body .category-text p {
  margin-bottom: 0px;
}
.card-category-d .card-body .category-text i {
  color: #280B5F !important;
  font-size: 10px !important;
}
.card-category-d:hover {
  cursor: pointer;
}
.card-category-d:hover .card-category-title {
  text-decoration: none;
}

.card-configurator-product {
  width: 100%;
  cursor: pointer;
}
.card-configurator-product.selected {
  outline: 2px solid #282023;
  outline-offset: -1px;
}
.card-configurator-product.disabled {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.5;
}
.card-configurator-product .image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  -o-object-fit: contain;
  object-fit: contain;
}
.card-configurator-product .image .label {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 30px;
  height: 30px;
  border-bottom-left-radius: 4px;
  border-top-right-radius: 4px;
  border: 1px solid #DDDDDD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
}
.card-configurator-product .image .label i {
  color: #282023;
  font-size: 14px;
}
.card-configurator-product .content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.card-configurator-product .content .title {
  color: #000;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  line-height: 14px;
  text-transform: uppercase;
  min-height: 40px;
}

.card-customer .item .image {
  border: 1px solid #DDDDDD;
}
.card-customer .item .image img {
  padding: 1.5rem;
  background-color: #272728;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.card-customer .item .image:hover {
  border-color: #282023 !important;
}
.card-customer .item .image:hover img {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

.card-download-a {
  background: transparent !important;
}
.card-download-a .image {
  position: unset !important;
}
.card-download-a .image > div:first-child {
  max-height: 283px;
}
@media (max-width: 991.98px) {
  .card-download-a .image > div:first-child {
    max-height: 150px;
  }
}
.card-download-a .image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-download-a .card-footer {
  background-color: transparent;
}
.card-download-a:hover {
  cursor: pointer;
}
.card-employee-a:hover {
  cursor: pointer;
}
.card-employee-a .imagehover {
  display: none;
  position: relative !important;
}
.card-employee-a .image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-employee-a .image .overlay {
  z-index: 6;
  bottom: 0;
}
.card-employee-a .image .overlay .card-image-title {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #fff;
  bottom: 16px;
  left: 16px;
}
@media (max-width: 991.98px) {
  .card-employee-a .image .overlay .card-image-title {
    font-size: 14px;
  }
}
.card-employee-a .image .overlay .card-label {
  font-size: 12px;
  line-height: 1.2;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-employee-a .image .overlay .card-label {
    font-size: 11px;
  }
}
.card-employee-a .image .overlay .card-label-top-right {
  top: -1px;
  right: -1px;
  border-top-right-radius: 4px;
  border-bottom-left-radius: 0.3rem;
}
.card-employee-a .image .overlay .card-label-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top-left-radius: 4px;
}
.card-employee-a .image .overlay .card-favorite {
  top: 5px;
  left: 5px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  cursor: pointer;
  background-color: #FFFFFF;
  text-align: center;
}
.card-employee-a .image .overlay .card-favorite i {
  color: #575756;
  line-height: 26px;
}
.card-employee-a .image .gradient {
  background: transparent linear-gradient(301deg, #00000033 20%, #000000cc 80%) 0% 0% no-repeat padding-box;
  top: unset;
  bottom: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-employee-a .card-body .card-title {
  font-size: 32px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
  margin-bottom: 0.3rem !important;
}
@media (max-width: 991.98px) {
  .card-employee-a .card-body .card-title {
    font-size: 26px;
  }
}
.card-employee-a .card-body .card-subtitle {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .card-employee-a .card-body .card-subtitle {
    font-size: 14px;
  }
}
.card-employee-a .card-body .card-text {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
}
.card-employee-a .card-body .card-text a {
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-employee-a .card-body .card-text {
    font-size: 12px;
  }
}
.card-employee-a .card-body .card-text p {
  margin-bottom: 0px;
}
.card-employee-a .card-body .card-text i {
  color: #282023 !important;
  font-size: 10px !important;
}
.card-employee-a .card-footer {
  background-color: transparent;
}
.card-employee-a .card-footer .card-price {
  font-size: 14px;
  line-height: 1.2;
  font-family: "Quicksand", sans-serif;
  color: #000;
}
@media (max-width: 991.98px) {
  .card-employee-a .card-footer .card-price {
    font-size: 12px;
  }
}

.card-employee-b:hover {
  cursor: pointer;
}
.card-employee-b .imagehover {
  display: none;
  position: relative !important;
}
.card-employee-b .image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-employee-b .image .overlay {
  z-index: 6;
  bottom: 0;
}
.card-employee-b .image .overlay .card-image-title {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #fff;
  bottom: 16px;
  left: 16px;
}
@media (max-width: 991.98px) {
  .card-employee-b .image .overlay .card-image-title {
    font-size: 14px;
  }
}
.card-employee-b .image .overlay .card-label {
  font-size: 12px;
  line-height: 1.2;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-employee-b .image .overlay .card-label {
    font-size: 11px;
  }
}
.card-employee-b .image .overlay .card-label-top-right {
  top: -1px;
  right: -1px;
  border-top-right-radius: 4px;
  border-bottom-left-radius: 0.3rem;
}
.card-employee-b .image .overlay .card-label-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top-left-radius: 4px;
}
.card-employee-b .image .overlay .card-favorite {
  top: 5px;
  left: 5px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  cursor: pointer;
  background-color: #FFFFFF;
  text-align: center;
}
.card-employee-b .image .overlay .card-favorite i {
  color: #575756;
  line-height: 26px;
}
.card-employee-b .image .gradient {
  background: transparent linear-gradient(301deg, #00000033 20%, #000000cc 80%) 0% 0% no-repeat padding-box;
  top: unset;
  bottom: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-employee-b .card-body .card-title {
  font-size: 32px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .card-employee-b .card-body .card-title {
    font-size: 26px;
  }
}
.card-employee-b .card-body .card-subtitle {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .card-employee-b .card-body .card-subtitle {
    font-size: 14px;
  }
}
.card-employee-b .card-body .card-text {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
}
.card-employee-b .card-body .card-text a {
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-employee-b .card-body .card-text {
    font-size: 12px;
  }
}
.card-employee-b .card-body .card-text p {
  margin-bottom: 0px;
}
.card-employee-b .card-body .card-text i {
  font-size: 12px;
}
.card-employee-b .card-footer {
  background-color: transparent;
}
.card-employee-b .card-footer .card-price {
  font-size: 14px;
  line-height: 1.2;
  font-family: "Quicksand", sans-serif;
  color: #000;
}
@media (max-width: 991.98px) {
  .card-employee-b .card-footer .card-price {
    font-size: 12px;
  }
}

.event-a {
  height: 100%;
}
.event-a .image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.event-a .image .overlay {
  z-index: 6;
  bottom: 0;
}
.event-a .image .overlay .card-image-title {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #fff;
  text-transform: uppercase;
  bottom: 16px;
  left: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 991.98px) {
  .event-a .image .overlay .card-image-title {
    font-size: 14px;
    left: 13px;
  }
}
.event-a .image .overlay .btn-outline-primary {
  bottom: 16px;
  left: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
.event-a .image .gradient {
  background: transparent -webkit-gradient(linear, left bottom, left top, from(#000000cc), to(#00000000)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(360deg, #000000cc 0%, #00000000 100%) 0% 0% no-repeat padding-box;
  top: unset;
  bottom: 0;
  left: 0;
  position: absolute;
  height: 50%;
  width: 100%;
  z-index: 5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.event-a .card-body .card-title {
  font-size: 32px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .event-a .card-body .card-title {
    font-size: 26px;
    left: 13px;
  }
}
.event-a .card-body .card-text {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .event-a .card-body .card-text {
    font-size: 12px;
  }
}
.event-a .card-body .card-text i {
  color: #282023;
  font-size: 12px;
  vertical-align: baseline;
}
.event-a .card-body .card-text p {
  margin-bottom: 0px;
}
.event-a .card-vertical-line {
  border-top: 1px dashed #DDDDDD;
  margin: 0 16px;
}
.event-a .card-footer {
  background-color: transparent;
}
.event-a:hover {
  cursor: pointer;
}
.event-a:hover img {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.event-a:hover .card-title {
  color: #282023;
}
.event-a:hover .image .overlay .btn-outline-primary {
  opacity: 1;
}
.event-a:hover .image .overlay .card-image-title {
  bottom: 62px;
}
.event-a:hover .image .gradient {
  height: 100%;
  background: transparent -webkit-gradient(linear, left bottom, left top, from(#000000cc), to(#00000000)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(360deg, #000000cc 0%, #00000000 100%) 0% 0% no-repeat padding-box;
}
.card-event-special {
  text-align: left;
}
.card-event-special:hover {
  text-decoration: none;
  color: #282023;
}
.card-event-special .content i {
  color: #7B5A51;
  font-size: 12px;
  text-align: center;
}
.card-event-special .content .date_end {
  margin-left: 26px;
}
.card-event-special .content a {
  color: #000000 !important;
}
.card-event-special .content a:hover {
  color: #282023 !important;
  text-decoration: underline;
}

.card-faq:not(:last-child) {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .card-faq:not(:last-child) {
    padding-bottom: 1.5rem;
  }
}
@media (min-width: 768px) {
  .card-faq:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}
.card-faq .accordion-faq .accordion-head {
  font-size: 18px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #000;
  background-color: #F9F9F9;
  cursor: pointer;
  position: relative;
}
@media (max-width: 991.98px) {
  .card-faq .accordion-faq .accordion-head {
    font-size: 16px;
  }
}
.card-faq .accordion-faq .accordion-head.collapsed {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.card-faq .accordion-faq .accordion-head i {
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.card-faq .accordion-faq .accordion-head:not(.collapsed) i {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.card-faq .accordion-faq .accordion-head span {
  width: calc(100% - 40px);
  display: block;
}
.card-faq .accordion-faq .accordion-head .icon {
  position: absolute;
  right: 14px;
  top: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.card-faq .accordion-faq .accordion-head .icon i {
  color: inherit;
  font-size: 13px;
  margin: auto 0;
}
.card-faq .accordion-faq .accordion-text {
  background-color: #fff;
  font-size: 14px;
  line-height: 1.8;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-faq .accordion-faq .accordion-text {
    font-size: 13px;
  }
}

.card-homeblock-a {
  max-height: 250px;
  overflow: hidden;
}
.card-homeblock-a.big {
  max-height: 383px;
}
.card-homeblock-a.big .image > div:first-child {
  max-height: 383px;
}
@media (max-width: 991.98px) {
  .card-homeblock-a.big .image > div:first-child {
    max-height: 235px;
  }
}
@media (max-width: 991.98px) {
  .card-homeblock-a.big {
    max-height: 235px;
  }
}
.card-homeblock-a.small {
  max-height: 180px;
}
@media (max-width: 991.98px) {
  .card-homeblock-a.small {
    max-height: 150px;
  }
}
@media (max-width: 991.98px) {
  .card-homeblock-a {
    max-height: 150px;
  }
}
.card-homeblock-a:hover {
  cursor: pointer;
}
.card-homeblock-a:hover .image .overlay .card-homeblock-title {
  bottom: 43px;
}
.card-homeblock-a:hover .image .overlay .btn, .card-homeblock-a:hover .image .overlay .card-homeblock-text {
  opacity: 1;
}
.card-homeblock-a:hover .image .gradient {
  height: 100%;
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#00000000), color-stop(80%, #000000cc)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #00000000 0%, #000000cc 80%) 0% 0% no-repeat padding-box;
}
.card-homeblock-a .image {
  position: unset !important;
}
.card-homeblock-a .image > div:first-child {
  max-height: 250px;
}
@media (max-width: 991.98px) {
  .card-homeblock-a .image > div:first-child {
    max-height: 150px;
  }
}
.card-homeblock-a .image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-homeblock-a .image .gradient {
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#00000000), color-stop(80%, #000000cc)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #00000000 0%, #000000cc 80%) 0% 0% no-repeat padding-box;
  top: unset;
  bottom: 0;
  left: 0;
  position: absolute;
  height: 50%;
  width: 100%;
  z-index: 5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.card-homeblock-a .image .overlay {
  z-index: 6;
  bottom: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-homeblock-a .image .overlay .card-homeblock-title {
  font-size: 20px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #fff;
  bottom: 16px;
  left: 24px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 991.98px) {
  .card-homeblock-a .image .overlay .card-homeblock-title {
    font-size: 16px;
    bottom: 8px;
    left: 8px;
  }
}
.card-homeblock-a .image .overlay .card-homeblock-text {
  bottom: 10px;
  left: 16px;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-homeblock-a .image .overlay .btn {
  bottom: 5px;
  right: 8px;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.card-homeblock-b {
  max-height: 250px !important;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .card-homeblock-b {
    max-height: 150px !important;
  }
  .card-homeblock-b .image {
    max-height: 150px !important;
  }
  .card-homeblock-b .image .inner {
    max-height: 150px !important;
  }
  .card-homeblock-b .overlay {
    max-height: 150px !important;
  }
  .card-homeblock-b .overlay .gradient {
    max-height: 150px !important;
  }
}
.card-homeblock-b .image {
  max-height: 250px !important;
}
.card-homeblock-b .image .inner {
  max-height: 250px !important;
}
.card-homeblock-b .image img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.card-homeblock-b .image .overlay {
  z-index: 1;
  top: 0;
  max-height: 250px !important;
}
.card-homeblock-b .image .overlay .btn-link {
  opacity: 0;
  bottom: 16px;
  left: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: unset !important;
  color: #282023 !important;
}
@media (max-width: 991.98px) {
  .card-homeblock-b .image .overlay .btn-link {
    display: none;
  }
}
.card-homeblock-b .image .overlay .btn-link:hover {
  color: #fff !important;
}
.card-homeblock-b .image .overlay .homeblock-text {
  top: 24px;
  left: 24px;
  width: calc(100% - 48px);
}
.card-homeblock-b .image .overlay .homeblock-text .card-homeblock-title {
  font-size: 20px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #fff;
  top: 24px;
  left: 24px;
}
@media (max-width: 991.98px) {
  .card-homeblock-b .image .overlay .homeblock-text .card-homeblock-title {
    font-size: 16px;
  }
}
.card-homeblock-b .image .overlay .homeblock-text .card-homeblock-subtitle {
  font-size: 14px;
  line-height: 1.8;
  color: #fff;
  top: 50px;
  left: 24px;
}
@media (max-width: 991.98px) {
  .card-homeblock-b .image .overlay .homeblock-text .card-homeblock-subtitle {
    font-size: 12px;
  }
}
.card-homeblock-b .image .gradient {
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#00000000), color-stop(80%, #000000cc)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #00000000 0%, #000000cc 80%) 0% 0% no-repeat padding-box;
  top: 0;
  left: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  max-height: 250px !important;
}
.card-homeblock-b:hover {
  cursor: pointer;
}
.card-homeblock-b:hover img {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.card-homeblock-b:hover .image .overlay .btn-link {
  opacity: 1;
  text-decoration: none;
}

.card-homeblock-c {
  max-height: 80px !important;
  background: rgba(0, 0, 0, 0);
  overflow: hidden;
  border: none;
}
.card-homeblock-c .image {
  height: 70px;
  width: 70px;
}
.card-homeblock-c .image .inner {
  height: 70px;
}
.card-homeblock-c .card-homeblock-title {
  font-size: 20px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #000;
}
@media (max-width: 991.98px) {
  .card-homeblock-c .card-homeblock-title {
    font-size: 16px;
  }
}
.card-homeblock-c .card-homeblock-text {
  font-size: 14px;
  line-height: 1.8;
  color: #000;
}
@media (max-width: 991.98px) {
  .card-homeblock-c .card-homeblock-text {
    font-size: 12px;
  }
}

.card-homeblock-c:hover * {
  color: #282023;
}

.card-homeblock-d {
  background: rgba(0, 0, 0, 0);
}
.card-homeblock-d .card-homeblock-title {
  color: #ffffff;
}
.card-homeblock-d:hover {
  cursor: pointer;
}
.card-homeblock-d:hover .image img {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.card-homeblock-d:hover .image .overlay .btn, .card-homeblock-d:hover .image .overlay .card-homeblock-text {
  opacity: 1;
}
.card-homeblock-d .card-header, .card-homeblock-d .card-footer {
  background-color: rgba(0, 0, 0, 0) !important;
}
.card-homeblock-d .card-text {
  color: #696969;
}
.card-homeblock-d .image > div:first-child {
  max-height: 250px;
}
@media (max-width: 991.98px) {
  .card-homeblock-d .image > div:first-child {
    max-height: 150px;
  }
}
.card-homeblock-d .image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-homeblock-d .image .overlay {
  z-index: 6;
  bottom: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-homeblock-d .image .overlay .btn {
  bottom: 16px;
  left: 16px;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-homeblock-d .btn {
  color: #ddd;
}

.card-homeblock-e {
  max-height: 180px !important;
  overflow: hidden;
}
.card-homeblock-e.big {
  max-height: 383px;
}
.card-homeblock-e.big .image > div:first-child {
  max-height: 383px;
}
@media (max-width: 991.98px) {
  .card-homeblock-e.big .image > div:first-child {
    max-height: 235px;
  }
}
@media (max-width: 991.98px) {
  .card-homeblock-e.big {
    max-height: 235px;
  }
}
.card-homeblock-e.small {
  max-height: 180px;
}
@media (max-width: 991.98px) {
  .card-homeblock-e.small {
    max-height: 150px;
  }
}
@media (max-width: 991.98px) {
  .card-homeblock-e {
    max-height: 150px;
  }
}
.card-homeblock-e:hover {
  cursor: pointer;
}
.card-homeblock-e:hover .image .overlay .card-homeblock-title {
  bottom: calc(100% - 8px);
}
.card-homeblock-e:hover .image .overlay .btn, .card-homeblock-e:hover .image .overlay .card-homeblock-text {
  opacity: 1;
}
.card-homeblock-e:hover .image img {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.card-homeblock-e:hover .image .gradient {
  height: 100%;
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#00000000), color-stop(80%, #000000cc)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #00000000 0%, #000000cc 80%) 0% 0% no-repeat padding-box;
}
.card-homeblock-e .image {
  position: unset !important;
}
.card-homeblock-e .image > div:first-child {
  max-height: 250px;
}
.card-homeblock-e .image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-homeblock-e .image .gradient {
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#00000000), color-stop(80%, #000000cc)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #00000000 0%, #000000cc 80%) 0% 0% no-repeat padding-box;
  top: unset;
  bottom: 0;
  left: 0;
  position: absolute;
  height: 50%;
  width: 100%;
  z-index: 5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.card-homeblock-e .image .overlay {
  z-index: 6;
  bottom: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-homeblock-e .image .overlay .card-homeblock-title {
  font-size: 20px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #fff;
  bottom: 16px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 991.98px) {
  .card-homeblock-e .image .overlay .card-homeblock-title {
    font-size: 16px;
  }
}
.card-homeblock-e .image .overlay .card-homeblock-text {
  color: #fff;
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 991.98px) {
  .card-homeblock-e .image .overlay .card-homeblock-text {
    font-size: 12px;
  }
}
.card-homeblock-e .image .overlay .btn {
  bottom: 5px;
  right: 8px;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.card-homeblock-f {
  border: 1px solid #DDDDDD;
  background-color: #fff;
  position: relative;
}
.card-homeblock-f:hover {
  cursor: pointer;
  border: 1px solid #282023;
  background-color: #282023 !important;
}
.card-homeblock-f:hover .fa-chevron-right {
  color: #fff;
}
.card-homeblock-f:hover .icon {
  border: 1px solid #fff;
}
.card-homeblock-f:hover .card-homeblock-title,
.card-homeblock-f:hover .card-homeblock-text {
  color: #fff !important;
}
.card-homeblock-f .fa-chevron-right {
  position: absolute;
  color: #282023;
  top: 37px;
  right: 24px;
  font-size: 12px;
}
@media (max-width: 991.98px) {
  .card-homeblock-f .fa-chevron-right {
    top: 25px;
    right: 16px;
  }
}
.card-homeblock-f .icon {
  width: 40px;
  height: 40px;
  background-color: #282023;
  border: 1px solid #282023;
  text-align: center;
  line-height: 40px;
}
@media (max-width: 991.98px) {
  .card-homeblock-f .icon {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}
.card-homeblock-f .icon i {
  color: #fff;
  font-size: 17px;
}
@media (max-width: 991.98px) {
  .card-homeblock-f .icon i {
    font-size: 15px;
  }
}
.card-homeblock-f .card-body .card-homeblock-title {
  font-size: 20px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .card-homeblock-f .card-body .card-homeblock-title {
    font-size: 16px;
  }
}
.card-homeblock-f .card-body .card-homeblock-text {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-homeblock-f .card-body .card-homeblock-text {
    font-size: 12px;
  }
}
@media (max-width: 767.98px) {
  .card-homeblock-f .card-body .card-homeblock-text {
    display: none;
  }
}
.card-homeblock-f .card-body .card-homeblock-text p {
  margin-bottom: 0px;
}

.card-homeblock-g {
  overflow: hidden;
}
.card-homeblock-g .image {
  position: unset !important;
}
.card-homeblock-g .image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-homeblock-g .image .overlay {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 2;
}
.card-homeblock-g .image .overlay .card-homeblock-title {
  top: 24px;
  left: 24px;
  font-size: 20px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
}
.card-homeblock-g .image .overlay .homeblock-arrow {
  right: 25px;
  bottom: 25px;
  background-color: #000;
  width: 40px;
  height: 40px;
}
.card-homeblock-g .image .overlay .homeblock-arrow i {
  font-size: 20px;
  color: #fff;
}
.card-homeblock-g .gradient {
  background: transparent linear-gradient(359deg, #00000000 0%, #000000CC 100%) 0% 0% no-repeat padding-box;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100px;
  z-index: 1;
}
.card-homeblock-g:hover {
  cursor: pointer;
}
.card-homeblock-g:hover .image img {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.card-homeblock-h {
  position: relative;
  overflow: hidden;
  max-height: 225px;
}
@media (max-width: 575.98px) {
  .card-homeblock-h {
    height: 140px;
  }
}
.card-homeblock-h:hover {
  cursor: pointer;
}
.card-homeblock-h .card-body .card-homeblock-title {
  font-size: 20px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #000;
}
@media (max-width: 991.98px) {
  .card-homeblock-h .card-body .card-homeblock-title {
    font-size: 16px;
  }
}
.card-homeblock-h .card-body .card-homeblock-text {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #000;
}
@media (max-width: 991.98px) {
  .card-homeblock-h .card-body .card-homeblock-text {
    font-size: 12px;
  }
}
.card-homeblock-h .card-body .card-homeblock-text p {
  margin-bottom: 0px;
}
.card-homeblock-h .content-title {
  position: absolute;
  top: 24px;
}
.card-homeblock-h .btn {
  bottom: 20px;
}
.card-homeblock-h .image {
  bottom: 15px;
}
@media (max-width: 991.98px) {
  .card-homeblock-h .image {
    bottom: 4px;
  }
}

.card-inspiration-album {
  height: 250px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
@media (max-width: 991.98px) {
  .card-inspiration-album {
    max-height: 150px;
  }
}
.card-inspiration-album .card-image-title {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #fff;
  z-index: 6;
  top: 16px;
  left: 32px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 991.98px) {
  .card-inspiration-album .card-image-title {
    font-size: 14px;
  }
}
.card-inspiration-album:hover {
  cursor: pointer;
}
.card-inspiration-album:hover .image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.card-inspiration-album:hover .overlay {
  opacity: 1;
}
.card-inspiration-album:hover .overlay .btn {
  opacity: 1;
  bottom: 20px;
}
.card-inspiration-album:hover .gradient {
  height: 100%;
  background: transparent -webkit-gradient(linear, left top, left bottom, color-stop(20%, #00000033), color-stop(80%, #000000cc)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #00000033 20%, #000000cc 80%) 0% 0% no-repeat padding-box;
}
.card-inspiration-album img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.card-inspiration-album .gradient {
  background: transparent -webkit-gradient(linear, left top, left bottom, color-stop(20%, #00000033), color-stop(80%, #000000cc)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #00000033 20%, #000000cc 80%) 0% 0% no-repeat padding-box;
  top: 0;
  bottom: unset;
  position: absolute;
  height: 50%;
  width: 100%;
  z-index: 5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.card-inspiration-album .overlay {
  top: 0;
  bottom: 0;
  color: #fff;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 6;
  width: 100%;
}
.card-inspiration-album .overlay .btn {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  opacity: 0;
  bottom: -45px;
  left: 24px;
}

.card-inspiration {
  position: relative;
  cursor: pointer;
}
.card-inspiration:hover .overlay {
  opacity: 1;
}
.card-inspiration img {
  border: 1px solid;
  border-radius: 0.25rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.card-inspiration .overlay {
  top: 0;
  bottom: 0;
  left: 15px;
  right: 15px;
  color: #fff;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-inspiration .overlay span {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #fff;
  border-radius: 50%;
  font-size: 20px;
  color: #575756;
}

.card-pages-a:hover {
  text-decoration: none;
}
.card-pages-a:hover .card-title,
.card-pages-a:hover .card-title i {
  color: #282023;
}
.card-pages-a .card-title {
  font-size: 32px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .card-pages-a .card-title {
    font-size: 26px;
  }
}
.card-pages-a .card-title i {
  font-size: 13px;
}
.card-pages-a .card-text {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-pages-a .card-text {
    font-size: 12px;
  }
}

.card-pages-b:hover {
  text-decoration: none;
}
.card-pages-b:hover .card-title {
  text-decoration: underline !important;
}
.card-pages-b .line-left {
  border-left: 1px solid #282023;
}
.card-pages-b .card-title {
  font-size: 32px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .card-pages-b .card-title {
    font-size: 26px;
  }
}
.card-pages-b .card-title i {
  font-size: 13px;
}
.card-pages-b .card-text {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-pages-b .card-text {
    font-size: 12px;
  }
}

.card-pages-image-a {
  max-height: 250px;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .card-pages-image-a {
    max-height: 150px;
  }
}
.card-pages-image-a:hover {
  cursor: pointer;
}
.card-pages-image-a:hover .image .overlay .card-image-title {
  bottom: 73px;
}
.card-pages-image-a:hover .image .overlay .btn {
  opacity: 1;
}
.card-pages-image-a:hover .image .gradient {
  height: 100%;
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#00000000), color-stop(80%, #000000cc)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #00000000 0%, #000000cc 80%) 0% 0% no-repeat padding-box;
}
.card-pages-image-a .image {
  position: unset !important;
}
.card-pages-image-a .image > div:first-child {
  max-height: 250px;
}
@media (max-width: 991.98px) {
  .card-pages-image-a .image > div:first-child {
    max-height: 150px;
  }
}
.card-pages-image-a .image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-pages-image-a .image .gradient {
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#00000000), color-stop(80%, #000000cc)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #00000000 0%, #000000cc 80%) 0% 0% no-repeat padding-box;
  top: unset;
  bottom: 0;
  left: 0;
  position: absolute;
  height: 50%;
  width: 100%;
  z-index: 5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.card-pages-image-a .image .overlay {
  z-index: 6;
  bottom: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-pages-image-a .image .overlay .card-image-title {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #fff;
  bottom: 16px;
  left: 24px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 991.98px) {
  .card-pages-image-a .image .overlay .card-image-title {
    font-size: 14px;
  }
}
.card-pages-image-a .image .overlay .btn {
  bottom: 24px;
  left: 24px;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.card-pages-image-b {
  max-height: 250px;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .card-pages-image-b {
    max-height: 150px;
  }
}
.card-pages-image-b:hover {
  cursor: pointer;
}
.card-pages-image-b:hover .image .overlay .card-image-title {
  color: #282023 !important;
}
.card-pages-image-b:hover .image .btn {
  opacity: 1;
}
.card-pages-image-b .image {
  position: unset !important;
}
.card-pages-image-b .image > div:first-child {
  max-height: 180px;
}
@media (max-width: 991.98px) {
  .card-pages-image-b .image > div:first-child {
    max-height: 150px;
  }
}
.card-pages-image-b .image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-pages-image-b .image .gradient {
  background: #00000099 0% 0% no-repeat padding-box;
  top: unset;
  bottom: 0;
  left: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.card-pages-image-b .image .overlay {
  z-index: 6;
  top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-pages-image-b .image .overlay .card-image-title {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #fff;
  top: 16px;
  left: 24px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 991.98px) {
  .card-pages-image-b .image .overlay .card-image-title {
    font-size: 14px;
    bottom: 8px;
    left: 8px;
  }
}
.card-pages-image-b .image .btn {
  z-index: 7;
  bottom: 24px;
  left: 24px;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.card-pages-image-c .card-header {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .card-pages-image-c .card-header {
    font-size: 16px;
  }
}
.card-pages-image-c .card-image {
  border-top-right-radius: 0px !important;
  border-top-left-radius: 0px !important;
}
.card-pages-image-c .card-image img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.card-pages-image-c .card-image .card-overlay .btn-tertiary {
  bottom: 183px;
  left: 0px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
.card-pages-image-c:hover {
  cursor: pointer;
}
.card-pages-image-c:hover .card-header {
  color: #282023;
}
.card-pages-image-c:hover img {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.card-pages-image-c:hover .card-overlay .btn-tertiary {
  opacity: 1;
  left: 16px;
}

.card-pages-image-d {
  max-height: 180px;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .card-pages-image-d {
    max-height: 150px;
  }
}
.card-pages-image-d:hover {
  cursor: pointer;
}
.card-pages-image-d:hover .image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.card-pages-image-d:hover .image .overlay div .btn {
  left: 16px;
  opacity: 1;
  top: calc(100% + 125px);
}
@media (max-width: 991.98px) {
  .card-pages-image-d:hover .image .overlay div .btn {
    top: calc(100% + 100px);
  }
}
.card-pages-image-d .image {
  position: unset !important;
}
.card-pages-image-d .image > div:first-child {
  max-height: 250px;
}
@media (max-width: 991.98px) {
  .card-pages-image-d .image > div:first-child {
    max-height: 150px;
  }
}
.card-pages-image-d .image img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.card-pages-image-d .image .gradient {
  background: #00000099 0% 0% no-repeat padding-box;
  top: unset;
  bottom: 0;
  left: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.card-pages-image-d .image .overlay {
  z-index: 6;
  bottom: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.card-pages-image-d .image .overlay .card-image-title {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #fff;
  top: 16px;
  left: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 991.98px) {
  .card-pages-image-d .image .overlay .card-image-title {
    font-size: 14px;
  }
}
.card-pages-image-d .image .overlay .btn {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  left: 0px;
  opacity: 0;
  top: calc(100% + 125px);
}
@media (max-width: 991.98px) {
  .card-pages-image-d .image .overlay .btn {
    top: calc(100% + 100px);
  }
}

.card-partner-a .item {
  background-color: #fff;
}
.card-partner-a .item .image .inner {
  background-color: #fff;
}
.card-partner-a .item .image .inner img {
  padding: 0.5rem;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (min-width: 992px) {
  .card-partner-a .item .image .inner img {
    padding: 1.5rem;
  }
}
.card-partner-a .item .image .inner img:hover {
  -webkit-filter: none !important;
  filter: none !important;
  -webkit-transform-origin: center;
  transform-origin: center;
}

.card-partner-b .item {
  background-color: #fff;
}
.card-partner-b .item .image {
  border: 1px solid #DDDDDD;
}
.card-partner-b .item .image .inner {
  background-color: #fff;
}
.card-partner-b .item .image .inner img {
  padding: 0.5rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (min-width: 992px) {
  .card-partner-b .item .image .inner img {
    padding: 1.5rem;
  }
}
.card-partner-b .item .image:hover {
  border-color: #282023 !important;
}
.card-partner-b .item .image:hover img {
  -webkit-filter: none !important;
  filter: none !important;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

.card-partner .item {
  background-color: #fff;
}
.card-partner .item .image img {
  padding: 0.5rem;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (min-width: 992px) {
  .card-partner .item .image img {
    padding: 1.5rem;
  }
}
.card-partner .item .image img:hover {
  -webkit-filter: none !important;
  filter: none !important;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

.card-product-a {
  height: 100%;
}
.card-product-a:hover {
  cursor: pointer;
}
.card-product-a:hover img {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.card-product-a:hover .card-title {
  color: #282023 !important;
}
.card-product-a .image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-product-a .image .card-image-title {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #fff;
  bottom: 16px;
  left: 24px;
}
@media (max-width: 991.98px) {
  .card-product-a .image .card-image-title {
    font-size: 14px;
  }
}
.card-product-a .image .card-label {
  font-size: 12px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-product-a .image .card-label {
    font-size: 11px;
  }
}
.card-product-a .image .card-label-top-right {
  top: -1px;
  right: -1px;
  border-top-right-radius: 4px;
  border-bottom-left-radius: 0.3rem;
}
.card-product-a .image .card-label-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top-left-radius: 4px;
}
.card-product-a .image .card-favorite {
  top: 5px;
  left: 5px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  cursor: pointer;
  text-align: center;
  z-index: 10;
}
.card-product-a .image .card-favorite i {
  line-height: 26px;
  font-size: 14px;
  color: #fff;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #7B5A51;
}
@media (pointer: fine) {
  .card-product-a .image .card-favorite i:hover {
    color: #282023;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #282023;
    cursor: pointer;
  }
}
.card-product-a .image .card-favorite.is-favorite i {
  color: #282023;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #282023;
  cursor: pointer;
}
@media (pointer: fine) {
  .card-product-a .image .card-favorite.is-favorite i:hover {
    color: #fff;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #7B5A51;
  }
}
.card-product-a .card-body .card-title {
  font-size: 32px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 991.98px) {
  .card-product-a .card-body .card-title {
    font-size: 26px;
  }
}
.card-product-a .card-body .card-subtitle {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .card-product-a .card-body .card-subtitle {
    font-size: 14px;
  }
}
.card-product-a .card-footer {
  background-color: transparent;
}
.card-product-a .card-footer .card-price {
  font-size: 14px;
  line-height: 1.2;
  font-family: "Quicksand", sans-serif;
  color: #000;
}
@media (max-width: 991.98px) {
  .card-product-a .card-footer .card-price {
    font-size: 12px;
  }
}
.card-product-a .card-footer .card-price-strike {
  font-size: 12px;
  line-height: 1.2;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-product-a .card-footer .card-price-strike {
    font-size: 10px;
  }
}
.card-product-a .card-footer .btn-circle {
  width: 40px;
  height: 40px;
  padding: 10px 0px;
  border-radius: 50%;
  font-size: 15px;
  text-align: center;
}
@media (max-width: 991.98px) {
  .card-product-a .card-footer .btn-circle {
    width: 25px;
    height: 25px;
    font-size: 12px;
    padding: 0px 0px;
  }
}
.card-product-a .card-text {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-product-a .card-text {
    font-size: 12px;
  }
}
.card-product-a .variant-product {
  line-height: 1.2;
  font-size: 12px;
}
@media (max-width: 991.98px) {
  .card-product-a .variant-product {
    font-size: 10px;
  }
}

.card-product-b-upsell {
  height: 100%;
}
.card-product-b-upsell .image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-product-b-upsell .image .overlay {
  z-index: 6;
  bottom: 0;
}
.card-product-b-upsell .image .overlay .card-label {
  font-size: 12px;
  line-height: 1.2;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-product-b-upsell .image .overlay .card-label {
    font-size: 11px;
  }
}
.card-product-b-upsell .image .overlay .card-label-top-right {
  top: -1px;
  right: -1px;
  border-top-right-radius: 4px;
  border-bottom-left-radius: 0.3rem;
}
.card-product-b-upsell .image .overlay .card-label-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top-left-radius: 4px;
}
.card-product-b-upsell .image .overlay .btn-link {
  bottom: -32px;
  left: 0;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
.card-product-b-upsell .image .card-favorite {
  top: 5px;
  left: 5px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  cursor: pointer;
  background-color: #FFFFFF;
  text-align: center;
  z-index: 10;
}
.card-product-b-upsell .image .card-favorite i {
  line-height: 26px;
  font-size: 14px;
  color: #fff;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #7B5A51;
}
@media (pointer: fine) {
  .card-product-b-upsell .image .card-favorite i:hover {
    color: #282023;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #282023;
    cursor: pointer;
  }
}
.card-product-b-upsell .image .card-favorite.is-favorite i {
  color: #282023;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #282023;
  cursor: pointer;
}
@media (pointer: fine) {
  .card-product-b-upsell .image .card-favorite.is-favorite i:hover {
    color: #fff;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #7B5A51;
  }
}
.card-product-b-upsell .card-body .card-title {
  font-size: 32px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
  height: 40px;
  display: inline-block;
}
.card-product-b-upsell .card-body .card-title:hover {
  text-decoration: none;
}
@media (max-width: 991.98px) {
  .card-product-b-upsell .card-body .card-title {
    font-size: 26px;
  }
}
.card-product-b-upsell .card-body .color-dot {
  height: 13px;
  width: 13px;
}
.card-product-b-upsell .card-text {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-product-b-upsell .card-text {
    font-size: 12px;
  }
}
.card-product-b-upsell .card-text p {
  margin-bottom: 0px;
}
.card-product-b-upsell .card-text.in-stock {
  color: #28A745;
}
.card-product-b-upsell .card-text.out-of-stock-temporary {
  color: #EC9F1B;
}
.card-product-b-upsell .card-text.out-of-stock {
  color: #EC1B1B;
}
.card-product-b-upsell .variant-product {
  line-height: 1.2;
}
.card-product-b-upsell .card-vertical-line {
  border-top: 1px dashed #DDDDDD;
  margin: 0 16px;
}
.card-product-b-upsell .card-footer {
  background-color: transparent;
}
.card-product-b-upsell .card-footer .card-price {
  font-size: 14px;
  line-height: 1.2;
  font-family: "Quicksand", sans-serif;
  color: #000;
}
@media (max-width: 991.98px) {
  .card-product-b-upsell .card-footer .card-price {
    font-size: 12px;
  }
}
.card-product-b-upsell .card-footer .card-type {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #000;
}
@media (max-width: 991.98px) {
  .card-product-b-upsell .card-footer .card-type {
    font-size: 12px;
  }
}
.card-product-b-upsell .card-footer .card-price-strike {
  font-size: 12px;
  line-height: 1.2;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-product-b-upsell .card-footer .card-price-strike {
    font-size: 10px;
  }
}
.card-product-b-upsell .card-footer .btn-products i {
  margin: 0px !important;
}
.card-product-b-upsell:hover img {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.card-product-b-upsell:hover .card-title {
  color: #282023;
}
.card-product-b {
  height: 100%;
}
.card-product-b .image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-product-b .image .overlay {
  z-index: 6;
  bottom: 0;
}
.card-product-b .image .overlay .card-label {
  font-size: 12px;
  line-height: 1.2;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-product-b .image .overlay .card-label {
    font-size: 11px;
  }
}
.card-product-b .image .overlay .card-label-top-right {
  top: -1px;
  right: -1px;
  border-top-right-radius: 4px;
  border-bottom-left-radius: 0.3rem;
}
.card-product-b .image .overlay .card-label-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top-left-radius: 4px;
}
.card-product-b .image .overlay .btn-link {
  bottom: -32px;
  left: 0;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
.card-product-b .image .overlay .card-favorite {
  top: 5px;
  left: 5px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  cursor: pointer;
  text-align: center;
}
.card-product-b .image .overlay .card-favorite i {
  color: #fff;
  line-height: 26px;
  font-size: 16px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #282023;
}
@media (pointer: fine) {
  .card-product-b .image .overlay .card-favorite i:hover {
    color: #282023;
    -webkit-text-stroke-width: 1px;
    cursor: pointer;
  }
}
.card-product-b .image .overlay .card-favorite.is-favorite i {
  color: #282023;
  -webkit-text-stroke-width: 1px;
  cursor: pointer;
}
@media (pointer: fine) {
  .card-product-b .image .overlay .card-favorite.is-favorite i:hover {
    color: #fff;
    -webkit-text-stroke-width: 1px;
  }
}
.card-product-b .image-hover {
  display: none !important;
}
.card-product-b .card-body .card-title {
  font-size: 32px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .card-product-b .card-body .card-title {
    font-size: 26px;
  }
}
.card-product-b .card-body .color-dot {
  height: 13px;
  width: 13px;
}
.card-product-b .card-text {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-product-b .card-text {
    font-size: 12px;
  }
}
.card-product-b .card-text p {
  margin-bottom: 0px;
}
.card-product-b .card-text.in-stock {
  color: #28A745;
}
.card-product-b .card-text.out-of-stock-temporary {
  color: #EC9F1B;
}
.card-product-b .card-text.out-of-stock {
  color: #EC1B1B;
}
.card-product-b .variant-product {
  line-height: 1.2;
  font-size: 12px;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-product-b .variant-product {
    font-size: 10px;
  }
}
.card-product-b .card-vertical-line {
  border-top: 1px dashed #DDDDDD;
  margin: 0 16px;
}
.card-product-b .card-badge {
  width: auto;
  color: #fff;
  background-color: #242120;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  vertical-align: baseline;
  border-radius: 4px;
  display: inline-block;
}
.card-product-b .card-footer {
  background-color: transparent;
}
.card-product-b .card-footer .card-price {
  font-size: 14px;
  line-height: 1.2;
  font-family: "Quicksand", sans-serif;
  color: #000;
}
@media (max-width: 991.98px) {
  .card-product-b .card-footer .card-price {
    font-size: 12px;
  }
}
.card-product-b .card-footer .card-type {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #000;
}
@media (max-width: 991.98px) {
  .card-product-b .card-footer .card-type {
    font-size: 12px;
  }
}
.card-product-b .card-footer .card-price-strike {
  font-size: 12px;
  line-height: 1.2;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-product-b .card-footer .card-price-strike {
    font-size: 10px;
  }
}
.card-product-b:hover {
  cursor: pointer;
}
.card-product-b:hover .card-title {
  color: #282023;
}
.card-product-b:hover .image img {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.card-product-b:hover .image .hover img:not(.image-hover), .card-product-b:hover .image .card-vacancy-b:hover .card-footer .btn img:not(.image-hover), .card-vacancy-b:hover .card-footer .card-product-b:hover .image .btn img:not(.image-hover), .card-product-b:hover .image .card-vacancy-a:hover .card-footer .btn img:not(.image-hover), .card-vacancy-a:hover .card-footer .card-product-b:hover .image .btn img:not(.image-hover), .card-product-b:hover .image .card-product-d:hover .card-footer .btn img:not(.image-hover), .card-product-d:hover .card-footer .card-product-b:hover .image .btn img:not(.image-hover), .card-product-b:hover .image .card-uber-b:hover .card-footer .btn img:not(.image-hover), .card-uber-b:hover .card-footer .card-product-b:hover .image .btn img:not(.image-hover), .card-product-b:hover .image .card-uber-d:hover .card-footer .btn img:not(.image-hover), .card-uber-d:hover .card-footer .card-product-b:hover .image .btn img:not(.image-hover), .card-product-b:hover .image .card-uber-e:hover .card-footer .btn img:not(.image-hover), .card-uber-e:hover .card-footer .card-product-b:hover .image .btn img:not(.image-hover), .card-product-b:hover .image .card-application-a:hover .card-footer .btn img:not(.image-hover), .card-application-a:hover .card-footer .card-product-b:hover .image .btn img:not(.image-hover), .card-product-b:hover .image .card-download-a:hover .card-footer .btn img:not(.image-hover), .card-download-a:hover .card-footer .card-product-b:hover .image .btn img:not(.image-hover), .card-product-b:hover .image .event-a:hover .card-footer .btn img:not(.image-hover), .event-a:hover .card-footer .card-product-b:hover .image .btn img:not(.image-hover), .card-product-b:hover .image .card-product-a:hover .btn img:not(.image-hover), .card-product-a:hover .card-product-b:hover .image .btn img:not(.image-hover), .card-product-b:hover .image .card-product-b-upsell:hover .btn img:not(.image-hover), .card-product-b-upsell:hover .card-product-b:hover .image .btn img:not(.image-hover) {
  display: none;
}
.card-product-b:hover .image .hover .image-hover, .card-product-b:hover .image .card-vacancy-b:hover .card-footer .btn .image-hover, .card-vacancy-b:hover .card-footer .card-product-b:hover .image .btn .image-hover, .card-product-b:hover .image .card-vacancy-a:hover .card-footer .btn .image-hover, .card-vacancy-a:hover .card-footer .card-product-b:hover .image .btn .image-hover, .card-product-b:hover .image .card-product-d:hover .card-footer .btn .image-hover, .card-product-d:hover .card-footer .card-product-b:hover .image .btn .image-hover, .card-product-b:hover .image .card-uber-b:hover .card-footer .btn .image-hover, .card-uber-b:hover .card-footer .card-product-b:hover .image .btn .image-hover, .card-product-b:hover .image .card-uber-d:hover .card-footer .btn .image-hover, .card-uber-d:hover .card-footer .card-product-b:hover .image .btn .image-hover, .card-product-b:hover .image .card-uber-e:hover .card-footer .btn .image-hover, .card-uber-e:hover .card-footer .card-product-b:hover .image .btn .image-hover, .card-product-b:hover .image .card-application-a:hover .card-footer .btn .image-hover, .card-application-a:hover .card-footer .card-product-b:hover .image .btn .image-hover, .card-product-b:hover .image .card-download-a:hover .card-footer .btn .image-hover, .card-download-a:hover .card-footer .card-product-b:hover .image .btn .image-hover, .card-product-b:hover .image .event-a:hover .card-footer .btn .image-hover, .event-a:hover .card-footer .card-product-b:hover .image .btn .image-hover, .card-product-b:hover .image .card-product-a:hover .btn .image-hover, .card-product-a:hover .card-product-b:hover .image .btn .image-hover, .card-product-b:hover .image .card-product-b-upsell:hover .btn .image-hover, .card-product-b-upsell:hover .card-product-b:hover .image .btn .image-hover,
.card-product-b:hover .image .hover .image-hover img,
.card-product-b:hover .image .card-vacancy-b:hover .card-footer .btn .image-hover img,
.card-vacancy-b:hover .card-footer .card-product-b:hover .image .btn .image-hover img,
.card-product-b:hover .image .card-vacancy-a:hover .card-footer .btn .image-hover img,
.card-vacancy-a:hover .card-footer .card-product-b:hover .image .btn .image-hover img,
.card-product-b:hover .image .card-product-d:hover .card-footer .btn .image-hover img,
.card-product-d:hover .card-footer .card-product-b:hover .image .btn .image-hover img,
.card-product-b:hover .image .card-uber-b:hover .card-footer .btn .image-hover img,
.card-uber-b:hover .card-footer .card-product-b:hover .image .btn .image-hover img,
.card-product-b:hover .image .card-uber-d:hover .card-footer .btn .image-hover img,
.card-uber-d:hover .card-footer .card-product-b:hover .image .btn .image-hover img,
.card-product-b:hover .image .card-uber-e:hover .card-footer .btn .image-hover img,
.card-uber-e:hover .card-footer .card-product-b:hover .image .btn .image-hover img,
.card-product-b:hover .image .card-application-a:hover .card-footer .btn .image-hover img,
.card-application-a:hover .card-footer .card-product-b:hover .image .btn .image-hover img,
.card-product-b:hover .image .card-download-a:hover .card-footer .btn .image-hover img,
.card-download-a:hover .card-footer .card-product-b:hover .image .btn .image-hover img,
.card-product-b:hover .image .event-a:hover .card-footer .btn .image-hover img,
.event-a:hover .card-footer .card-product-b:hover .image .btn .image-hover img,
.card-product-b:hover .image .card-product-a:hover .btn .image-hover img,
.card-product-a:hover .card-product-b:hover .image .btn .image-hover img,
.card-product-b:hover .image .card-product-b-upsell:hover .btn .image-hover img,
.card-product-b-upsell:hover .card-product-b:hover .image .btn .image-hover img {
  display: block !important;
}

.card-product-c {
  height: 100%;
}
.card-product-c:hover {
  cursor: pointer;
}
.card-product-c:hover .card-overlay {
  opacity: 1;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.card-product-c .imagehover {
  display: none;
  position: relative !important;
}
.card-product-c .image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-product-c .image .overlay {
  z-index: 6;
  bottom: 0;
}
.card-product-c .image .overlay .card-image-title {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #fff;
  bottom: 16px;
  left: 16px;
}
@media (max-width: 991.98px) {
  .card-product-c .image .overlay .card-image-title {
    font-size: 14px;
  }
}
.card-product-c .image .overlay .card-favorite {
  top: 5px;
  left: 5px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  cursor: pointer;
  text-align: center;
}
.card-product-c .image .overlay .card-favorite i {
  color: #575756;
  line-height: 26px;
}
.card-product-c .image .gradient {
  background: transparent linear-gradient(301deg, #00000033 20%, #000000cc 80%) 0% 0% no-repeat padding-box;
  top: unset;
  bottom: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-product-c .card-label {
  font-size: 12px;
  line-height: 1.2;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-product-c .card-label {
    font-size: 11px;
  }
}
.card-product-c .card-label-top-right {
  z-index: 100;
  top: -1px;
  right: -1px;
  border-top-right-radius: 4px;
  border-bottom-left-radius: 0.3rem;
}
.card-product-c .card-label-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top-left-radius: 4px;
}
.card-product-c .card-body .card-title {
  font-size: 32px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .card-product-c .card-body .card-title {
    font-size: 26px;
  }
}
.card-product-c .card-body .card-subtitle {
  margin-bottom: 0.5rem;
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .card-product-c .card-body .card-subtitle {
    font-size: 14px;
  }
}
.card-product-c .card-footer {
  background-color: transparent;
}
.card-product-c .card-footer .card-price {
  font-size: 14px;
  line-height: 1.2;
  font-family: "Quicksand", sans-serif;
  color: #000;
}
@media (max-width: 991.98px) {
  .card-product-c .card-footer .card-price {
    font-size: 12px;
  }
}
.card-product-c .card-footer .card-price-strike {
  font-size: 12px;
  line-height: 1.2;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-product-c .card-footer .card-price-strike {
    font-size: 10px;
  }
}
.card-product-c .card-overlay {
  background: transparent -webkit-gradient(linear, left top, left bottom, color-stop(20%, #00000033), color-stop(80%, #000000cc)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #00000033 20%, #000000cc 80%) 0% 0% no-repeat padding-box;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  opacity: 0;
  font-size: 16px;
  z-index: 5;
  -webkit-transition: 0.5s !important;
  transition: 0.5s !important;
}
.card-product-c .card-overlay .card-overlay-content {
  position: absolute;
  top: 24px;
  left: 16px;
}
.card-product-c .card-overlay .card-overlay-content .card-image-title {
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 991.98px) {
  .card-product-c .card-overlay .card-overlay-content .card-image-title {
    font-size: 14px;
  }
}
.card-product-c .card-overlay .card-overlay-content .card-image-text {
  font-size: 13px;
  color: #fff;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
}
@media (max-width: 991.98px) {
  .card-product-c .card-overlay .card-overlay-content .card-image-text {
    font-size: 12px;
  }
}
.card-product-c .card-overlay .card-overlay-content .card-image-text i {
  font-size: 13px;
  color: #282023;
}
.card-product-c .card-overlay .btn {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  right: 16px;
  bottom: 24px;
}
.card-product-c .card-text {
  font-size: 12px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-product-c .card-text {
    font-size: 10px;
  }
}
.card-product-c .card-text p {
  margin-bottom: 0px;
}
.card-product-c .card-text i {
  margin-right: 0.5rem;
  color: #280B5F !important;
  font-size: 10px !important;
}
.card-product-c .variant-product {
  line-height: 1.2;
}

.card-product-d .image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-product-d .image .overlay {
  z-index: 6;
  bottom: 0;
}
.card-product-d .image .overlay .card-image-title {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #fff;
  bottom: 16px;
  left: 16px;
}
@media (max-width: 991.98px) {
  .card-product-d .image .overlay .card-image-title {
    font-size: 14px;
  }
}
.card-product-d .image .overlay .card-favorite {
  bottom: 5px;
  right: 5px;
  border-radius: 4px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  cursor: pointer;
  text-align: center;
}
.card-product-d .image .overlay .card-favorite i {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #000000;
  color: #fff;
  line-height: 26px;
}
@media (pointer: fine) {
  .card-product-d .image .overlay .card-favorite:hover i {
    color: #7B5A51;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #7B5A51;
    cursor: pointer;
  }
}
.card-product-d .image .overlay .card-favorite.is-favorite i {
  color: #282023;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #282023;
  cursor: pointer;
}
@media (pointer: fine) {
  .card-product-d .image .overlay .card-favorite.is-favorite i:hover {
    color: #fff;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #7B5A51;
  }
}
.card-product-d .image .gradient {
  background: transparent -webkit-gradient(linear, left top, right top, color-stop(20%, #00000033), color-stop(80%, #000000cc)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #00000033 20%, #000000cc 80%) 0% 0% no-repeat padding-box;
  top: unset;
  bottom: 0;
  left: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-product-d .card-body .card-title {
  font-size: 32px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .card-product-d .card-body .card-title {
    font-size: 26px;
  }
}
.card-product-d .card-body .card-text-value {
  font-size: 12px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #5D5D5B;
  font-weight: 600 !important;
}
@media (max-width: 991.98px) {
  .card-product-d .card-body .card-text-value {
    font-size: 10px;
  }
}
.card-product-d .card-body .card-text-value p {
  margin-bottom: 0px;
}
@media (max-width: 767.98px) {
  .card-product-d .card-body .mileage {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
}
.card-product-d .card-vertical-line {
  border-top: 1px solid #DDDDDD;
  margin: 0 16px;
}
.card-product-d .card-footer {
  background-color: transparent;
}
.card-product-d .card-footer .card-price {
  font-size: 14px;
  line-height: 1.2;
  font-family: "Quicksand", sans-serif;
  color: #000;
}
@media (max-width: 991.98px) {
  .card-product-d .card-footer .card-price {
    font-size: 12px;
  }
}
.card-product-d .card-footer .card-price .excl-price {
  font-size: 13px !important;
  font-weight: normal !important;
}
@media (max-width: 991.98px) {
  .card-product-d .card-footer .card-price .excl-price {
    font-size: 12px !important;
  }
}
.card-product-d .card-footer .card-price-strike {
  font-size: 12px;
  line-height: 1.2;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-product-d .card-footer .card-price-strike {
    font-size: 10px;
  }
}
.card-product-d .card-text {
  font-size: 12px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-product-d .card-text {
    font-size: 10px;
  }
}
.card-product-d .card-text p {
  margin-bottom: 0px;
}
.card-product-d .variant-product {
  line-height: 1.2;
}
.card-product-d:hover {
  cursor: pointer;
}
.card-product-d:hover img {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.card-publication-a {
  height: 100%;
}
.card-publication-a:hover {
  cursor: pointer;
}
.card-publication-a:hover .image .overlay .card-image-title {
  bottom: 43px;
}
.card-publication-a:hover .image .overlay .btn {
  opacity: 1;
}
.card-publication-a:hover .image .gradient {
  height: 100%;
  background: transparent -webkit-gradient(linear, left bottom, left top, from(#000000cc), to(#00000000)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(360deg, #000000cc 0%, #00000000 100%) 0% 0% no-repeat padding-box;
}
.card-publication-a .image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-publication-a .image .overlay {
  z-index: 6;
  bottom: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-publication-a .image .overlay .card-image-title {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #fff;
  bottom: 16px;
  left: 16px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 991.98px) {
  .card-publication-a .image .overlay .card-image-title {
    font-size: 14px;
    left: 13px;
  }
}
.card-publication-a .image .overlay .btn {
  bottom: 5px;
  right: 8px;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-publication-a .image .gradient {
  background: transparent -webkit-gradient(linear, left bottom, left top, from(#000000cc), to(#00000000)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(360deg, #000000cc 0%, #00000000 100%) 0% 0% no-repeat padding-box;
  top: unset;
  bottom: 0;
  left: 0;
  position: absolute;
  height: 50%;
  width: 100%;
  z-index: 5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-publication-a .card-body .card-subtitle {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .card-publication-a .card-body .card-subtitle {
    font-size: 14px;
  }
}
.card-publication-a .card-body .card-text {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-publication-a .card-body .card-text {
    font-size: 12px;
  }
}
.card-publication-a .card-body .card-text p {
  margin-bottom: 0px;
}

.card-publication-b {
  overflow: hidden;
  height: 100%;
}
.card-publication-b .image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-publication-b .card-body .card-title {
  font-size: 32px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .card-publication-b .card-body .card-title {
    font-size: 26px;
  }
}
.card-publication-b .card-body .card-text {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-publication-b .card-body .card-text {
    font-size: 12px;
  }
}
.card-publication-b .card-body .card-text p {
  margin-bottom: 0px;
}
.card-publication-b .card-vertical-line {
  border-top: 1px dashed #DDDDDD;
  margin: 0 16px;
}
.card-publication-b:hover {
  cursor: pointer;
}
.card-publication-b:hover img {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.card-publication-b:hover .card-title {
  color: #282023;
}

.card-publication-c {
  height: 100%;
}
.card-publication-c:hover {
  cursor: pointer;
}
.card-publication-c:hover .image img {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.card-publication-c:hover .image .overlay .btn {
  opacity: 1;
}
.card-publication-c .image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-publication-c .image .overlay {
  z-index: 6;
  bottom: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-publication-c .image .overlay .btn {
  bottom: 13px;
  left: 16px;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-publication-c .card-body .card-subtitle {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .card-publication-c .card-body .card-subtitle {
    font-size: 14px;
  }
}
.card-publication-c .card-body .card-text {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-publication-c .card-body .card-text {
    font-size: 12px;
  }
}
.card-publication-c .card-body .card-text p {
  margin-bottom: 0px;
}

.card-publication-d {
  height: 100%;
}
.card-publication-d:hover {
  cursor: pointer;
}
.card-publication-d:hover .image img {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.card-publication-d:hover .image .overlay .btn {
  opacity: 1;
}
.card-publication-d .image img {
  border: 1px solid #DDDDDD;
  border-radius: 4px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-publication-d .image .overlay {
  z-index: 6;
  bottom: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border: 1px solid #DDDDDD;
  border-radius: 4px;
}
.card-publication-d .image .overlay .btn {
  bottom: 13px;
  left: 16px;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-publication-d .card-body {
  background-color: none !important;
}
.card-publication-d .card-body .card-subtitle {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .card-publication-d .card-body .card-subtitle {
    font-size: 14px;
  }
}
.card-publication-d .card-body .card-text {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-publication-d .card-body .card-text {
    font-size: 12px;
  }
}
.card-publication-d .card-body .card-text p {
  margin-bottom: 0px;
}
.card-publication-d .card-body .card-title {
  margin-bottom: 0.75rem;
  color: #29353A;
  font-weight: 600;
  font-size: 32px;
}

.card-review-a .card-body > .container {
  height: 100%;
}
.card-review-a .review-date, .card-review-a .card-text {
  font-size: 14px;
}
.card-review-a .card-text {
  overflow: auto;
}
.card-review-a .card-title {
  font-size: 21px;
  font-weight: bold;
  line-height: 1.2;
}
.card-review-a .logo {
  width: 45px !important;
}
.card-review-a .collapse-btn[aria-expanded=true] ~ .card-text .dots, .card-review-a .collapse-btn[aria-expanded=true] .read-more-text {
  display: none;
}
.card-review-a .collapse-btn[aria-expanded=true] ~ .card-text .collapse, .card-review-a .collapse-btn[aria-expanded=true] .read-less-text {
  display: inline;
}
.card-review-a .collapse-btn[aria-expanded=false] ~ .card-text .dots, .card-review-a .collapse-btn[aria-expanded=false] .read-more-text {
  display: inline;
}
.card-review-a .collapse-btn[aria-expanded=false] .read-less-text {
  display: none;
}

.card-service-d {
  border-radius: 0px;
}
.card-service-d .image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-service-d .image .overlay {
  z-index: 1;
  top: 0;
}
.card-service-d .image .overlay .card-text {
  bottom: 24px;
  left: 24px;
  width: calc(100% - 48px);
}
.card-service-d .image .overlay .card-text .card-title {
  font-size: 20px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .card-service-d .image .overlay .card-text .card-title {
    font-size: 26px;
  }
}
.card-service-d .image .overlay .gradient {
  background: transparent -webkit-gradient(linear, left bottom, left top, from(#00000033), to(#000000CC)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(360deg, #00000033 0%, #000000CC 100%) 0% 0% no-repeat padding-box;
  top: 0;
  left: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-service-d .image:hover {
  cursor: pointer;
}
.card-service-d .image:hover img {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.card-sidebar-a {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.card-sidebar-a .sidebar-link {
  width: calc(100% - 4px);
  line-height: 1.2 !important;
}
.card-sidebar-a li:hover .sidebar-link {
  color: #282023;
}
.card-sidebar-a li:hover i {
  opacity: 1;
  color: #282023;
}
.card-sidebar-a li .sidebar-image {
  width: 70px;
  height: 47px;
  overflow: hidden;
}
.card-sidebar-a li i {
  right: 0px;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 11px;
  margin: auto 0;
}

.card-sidebar-b {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.card-sidebar-b .sidebar-link {
  width: calc(100% - 4px);
}
.card-sidebar-b li .sidebar-image {
  width: 70px;
  height: 47px;
  overflow: hidden;
}
.card-sidebar-b li .sidebar-image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-sidebar-b li i {
  right: 0px;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 9px;
  margin: auto 0;
  color: #727272;
}
.card-sidebar-b li:hover .sidebar-image img {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.card-sidebar-b li:hover .sidebar-link {
  color: #282023;
}
.card-sidebar-b li:hover i {
  color: #282023;
}

.card-sidebar-c {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.card-sidebar-c .sidebar-link {
  width: calc(100% - 4px);
}
.card-sidebar-c li .sidebar-image {
  width: 70px;
  height: 47px;
  overflow: hidden;
}
.card-sidebar-c li .sidebar-image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.card-sidebar-c li i {
  right: 0px;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 9px;
  margin: auto 0;
  color: #727272;
}
.card-sidebar-c li:hover .sidebar-image img {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.card-sidebar-c li:hover .sidebar-link {
  color: #282023;
}
.card-sidebar-c li:hover i {
  color: #282023;
}

.card-sidebar-d {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.card-sidebar-d .sidebar-link {
  width: calc(100% - 4px);
}
.card-sidebar-d li:hover .sidebar-link {
  color: #282023;
}
.card-sidebar-d li:hover i {
  opacity: 1;
  color: #282023;
}
.card-sidebar-d li .sidebar-image {
  width: 70px;
  height: 47px;
  overflow: hidden;
}
.card-sidebar-d li i {
  right: 0px;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 11px;
  margin: auto 0;
}

.card-sidebar-e {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.card-sidebar-e .sidebar-link {
  width: calc(100% - 4px);
}
.card-sidebar-e li:hover .sidebar-link {
  color: #282023;
  text-decoration: underline;
}
.card-sidebar-e li:hover .sidebar-image img {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.card-sidebar-e li .sidebar-image {
  width: 70px;
  height: 47px;
  overflow: hidden;
}
.card-sidebar-e li .sidebar-image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.card-sidebar-f {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.card-sidebar-f .sidebar-link {
  width: calc(100% - 4px);
}
.card-sidebar-f li:hover .sidebar-link {
  color: #282023;
  text-decoration: underline;
}
.card-sidebar-f li:hover .sidebar-image img {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.card-sidebar-f li .sidebar-image {
  width: 70px;
  height: 47px;
  overflow: hidden;
}
.card-sidebar-f li .sidebar-image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.card-usp-a .icon i {
  color: #375D8E;
  font-size: 30px;
}
@media (max-width: 991.98px) {
  .card-usp-a .icon svg {
    width: 40px;
    height: auto;
  }
}
.card-usp-a .usp-title {
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  line-height: 1.2;
  color: #000;
  font-size: 16px;
}
@media (max-width: 991.98px) {
  .card-usp-a .usp-title {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .card-usp-a .usp-title {
    min-height: 40px;
  }
}
.card-usp-a .usp-text {
  font-family: "Quicksand", sans-serif;
  line-height: 1.8;
  color: #696969;
  font-size: 15px;
}
@media (max-width: 991.98px) {
  .card-usp-a .usp-text {
    font-size: 13px;
  }
}

.card-vacancy-a .card-body .card-subtitle {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .card-vacancy-a .card-body .card-subtitle {
    font-size: 14px;
  }
}
.card-vacancy-a .card-body .card-title {
  font-size: 32px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .card-vacancy-a .card-body .card-title {
    font-size: 26px;
  }
}
.card-vacancy-a .card-footer {
  background-color: transparent;
}
.card-vacancy-a:hover {
  cursor: pointer;
}
.card-vacancy-a:hover .card-title {
  color: #282023;
}
.card-vacancy-b {
  border: 1px solid #DDDDDD;
  background-color: #272728;
}
.card-vacancy-b .card-body .card-subtitle {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .card-vacancy-b .card-body .card-subtitle {
    font-size: 14px;
  }
}
.card-vacancy-b .card-body .card-title {
  font-size: 32px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .card-vacancy-b .card-body .card-title {
    font-size: 26px;
  }
}
.card-vacancy-b .card-footer {
  background-color: transparent;
}
.card-vacancy-b .card-footer .btn {
  text-decoration: underline;
  color: #ffffff;
}
.card-vacancy-b .card-footer .btn i {
  color: #282023;
}
.card-vacancy-b:hover {
  cursor: pointer;
  border-color: #282023 !important;
}
.card-vacancy-b:hover .card-footer .btn {
  color: #282023;
}
.card-vacancy-c {
  height: 100%;
}
.card-vacancy-c .card-body .card-title {
  font-size: 32px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
  height: 32px;
}
@media (max-width: 991.98px) {
  .card-vacancy-c .card-body .card-title {
    font-size: 26px;
  }
}
.card-vacancy-c .card-body .card-text {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-vacancy-c .card-body .card-text {
    font-size: 12px;
  }
}
.card-vacancy-c .card-body .card-text i {
  color: #282023;
}
.card-vacancy-c .card-body .card-text p {
  margin-bottom: 0px;
}
.card-vacancy-c .card-horizontal-line {
  border-top: 1px dashed #DDDDDD;
  margin: 0 16px;
}
.card-vacancy-c:hover {
  cursor: pointer;
}
.card-vacancy-c:hover img {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.card-vacancy-c:hover .card-title {
  color: #282023;
}

.card-vacancy-d {
  height: 100%;
}
.card-vacancy-d .card-body .card-title {
  font-size: 32px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
  height: 32px;
}
@media (max-width: 991.98px) {
  .card-vacancy-d .card-body .card-title {
    font-size: 26px;
  }
}
.card-vacancy-d .card-body .card-text {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .card-vacancy-d .card-body .card-text {
    font-size: 12px;
  }
}
.card-vacancy-d .card-body .card-text i {
  color: #282023;
}
.card-vacancy-d .card-body .card-text p {
  margin-bottom: 0px;
}
.card-vacancy-d .card-horizontal-line {
  border-top: 1px dashed #DDDDDD;
  margin: 0 16px;
}
.card-vacancy-d:hover {
  cursor: pointer;
}
.card-vacancy-d:hover img {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.card-vacancy-d:hover .card-title {
  color: #282023;
}

@media (max-width: 767.98px) {
  footer.footer-c .top .menu-section {
    border-bottom: 1px solid #DDDDDD;
  }
}
footer.footer-c .top .footer-title {
  font-size: 40px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  footer.footer-c .top .footer-title {
    font-size: 32px;
    line-height: unset;
    padding-top: 10px;
  }
}
footer.footer-c .top .contact a {
  font-size: 20px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 991.98px) {
  footer.footer-c .top .contact a {
    font-size: 16px;
  }
}
footer.footer-c .top .contact a i {
  font-size: 12px;
  color: #ffffff;
}
footer.footer-c .top .contact a span {
  color: #ffffff;
}
footer.footer-c .top hr {
  border-color: #DDD !important;
}
footer.footer-c .top .footer-text {
  font-size: 20px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #fff;
}
@media (max-width: 991.98px) {
  footer.footer-c .top .footer-text {
    font-size: 16px;
  }
}
footer.footer-c .top ul a {
  text-decoration: none;
  font-size: 20px;
  line-height: 1.8;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  footer.footer-c .top ul a {
    font-size: 16px;
  }
}
footer.footer-c .top ul a:hover {
  text-decoration: underline;
}
footer.footer-c .top .fa-chevron-down,
footer.footer-c .top .fa-angle-down {
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  color: #000;
}
footer.footer-c .top .row[aria-expanded=true] .fa-chevron-down,
footer.footer-c .top .row[aria-expanded=true] .fa-angle-down {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media (min-width: 768px) {
  footer.footer-c .top .collapse.dont-collapse {
    display: block;
    height: auto !important;
    visibility: visible;
  }
  footer.footer-c .top .collapsed {
    pointer-events: none !important;
    cursor: default !important;
  }
}
footer.footer-c .top .footer-border {
  display: block;
  height: 1px;
  background-color: #166C88;
  margin-top: 2px;
  margin-bottom: 7px;
}
@media (min-width: 768px) {
  footer.footer-c .top .footer-border {
    display: none;
  }
}
footer.footer-c .top iframe {
  border: 0;
  width: 100%;
  background-color: transparent;
}
footer.footer-c .footer-icon {
  font-size: 22px;
}
footer.footer-c .footer-bottom {
  background: #284D7D;
}
@media (max-width: 991.98px) {
  footer.footer-c .footer-bottom {
    height: unset;
    line-height: unset;
  }
}
footer.footer-c .footer-bottom ul li:not(:first-child) {
  margin-left: 15px;
}
footer.footer-c .footer-bottom ul li a {
  text-decoration: none !important;
  font-size: 10px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #fff;
}
@media (max-width: 991.98px) {
  footer.footer-c .footer-bottom ul li a {
    font-size: 10px;
  }
}
footer.footer-c .footer-bottom ul li a:hover {
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  footer.footer-c .footer-bottom .copyright {
    height: 45px;
    line-height: 45px;
  }
}
footer.footer-c .footer-bottom img {
  width: 15px;
}
@media (max-width: 991.98px) {
  footer.footer-c .footer-bottom img {
    width: 20px;
  }
}

.header-x nav.default-menu {
  display: block;
  margin: 0;
}
.header-x nav.default-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-x nav.default-menu ul li {
  margin: 0;
  display: block;
  position: relative;
  list-style: none;
}
.header-x nav.default-menu ul li > a,
.header-x nav.default-menu ul li > button,
.header-x nav.default-menu ul li > div.no-link,
.header-x nav.default-menu ul li > span.no-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none;
  border: none;
  background: none;
  text-align: left;
  width: 100%;
}
.header-x nav.default-menu ul li:hover > ul {
  top: 100%;
  visibility: visible;
  opacity: 1;
}
.header-x nav.default-menu ul li > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 15px);
  left: 0;
  min-width: 180px;
  padding: 0;
  background: #fff;
  list-style: none;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
  visibility: hidden;
  opacity: 0;
  z-index: 10;
}
.header-x nav.default-menu ul li > ul.to-left {
  left: unset;
  right: 0;
}
.header-x nav.default-menu ul li > ul li {
  position: relative;
}
.header-x nav.default-menu ul li > ul li:hover > ul {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  top: calc(100% - 50px - 1px);
  left: 100%;
}
.header-x nav.default-menu ul li > ul li > a,
.header-x nav.default-menu ul li > ul li > button,
.header-x nav.default-menu ul li > ul li > div.no-link,
.header-x nav.default-menu ul li > ul li > span.no-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none;
  border: none;
  background: none;
  text-align: left;
  width: 100%;
}
.header-x nav.default-menu ul li > ul li > ul {
  position: absolute;
  top: calc(100% - 27px);
  left: 100%;
  min-width: 180px;
  padding: 0;
  background: #fff;
  list-style: none;
  z-index: 11;
}
.header-x nav.default-menu ul li > ul li > ul.to-left {
  left: unset;
  right: 100%;
}
.header-x nav.default-menu ul li > ul li > ul li {
  position: relative;
}
.header-x nav.default-menu ul li > ul li > ul li > a,
.header-x nav.default-menu ul li > ul li > ul li > button,
.header-x nav.default-menu ul li > ul li > ul li > div.no-link,
.header-x nav.default-menu ul li > ul li > ul li > span.no-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none;
  border: none;
  background: none;
  text-align: left;
  width: 100%;
}
@media (max-width: 1199.98px) {
  .header-x nav.default-menu.main-menu {
    position: fixed;
    top: 0;
    left: -100%;
    right: 0;
    bottom: 0;
    z-index: 202;
    width: 100%;
    max-width: calc(100% - 4.8rem);
    height: 100%;
    display: block !important;
    background: #fff;
    -webkit-transition: 500ms ease-in-out;
    transition: 500ms ease-in-out;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .header-x nav.default-menu.main-menu.active {
    left: 0;
  }
  .header-x nav.default-menu.main-menu.active .menu-gradient {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
  }
  .header-x nav.default-menu.main-menu .menu-header {
    position: relative;
    z-index: 2;
  }
  .header-x nav.default-menu.main-menu ul {
    position: relative;
    z-index: 2;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .header-x nav.default-menu.main-menu ul li {
    width: 100%;
  }
  .header-x nav.default-menu.main-menu ul li .toggle-dropdown {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 22px;
    cursor: pointer;
    -webkit-transition: 300ms ease-in-out;
    transition: 300ms ease-in-out;
  }
  .header-x nav.default-menu.main-menu ul li ul.submenu,
.header-x nav.default-menu.main-menu ul li .submenu {
    overflow: hidden;
    -webkit-transition: 0ms ease-in-out;
    transition: 0ms ease-in-out;
  }
  .header-x nav.default-menu.main-menu ul li ul.submenu li .toggle-dropdown,
.header-x nav.default-menu.main-menu ul li .submenu li .toggle-dropdown {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 22px;
    cursor: pointer;
    -webkit-transition: 300ms ease-in-out;
    transition: 300ms ease-in-out;
  }
  .header-x nav.default-menu.main-menu ul li ul.submenu li ul.submenu,
.header-x nav.default-menu.main-menu ul li ul.submenu li .submenu,
.header-x nav.default-menu.main-menu ul li .submenu li ul.submenu,
.header-x nav.default-menu.main-menu ul li .submenu li .submenu {
    overflow: hidden;
    top: 0;
    left: 0;
    -webkit-transition: 0ms ease-in-out;
    transition: 0ms ease-in-out;
  }
  .header-x nav.default-menu.main-menu ul li ul.submenu li ul.submenu li .toggle-dropdown,
.header-x nav.default-menu.main-menu ul li ul.submenu li .submenu li .toggle-dropdown,
.header-x nav.default-menu.main-menu ul li .submenu li ul.submenu li .toggle-dropdown,
.header-x nav.default-menu.main-menu ul li .submenu li .submenu li .toggle-dropdown {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 22px;
    cursor: pointer;
    -webkit-transition: 300ms ease-in-out;
    transition: 300ms ease-in-out;
  }
  .header-x nav.default-menu.main-menu ul li ul.submenu li:not(.open) ul.submenu,
.header-x nav.default-menu.main-menu ul li ul.submenu li:not(.open) .submenu,
.header-x nav.default-menu.main-menu ul li .submenu li:not(.open) ul.submenu,
.header-x nav.default-menu.main-menu ul li .submenu li:not(.open) .submenu {
    height: 0;
    top: 0;
  }
  .header-x nav.default-menu.main-menu ul li ul.submenu li.open > ul,
.header-x nav.default-menu.main-menu ul li .submenu li.open > ul {
    position: relative !important;
    top: 0 !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    width: 100% !important;
    padding: 0 !important;
    visibility: visible;
    opacity: 1;
  }
  .header-x nav.default-menu.main-menu ul li ul.submenu li.open > .toggle-dropdown,
.header-x nav.default-menu.main-menu ul li .submenu li.open > .toggle-dropdown {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .header-x nav.default-menu.main-menu ul li:not(.open) ul.submenu,
.header-x nav.default-menu.main-menu ul li:not(.open) .submenu {
    height: 0;
    top: 0;
  }
  .header-x nav.default-menu.main-menu ul li.open > ul {
    position: relative !important;
    top: 0 !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    width: 100% !important;
    padding: 0 !important;
    visibility: visible;
    opacity: 1;
  }
  .header-x nav.default-menu.main-menu ul li.open > .toggle-dropdown {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
.header-x nav.default-menu nav.right-side-menu {
  display: block;
  margin: 0;
}
.header-x nav.default-menu nav.right-side-menu > ul {
  height: 50px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-x nav.default-menu nav.right-side-menu > ul > li {
  margin: 0;
  display: block;
  position: relative;
  list-style-type: none;
}
.header-x nav.default-menu nav.right-side-menu > ul > li > a,
.header-x nav.default-menu nav.right-side-menu > ul > li > div.no-link,
.header-x nav.default-menu nav.right-side-menu > ul > li > span.no-link {
  font-size: 15px;
  color: #fff;
  padding: 0 8px;
  font-weight: bolder;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  line-height: 1.8;
  height: 50px;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.header-x {
  background: transparent;
  list-style: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  z-index: 1000;
  overflow-x: clip;
  -webkit-transition: background-color 0.18s ease-in-out;
  transition: background-color 0.18s ease-in-out;
  /*
      Header layers
  */
  /*
      Header containers
      default, logo, search, button
  */
  /*
      Desktop submenu large (bootstrap 5.3.2 ready)
  */
  /*
      Header buttons:
      Heart, Shoppingcart, User, Hamburger
      You do your customization here.
  */
  /*
      Header gradient.
  */
  /*
      Header search.
      You do your customization here.
  */
  /*
      Header classes.
      You do your customization here.
  */
  /*
      Header menu.
      You do your customization here.
  */
}
.header-x.header-x-background, .header-x.header-x-background-static {
  background-color: #fff;
}
.header-x.header-x-background .header-title .header-menu-item, .header-x.header-x-background .header-title .header-icon, .header-x.header-x-background .header-title i, .header-x.header-x-background-static .header-title .header-menu-item, .header-x.header-x-background-static .header-title .header-icon, .header-x.header-x-background-static .header-title i {
  color: #282023;
}
.header-x ._layer.top-bar-bg {
  background-color: #696969;
}
.header-x ._top-bar {
  height: 0px;
}
@media (max-width: 1199.98px) {
  .header-x ._top-bar {
    height: 0px;
  }
}
@media (max-width: 991.98px) {
  .header-x ._top-bar {
    height: 0px;
  }
}
@media (max-width: 767.98px) {
  .header-x ._top-bar {
    height: 0px;
  }
}
.header-x ._middle-bar {
  height: 102px;
}
@media (max-width: 1199.98px) {
  .header-x ._middle-bar {
    height: 102px;
  }
}
@media (max-width: 991.98px) {
  .header-x ._middle-bar {
    height: 102px;
  }
}
@media (max-width: 767.98px) {
  .header-x ._middle-bar {
    height: 66px;
  }
}
.header-x ._bottom-bar {
  height: 0px;
}
@media (max-width: 1199.98px) {
  .header-x ._bottom-bar {
    height: 0px;
  }
}
@media (max-width: 991.98px) {
  .header-x ._bottom-bar {
    height: 0px;
  }
}
@media (max-width: 767.98px) {
  .header-x ._bottom-bar {
    height: 0px;
  }
}
.header-x ._logo a {
  text-decoration: none;
  color: #000;
  font-weight: bolder;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.header-x ._logo img {
  height: 50px;
}
@-moz-document url-prefix() {
  .header-x ._logo img {
    height: 50px;
  }
}
@media (max-width: 1199.98px) {
  .header-x ._logo img {
    height: 35px;
  }
  @-moz-document url-prefix() {
    .header-x ._logo img {
      height: 35px;
    }
  }
}
@media (max-width: 767.98px) {
  .header-x ._logo img {
    height: 35px;
  }
  @-moz-document url-prefix() {
    .header-x ._logo img {
      height: 35px;
    }
  }
}
.header-x ._logo:hover a {
  text-decoration: none;
  color: #000;
}
@media (max-width: 991.98px) {
  .header-x ._button .cart-badge {
    left: 30px;
    top: -11px;
  }
}
@media (max-width: 767.98px) {
  .header-x ._button .cart-badge {
    left: 24px;
    top: -11px;
  }
}
.header-x ._button .cart-badge .badge {
  border-radius: 50%;
}
.header-x .has-large-menu.menu-large-hover .dropdown-container-large {
  visibility: visible;
  opacity: 1;
  top: calc(0px + 102px + 0px + 0px);
}
.header-x .has-large-menu.menu-large-hover .dropdown-container-large ul.submenu ul.submenu {
  visibility: visible;
  opacity: 1;
}
@media (min-width: 1200px) {
  .header-x .dropdown-container-large {
    position: fixed;
    z-index: 59;
    top: calc(calc(0px + 102px + 0px + 0px) + 15px);
    left: 0px;
    right: 0px;
    width: 100%;
    -webkit-transition: 200ms ease-in-out;
    transition: 200ms ease-in-out;
    visibility: hidden;
    opacity: 0;
  }
  .header-x .dropdown-container-large .inner-container-large-a,
.header-x .dropdown-container-large .inner-container-large-b {
    height: 400px;
    background-color: #ffffff;
    border-left: 1px solid #DDDDDD;
    border-right: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    overflow: hidden;
  }
  .header-x .dropdown-container-large .inner-container-large-a .inner-content-large,
.header-x .dropdown-container-large .inner-container-large-b .inner-content-large {
    height: 398px;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .header-x .dropdown-container-large .inner-container-large-a .inner-content-large.left,
.header-x .dropdown-container-large .inner-container-large-b .inner-content-large.left {
    background-color: #fff;
  }
  .header-x .dropdown-container-large .inner-container-large-a .inner-content-large.right,
.header-x .dropdown-container-large .inner-container-large-b .inner-content-large.right {
    background-color: #F6F8FA;
  }
  .header-x .dropdown-container-large .inner-container-large-a .inner-content-large img,
.header-x .dropdown-container-large .inner-container-large-b .inner-content-large img {
    -o-object-fit: cover;
    object-fit: cover;
  }
  .header-x .dropdown-container-large .inner-container-large-a ul.submenu ul.submenu,
.header-x .dropdown-container-large .inner-container-large-b ul.submenu ul.submenu {
    position: static;
    top: 100%;
    border: 0px transparent !important;
  }
  .header-x .dropdown-container-large .inner-container-large-a ul.submenu ul.submenu li,
.header-x .dropdown-container-large .inner-container-large-b ul.submenu ul.submenu li {
    height: unset !important;
  }
  .header-x .dropdown-container-large .inner-container-large-a ul.submenu ul.submenu li a,
.header-x .dropdown-container-large .inner-container-large-b ul.submenu ul.submenu li a {
    height: unset !important;
  }
  .header-x .dropdown-container-large .inner-container-large-c {
    height: calc(100vh - calc(0px + 102px + 0px + 0px) - 100px);
    background-color: #ffffff;
    border-left: 1px solid #DDDDDD;
    border-right: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    overflow: hidden;
  }
  .header-x .dropdown-container-large .inner-container-large-c ._desktop-submenu-slot ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    width: -webkit-fill-available;
    gap: 8px;
    padding: 0;
    list-style: none;
    border: none;
  }
  .header-x .dropdown-container-large .inner-container-large-c ._desktop-submenu-slot ul li:hover {
    background-color: #F1F1F1;
    border-radius: 4px;
  }
  .header-x .dropdown-container-large .inner-container-large-c .inner-content-large {
    height: calc(100vh - calc(0px + 102px + 0px + 0px) - 100px);
    overflow-x: hidden;
    overflow-y: auto;
  }
  .header-x .dropdown-container-large .inner-container-large-c .inner-content-large.left {
    background-color: #fff;
  }
  .header-x .dropdown-container-large .inner-container-large-c .inner-content-large.right {
    background-color: #F6F8FA;
  }
  .header-x .dropdown-container-large .inner-container-large-c .inner-content-large.middle {
    background-color: #fff;
  }
  .header-x .dropdown-container-large .inner-container-large-c .inner-content-large img {
    max-width: 512px;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .header-x .dropdown-container-large .inner-container-large-c .inner-content-large ._focus {
    background-color: #f1f1f1;
    border-radius: 4px;
  }
  .header-x .dropdown-container-large .inner-container-large-c .inner-content-large ul:hover {
    background-color: #F1F1F1;
    border-radius: 4px;
  }
  .header-x .dropdown-container-large .inner-container-large-c ul.submenu {
    border: none !important;
  }
  .header-x .dropdown-container-large .inner-container-large-c ul.submenu ul.submenu {
    position: static;
    top: 100%;
    border: 0px transparent !important;
  }
  .header-x .dropdown-container-large .inner-container-large-c ul.submenu ul.submenu li {
    height: unset !important;
  }
  .header-x .dropdown-container-large .inner-container-large-c ul.submenu ul.submenu li a {
    height: unset !important;
  }
}
@media (max-width: 1199.98px) {
  .header-x .dropdown-container-large {
    position: relative;
    -webkit-transition: 0ms ease-in-out;
    transition: 0ms ease-in-out;
    visibility: hidden;
    opacity: 0;
  }
  .header-x .dropdown-container-large .inner-container-large {
    padding-left: 0px;
    padding-right: 0px;
  }
  .header-x .dropdown-container-large .inner-content-large {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.header-x .header-btn {
  height: 34px;
  width: 34px;
  border: 1px solid #DDDDDD;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}
.header-x .header-btn:focus {
  outline: unset;
}
.header-x .header-btn i {
  color: #282023;
}
.header-x .header-btn.btn-default {
  background-color: #fff;
}
.header-x .header-btn.btn-default:hover {
  background-color: #282023;
  border-color: #282023;
}
.header-x .header-btn.btn-default:hover i {
  color: #fff;
}
.header-x .header-btn:hover {
  cursor: pointer;
  text-decoration: none;
}
.header-x .header-title {
  font-size: 15px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #000;
  font-weight: bold;
}
@media (max-width: 991.98px) {
  .header-x .header-title {
    font-size: 13px;
  }
}
.header-x .header-text {
  font-size: 14px;
  line-height: 1.2;
  color: #000000;
}
@media (max-width: 991.98px) {
  .header-x .header-text {
    font-size: 13px;
  }
}
.header-x .header-icon {
  font-size: 10px;
}
.header-x .top-menu-list {
  line-height: 0;
}
@media (max-width: 1199.98px) {
  .header-x .header-menu-item {
    width: calc(100% - 42px);
  }
}
.header-x .header-gradient {
  z-index: -1;
}
@media (max-width: 1199.98px) {
  .header-x .header-gradient {
    z-index: 60;
  }
}
.header-x .search-gradient {
  z-index: -1;
}
.header-x .webwinkelimage img {
  max-height: 40px;
  max-width: 110px;
}
.header-x .trustpilotimage img {
  min-height: 40px;
  min-width: 110px;
  max-height: 40px;
  max-width: 110px;
}
.header-x .menu-top-list {
  line-height: 0;
}
.header-x .menu-top-list li:not(:last-child) {
  margin-right: 1rem;
}
.header-x .top-header-item {
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  line-height: 1.8;
  color: #000000;
}
.header-x .top-header-item i {
  color: #282023;
}
@media (max-width: 767.98px) {
  .header-x .top-header-item {
    font-size: 11px;
  }
}
.header-x .top-header-item.active {
  font-weight: bold;
}
.header-x .top-header-item:hover span {
  text-decoration: underline;
}
@media (min-width: 1200px) {
  .header-x .header-dropdown-title {
    font-size: 16px !important;
    font-family: "Roboto", sans-serif !important;
    line-height: 1.8 !important;
    color: #000 !important;
    font-weight: bold !important;
    height: unset !important;
  }
}
@media (max-width: 991.98px) {
  .header-x .header-dropdown-title {
    font-size: 13px;
  }
}
.header-x .header-dropdown-item {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  line-height: 1.8;
  color: #000000;
}
@media (max-width: 991.98px) {
  .header-x .header-dropdown-item {
    font-size: 13px;
  }
}
.header-x .mobile-disabled {
  -ms-touch-action: none;
  touch-action: none;
}
@media (max-width: 991.98px) {
  .header-x .mobile-disabled {
    cursor: default;
  }
  .header-x .mobile-disabled on:hover {
    text-decoration: none !important;
  }
}
.header-x .desktop-disabled {
  -ms-touch-action: none;
  touch-action: none;
}
@media (min-width: 768px) {
  .header-x .desktop-disabled {
    cursor: default;
  }
  .header-x .desktop-disabled on:hover {
    text-decoration: none !important;
  }
}
.header-x ._menu._default-menu {
  position: relative;
}
@media (max-width: 1199.98px) {
  .header-x ._menu._default-menu {
    position: absolute;
  }
}
.header-x ._menu nav.default-menu > ul {
  height: 50px;
}
.header-x ._menu nav.default-menu > ul > li > a,
.header-x ._menu nav.default-menu > ul > li > button,
.header-x ._menu nav.default-menu > ul > li > div.no-link,
.header-x ._menu nav.default-menu > ul > li > span.no-link {
  font-size: 15px;
  color: #fff;
  padding: 0 8px;
  font-weight: bolder;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  line-height: 1.8;
  height: 50px;
  white-space: nowrap;
}
.header-x ._menu nav.default-menu > ul > li ul.submenu:not(.inner-content-large) {
  background-color: #fff;
  border: 1px solid #DDDDDD;
}
.header-x ._menu nav.default-menu > ul > li ul.submenu li > a,
.header-x ._menu nav.default-menu > ul > li ul.submenu li > button,
.header-x ._menu nav.default-menu > ul > li ul.submenu li > div.no-link,
.header-x ._menu nav.default-menu > ul > li ul.submenu li > span.no-link {
  font-size: 14px;
  color: #000000;
  padding: 0 8px;
  font-weight: normal;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  line-height: 1.8;
  height: 50px;
  white-space: nowrap;
}
.header-x ._menu nav.default-menu > ul > li ul.submenu li ul.submenu {
  background-color: #fff;
  border: 1px solid #DDDDDD;
}
.header-x ._menu nav.default-menu > ul > li ul.submenu li ul.submenu > li > a,
.header-x ._menu nav.default-menu > ul > li ul.submenu li ul.submenu > li > button,
.header-x ._menu nav.default-menu > ul > li ul.submenu li ul.submenu > li > div.no-link,
.header-x ._menu nav.default-menu > ul > li ul.submenu li ul.submenu > li > span.no-link {
  font-size: 14px;
  color: #000000;
  padding: 0 8px;
  font-weight: normal;
  text-decoration: none;
  height: 50px;
  white-space: nowrap;
}
@media (max-width: 1199.98px) {
  .header-x ._menu nav.default-menu.main-menu {
    background-color: #fff;
    border-right: 1px solid #DDDDDD;
  }
  .header-x ._menu nav.default-menu.main-menu .menu-header {
    height: 100%;
    max-height: 50px;
  }
  .header-x ._menu nav.default-menu.main-menu .menu-header .brand-name img {
    height: 40px;
  }
  .header-x ._menu nav.default-menu.main-menu > ul {
    height: calc(100%) !important;
  }
  .header-x ._menu nav.default-menu.main-menu ul {
    height: calc(100% - 50px);
  }
  .header-x ._menu nav.default-menu.main-menu ul li:not(:last-child) {
    border-bottom: 1px solid #DDDDDD;
  }
  .header-x ._menu nav.default-menu.main-menu ul li a,
.header-x ._menu nav.default-menu.main-menu ul li button,
.header-x ._menu nav.default-menu.main-menu ul li div.no-link,
.header-x ._menu nav.default-menu.main-menu ul li span.no-link {
    font-size: 18px;
    color: black;
    padding: 0 15px;
    font-weight: bolder;
    text-decoration: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 50px;
    white-space: nowrap;
  }
  .header-x ._menu nav.default-menu.main-menu ul li .toggle-dropdown {
    height: 50px;
  }
  .header-x ._menu nav.default-menu.main-menu ul li ul.submenu {
    border: unset;
  }
  .header-x ._menu nav.default-menu.main-menu ul li ul.submenu li a,
.header-x ._menu nav.default-menu.main-menu ul li ul.submenu li button,
.header-x ._menu nav.default-menu.main-menu ul li ul.submenu li div.no-link,
.header-x ._menu nav.default-menu.main-menu ul li ul.submenu li span.no-link {
    font-size: 14px;
    color: #000000;
    padding: 0 15px 0 30px;
    font-weight: normal;
    text-decoration: none;
    height: 50px;
    white-space: nowrap;
  }
  .header-x ._menu nav.default-menu.main-menu ul li ul.submenu li .toggle-dropdown {
    height: 50px;
  }
  .header-x ._menu nav.default-menu.main-menu ul li ul.submenu li ul.submenu {
    border: unset;
  }
  .header-x ._menu nav.default-menu.main-menu ul li ul.submenu li ul.submenu li a,
.header-x ._menu nav.default-menu.main-menu ul li ul.submenu li ul.submenu li button,
.header-x ._menu nav.default-menu.main-menu ul li ul.submenu li ul.submenu li div.no-link,
.header-x ._menu nav.default-menu.main-menu ul li ul.submenu li ul.submenu li span.no-link {
    font-size: 14px;
    color: #000000;
    padding: 0 15px 0 45px;
    font-weight: normal;
    text-decoration: none;
    height: 50px;
    white-space: nowrap;
  }
  .header-x ._menu nav.default-menu.main-menu ul li ul.submenu li ul.submenu li .toggle-dropdown {
    height: 50px;
  }
  .header-x ._menu nav.default-menu.main-menu ul li.open .dropdown-container-large {
    visibility: visible;
    opacity: 1;
  }
}
@media (max-width: 991.98px) {
  .header-x ._menu nav.default-menu.main-menu .menu-header .brand-name img {
    height: 30px;
  }
  .header-x ._menu nav.default-menu.main-menu .language-mobile {
    height: 50px;
  }
  .header-x ._menu nav.default-menu.main-menu > ul {
    height: calc(100% - 50px - 50px) !important;
  }
  .header-x ._menu nav.default-menu.main-menu ul {
    height: calc(100% - 50px);
  }
  .header-x ._menu nav.default-menu.main-menu ul li a,
.header-x ._menu nav.default-menu.main-menu ul li button,
.header-x ._menu nav.default-menu.main-menu ul li div.no-link,
.header-x ._menu nav.default-menu.main-menu ul li span.no-link {
    height: 50px;
  }
  .header-x ._menu nav.default-menu.main-menu ul li .toggle-dropdown {
    height: 50px;
  }
  .header-x ._menu nav.default-menu.main-menu ul li ul.submenu li a,
.header-x ._menu nav.default-menu.main-menu ul li ul.submenu li button,
.header-x ._menu nav.default-menu.main-menu ul li ul.submenu li div.no-link,
.header-x ._menu nav.default-menu.main-menu ul li ul.submenu li span.no-link {
    height: 50px;
  }
  .header-x ._menu nav.default-menu.main-menu ul li ul.submenu li .toggle-dropdown {
    height: 50px;
  }
  .header-x ._menu nav.default-menu.main-menu ul li ul.submenu li ul.submenu li a,
.header-x ._menu nav.default-menu.main-menu ul li ul.submenu li ul.submenu li button,
.header-x ._menu nav.default-menu.main-menu ul li ul.submenu li ul.submenu li div.no-link,
.header-x ._menu nav.default-menu.main-menu ul li ul.submenu li ul.submenu li span.no-link {
    height: 50px;
  }
  .header-x ._menu nav.default-menu.main-menu ul li ul.submenu li ul.submenu li .toggle-dropdown {
    height: 50px;
  }
}
@media (max-width: 767.98px) {
  .header-x ._menu nav.default-menu.main-menu .menu-header .brand-name img {
    height: 25px;
  }
  .header-x ._menu nav.default-menu.main-menu .language-mobile {
    height: 50px;
  }
  .header-x ._menu nav.default-menu.main-menu > ul {
    height: calc(100% - 50px - 50px) !important;
  }
  .header-x ._menu nav.default-menu.main-menu ul {
    height: calc(100% - 50px);
  }
  .header-x ._menu nav.default-menu.main-menu ul li a,
.header-x ._menu nav.default-menu.main-menu ul li div.no-link,
.header-x ._menu nav.default-menu.main-menu ul li span.no-link {
    height: 50px;
  }
  .header-x ._menu nav.default-menu.main-menu ul li .toggle-dropdown {
    height: 50px;
  }
  .header-x ._menu nav.default-menu.main-menu ul li ul.submenu li a,
.header-x ._menu nav.default-menu.main-menu ul li ul.submenu li div.no-link,
.header-x ._menu nav.default-menu.main-menu ul li ul.submenu li span.no-link {
    height: 50px;
  }
  .header-x ._menu nav.default-menu.main-menu ul li ul.submenu li .toggle-dropdown {
    height: 50px;
  }
  .header-x ._menu nav.default-menu.main-menu ul li ul.submenu li ul.submenu li a,
.header-x ._menu nav.default-menu.main-menu ul li ul.submenu li ul.submenu li div.no-link,
.header-x ._menu nav.default-menu.main-menu ul li ul.submenu li ul.submenu li span.no-link {
    height: 50px;
  }
  .header-x ._menu nav.default-menu.main-menu ul li ul.submenu li ul.submenu li .toggle-dropdown {
    height: 50px;
  }
}
@media (max-width: 991.98px) {
  .header-x ._menu nav.default-menu:not(.main-menu) ul {
    height: 50px;
  }
  .header-x ._menu nav.default-menu:not(.main-menu) ul li a,
.header-x ._menu nav.default-menu:not(.main-menu) ul li div.no-link,
.header-x ._menu nav.default-menu:not(.main-menu) ul li span.no-link {
    height: 50px;
  }
}
@media (max-width: 767.98px) {
  .header-x ._menu nav.default-menu:not(.main-menu) ul {
    height: 50px;
  }
  .header-x ._menu nav.default-menu:not(.main-menu) ul li a,
.header-x ._menu nav.default-menu:not(.main-menu) ul li div.no-link,
.header-x ._menu nav.default-menu:not(.main-menu) ul li span.no-link {
    height: 50px;
  }
}
.header-x ._right-side-menu .divider {
  height: 25px;
  border-right: 1px solid #000;
}
.header-x ._right-side-menu .header-title {
  color: #000;
  font-size: 13px;
}
.header-x ._right-side-menu .header-title:hover {
  cursor: pointer;
  text-decoration: underline;
}
.header-x ._right-side-menu .header-icon {
  color: #000;
  font-size: 10px;
}
.header-x ._right-side-menu .dropdown-menu {
  position: fixed;
  z-index: 60;
  top: calc(calc(0px + 102px + 0px + 0px) + 12px);
  background-color: #fff;
  right: calc(((100vw - 1140px) / 2) - 10px);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
  display: block;
  border-top-color: transparent !important;
}
.header-x ._right-side-menu .dropdown-menu.show {
  visibility: visible;
  opacity: 1;
  top: calc(calc(0px + 102px + 0px + 0px) - 3px);
}
.header-x ._right-side-menu .dropdown-menu .dropdown-list-title {
  color: #282023;
  font-size: 14px;
  font-weight: 900;
}
.header-x ._right-side-menu .dropdown-menu .dropdown-list-item {
  color: #000000;
  font-size: 13px;
}
.header-x ._right-side-menu .dropdown-menu ul {
  line-height: 1.8 !important;
}
.header-x ._right-side-menu .dropdown-menu ul li {
  line-height: 1.8 !important;
}

@media (min-width: 1200px) {
  body:has(.header-x-background-static) #page {
    padding-top: calc(0px + 102px + 0px + 0px);
  }
}
@media (max-width: 1199.98px) {
  body:has(.header-x-background-static) #page {
    padding-top: calc(0px + 102px + 0px + 0px);
  }
}
@media (max-width: 991.98px) {
  body:has(.header-x-background-static) #page {
    padding-top: calc(0px + 102px + 0px + 0px);
  }
}
@media (max-width: 767.98px) {
  body:has(.header-x-background-static) #page {
    padding-top: calc(0px + 66px + 0px + 0px);
  }
}

#page > .style-primary:not(.style-primary ~ .style-primary) {
  margin-top: 0px;
  padding-top: 0px;
}

.block-banner-a {
  background-color: #7B5A51;
}
.block-banner-a .title {
  color: #373736;
  font-size: 18px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  line-height: 1.2;
}
.block-banner-a .text {
  color: #fff;
  font-size: 14px;
  font-family: "Quicksand", sans-serif;
  line-height: 1.8;
}
@media (max-width: 991.98px) {
  .block-banner-a a.btn {
    width: 100% !important;
  }
}

.card-bonus-deals {
  background: #fff;
}
.card-bonus-deals .icon {
  font-size: 15px;
}
.card-bonus-deals .show-more {
  cursor: pointer;
}

.block-branche-a {
  display: block;
}
.block-branche-a .h6 {
  color: #ffffff;
}
.block-branche-a a {
  font-size: 20px;
  color: #000000 !important;
}
.block-branche-a span {
  line-height: 1.8;
}
.block-branche-a .contact {
  display: block;
}
.block-branche-a i {
  color: #282023;
  font-size: 12px;
}

.block-breadcrumb {
  line-height: 1.8;
}
.block-breadcrumb .breadcrumb {
  background-color: #fff !important;
}
@media (max-width: 1199.98px) {
  .block-breadcrumb .breadcrumb li {
    display: none;
  }
  .block-breadcrumb .breadcrumb li:nth-last-child(2) {
    display: block;
  }
  .block-breadcrumb .breadcrumb li:nth-last-child(2):before {
    display: none !important;
  }
}
.block-breadcrumb a {
  color: #000000;
}
.block-breadcrumb a i {
  display: inline-block !important;
  font-size: 9px;
  margin-right: 0.25rem !important;
}
@media (min-width: 768px) {
  .block-breadcrumb a i {
    display: none !important;
    margin-right: 0 !important;
  }
}
.block-breadcrumb .active {
  font-weight: bold;
}
.block-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  display: none;
}
@media (min-width: 992px) {
  .block-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.block-breadcrumb li:not(:first-child) {
  padding-left: 0;
}
@media (min-width: 768px) {
  .block-breadcrumb li:not(:first-child) {
    padding-left: 0.5rem !important;
  }
}
.block-breadcrumb:not(.active) a {
  text-decoration: underline;
}
.block-breadcrumb .active:before {
  font-weight: normal;
  padding-right: 0.25rem;
}

.block-cart-added-image-a .image img {
  height: 127px;
}

.block-cart-added-image-b .image .image-box {
  height: 115px;
  width: 170px;
}
@media (max-width: 991.98px) {
  .block-cart-added-image-b .image .image-box {
    height: 60px;
    width: 90px;
  }
}
.block-cart-added-image-b .info-buttons {
  top: -80px;
}
@media (max-width: 991.98px) {
  .block-cart-added-image-b .info-buttons {
    top: -30px;
  }
}
@media (max-width: 767.98px) {
  .block-cart-added-image-b .info-buttons {
    top: 0px;
  }
}

.block-checkout-steps {
  background-color: #fff;
}
.block-checkout-steps .step .chevron {
  color: #00b900;
  font-size: 13px;
}
.block-checkout-steps .step:not(.active) .tab-title {
  opacity: 0.5;
}
.block-checkout-steps .step.active {
  background-color: #F9F9F9;
}
.block-checkout-steps .step.active .chevron {
  display: inline-block !important;
}
.block-checkout-steps .step.checked {
  background-color: #F9F9F9;
}
.block-checkout-steps .step.checked .check {
  font-size: 20px;
  color: #00b900;
}
@media (max-width: 991.98px) {
  .block-checkout-steps .step:not(.active) .tab-title {
    display: none;
  }
  .block-checkout-steps .step:not(.active) .chevron {
    color: #030304;
    opacity: 0.5;
    margin-left: 0px !important;
  }
  .block-checkout-steps .step .chevron {
    display: inline-block !important;
    font-size: 11px;
  }
  .block-checkout-steps .step.checked .check {
    font-size: 11px;
  }
}

.block-company-info-header-a .contact-block {
  font-size: 15px;
}
.block-company-info-header-a .contact-block a {
  text-decoration: none !important;
  color: #000000;
}
.block-company-info-header-a .contact-block a:hover {
  text-decoration: underline !important;
  color: #282023;
}
.block-company-info-header-a .contact-block i {
  color: #7B5A51;
  width: 14px;
  font-size: 10px;
}
.block-company-info-header-a .contact-block .location i {
  padding-left: 2px;
  margin-top: 10px;
}
@media (max-width: 1199.98px) {
  .block-company-info-header-a .contact-block .location i {
    margin-top: 6px;
  }
}
.block-company-info-header-a .contact-block a,
.block-company-info-header-a .contact-block p {
  text-decoration: none;
  font-size: 20px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .block-company-info-header-a .contact-block a,
.block-company-info-header-a .contact-block p {
    font-size: 16px;
  }
}
.block-company-info-header-a .contact-block a:hover {
  text-decoration: underline;
}

.block-company-info a {
  text-decoration: none !important;
  color: #000000;
}
.block-company-info a:hover {
  text-decoration: underline !important;
  color: #282023;
}
.block-company-info i {
  display: inline-block;
  margin-right: 0.5rem;
  color: #282023;
  width: 14px;
  font-size: 12px;
}
.block-company-info .location i {
  padding-left: 2px;
  margin-top: 10px;
}
@media (max-width: 1199.98px) {
  .block-company-info .location i {
    margin-top: 6px;
  }
}
.block-company-info.footer {
  margin-bottom: 1rem !important;
}
@media (min-width: 768px) {
  .block-company-info.footer {
    margin-bottom: 0 !important;
  }
}
.block-company-info.footer a,
.block-company-info.footer p {
  text-decoration: none;
  font-size: 20px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .block-company-info.footer a,
.block-company-info.footer p {
    font-size: 16px;
  }
}
.block-company-info.footer a:hover {
  text-decoration: underline;
}

.block-contact-grid-a {
  -ms-grid-columns: auto 0 2fr 0 auto 0 auto 0 auto;
  grid-template-columns: auto 2fr auto auto auto;
  -ms-grid-rows: auto 0 auto;
  grid-template-rows: auto auto;
  width: -webkit-fill-available;
  display: -ms-grid !important;
  display: grid !important;
  gap: 0;
  grid-template-areas: "image title optional phone email" "image text optional phone email";
  background-color: #fff;
}
.block-contact-grid-a .stroke-title {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #000;
}
@media (max-width: 991.98px) {
  .block-contact-grid-a .stroke-title {
    font-size: 13px;
  }
}
.block-contact-grid-a .stroke-text {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .block-contact-grid-a .stroke-text {
    font-size: 12px;
  }
}
.block-contact-grid-a .stroke-item {
  font-weight: bold;
  font-size: 14px;
  line-height: 1.8;
  font-family: "Roboto", sans-serif;
  color: #696969;
}
.block-contact-grid-a .stroke-item i {
  color: #282023;
}
@media (max-width: 991.98px) {
  .block-contact-grid-a .stroke-item {
    font-size: 12px;
  }
}
.block-contact-grid-a .area {
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}
.block-contact-grid-a .area-image {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  grid-area: image;
  -ms-grid-row-align: center;
  align-self: center;
}
.block-contact-grid-a .area-image .image {
  border: 1px solid #fff;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  padding-top: unset;
}
@media (max-width: 991.98px) {
  .block-contact-grid-a .area-image .image {
    padding-top: 0 !important;
  }
}
.block-contact-grid-a .area-title {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: title;
}
.block-contact-grid-a .area-text {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  grid-area: text;
  font-weight: 400;
}
.block-contact-grid-a .area-text p {
  margin-bottom: 0;
}
.block-contact-grid-a .area-phone {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 7;
  grid-area: phone;
  -ms-grid-row-align: center;
  align-self: center;
}
.block-contact-grid-a .area-email {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 9;
  grid-area: email;
  -ms-grid-row-align: center;
  align-self: center;
}
.block-contact-grid-a .area-optional {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 5;
  grid-area: optional;
  -ms-grid-row-align: center;
  align-self: center;
}
@media (max-width: 991.98px) {
  .block-contact-grid-a {
    padding: 20px;
    position: relative;
    width: -webkit-fill-available;
    -ms-grid-columns: 30% 70%;
    grid-template-columns: 30% 70%;
    grid-template-areas: "image title" "image phone" "image email" "image optional";
  }
  .block-contact-grid-a .area-title,
.block-contact-grid-a .area-phone,
.block-contact-grid-a .area-email,
.block-contact-grid-a .area-optional {
    padding-left: 0 !important;
    text-align: left !important;
  }
  .block-contact-grid-a .area-image {
    padding: 0 !important;
  }
  .block-contact-grid-a .area-image > div {
    padding: 0 !important;
  }
  .block-contact-grid-a .area-text,
.block-contact-grid-a .area-title {
    display: none;
  }
  .block-contact-grid-a .area-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    -ms-grid-column: 1;
  }
  .block-contact-grid-a .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-a .area-phone {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-a .area-email {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-a .area-optional {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
}

.block-contact-grid-b {
  background-color: #fff;
}
.block-contact-grid-b > div > div > div {
  -ms-grid-columns: auto 0 2fr 0 auto 0 auto 0 auto;
  grid-template-columns: auto 2fr auto auto auto;
  -ms-grid-rows: auto 0 auto;
  grid-template-rows: auto auto;
  width: -webkit-fill-available;
  display: -ms-grid !important;
  display: grid !important;
  gap: 0;
  grid-template-areas: "image title optional phone email" "image text optional phone email";
}
.block-contact-grid-b > div > div > div .stroke-title {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #000;
}
@media (max-width: 991.98px) {
  .block-contact-grid-b > div > div > div .stroke-title {
    font-size: 13px;
  }
}
.block-contact-grid-b > div > div > div .stroke-text {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .block-contact-grid-b > div > div > div .stroke-text {
    font-size: 12px;
  }
}
.block-contact-grid-b > div > div > div .stroke-contact {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #000;
}
@media (max-width: 991.98px) {
  .block-contact-grid-b > div > div > div .stroke-contact {
    font-size: 13px;
  }
}
.block-contact-grid-b > div > div > div .area {
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}
.block-contact-grid-b > div > div > div .area-image {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  grid-area: image;
  align-self: center;
}
.block-contact-grid-b > div > div > div .area-image .image {
  border: 1px solid #fff;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  padding-top: unset;
}
@media (max-width: 991.98px) {
  .block-contact-grid-b > div > div > div .area-image .image {
    padding-top: 0 !important;
  }
}
.block-contact-grid-b > div > div > div .area-phone a i,
.block-contact-grid-b > div > div > div .area-phone a span,
.block-contact-grid-b > div > div > div .area-email a i,
.block-contact-grid-b > div > div > div .area-email a span,
.block-contact-grid-b > div > div > div .area-optional a i,
.block-contact-grid-b > div > div > div .area-optional a span {
  text-align: center;
}
.block-contact-grid-b > div > div > div .area-phone a i,
.block-contact-grid-b > div > div > div .area-email a i,
.block-contact-grid-b > div > div > div .area-optional a i {
  color: #282023;
}
.block-contact-grid-b > div > div > div .area-phone a:hover span,
.block-contact-grid-b > div > div > div .area-email a:hover span,
.block-contact-grid-b > div > div > div .area-optional a:hover span {
  text-decoration: underline;
}
.block-contact-grid-b > div > div > div .area-title {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: title;
  align-self: flex-end;
}
.block-contact-grid-b > div > div > div .area-text {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  grid-area: text;
  font-weight: 400;
}
.block-contact-grid-b > div > div > div .area-text p {
  margin-bottom: 0;
}
.block-contact-grid-b > div > div > div .area-phone {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 7;
  grid-area: phone;
  align-self: center;
}
.block-contact-grid-b > div > div > div .area-email {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 9;
  grid-area: email;
  align-self: center;
}
.block-contact-grid-b > div > div > div .area-optional {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 5;
  grid-area: optional;
  align-self: center;
}
@media (max-width: 767.98px) {
  .block-contact-grid-b > div > div > div {
    padding: 20px;
    position: relative;
    width: -webkit-fill-available;
    -ms-grid-columns: 25% 75%;
    grid-template-columns: 25% 75%;
    grid-template-areas: "image title" "image phone" "image email" "image optional";
  }
  .block-contact-grid-b > div > div > div .area-title,
.block-contact-grid-b > div > div > div .area-phone,
.block-contact-grid-b > div > div > div .area-email,
.block-contact-grid-b > div > div > div .area-optional {
    padding-left: 0 !important;
    text-align: left !important;
  }
  .block-contact-grid-b > div > div > div .area-image {
    padding: 0 !important;
  }
  .block-contact-grid-b > div > div > div .area-image > div {
    padding: 0 !important;
  }
  .block-contact-grid-b > div > div > div .area-text {
    display: none;
  }
  .block-contact-grid-b > div > div > div > .area-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    -ms-grid-column: 1;
  }
  .block-contact-grid-b > div > div > div > .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-b > div > div > div > .area-phone {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-b > div > div > div > .area-email {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-b > div > div > div > .area-optional {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-b > div > div > div > .area-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    -ms-grid-column: 1;
  }
  .block-contact-grid-b > div > div > div > .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-b > div > div > div > .area-phone {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-b > div > div > div > .area-email {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-b > div > div > div > .area-optional {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
}

.block-contact-grid-c {
  background-color: #fff;
}
.block-contact-grid-c > div > div > div {
  -ms-grid-columns: auto 0 2fr 0 auto 0 auto 0 auto 0 1fr;
  grid-template-columns: auto 2fr auto auto auto 1fr;
  -ms-grid-rows: auto 0 auto;
  grid-template-rows: auto auto;
  width: -webkit-fill-available;
  display: -ms-grid !important;
  display: grid !important;
  gap: 0;
  grid-template-areas: "image title optional phone email socials" "image text optional phone email socials";
}
.block-contact-grid-c > div > div > div .stroke-title {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #000;
}
@media (max-width: 991.98px) {
  .block-contact-grid-c > div > div > div .stroke-title {
    font-size: 13px;
  }
}
.block-contact-grid-c > div > div > div .stroke-text {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .block-contact-grid-c > div > div > div .stroke-text {
    font-size: 12px;
  }
}
.block-contact-grid-c > div > div > div .stroke-contact {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #000;
}
@media (max-width: 991.98px) {
  .block-contact-grid-c > div > div > div .stroke-contact {
    font-size: 13px;
  }
}
.block-contact-grid-c > div > div > div .area {
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}
.block-contact-grid-c > div > div > div .area-socials {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 11;
  grid-area: socials;
  -ms-grid-row-align: center;
  align-self: center;
}
.block-contact-grid-c > div > div > div .area-socials .socialmedia-follow {
  font-size: 12px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  color: #000000;
  cursor: pointer;
}
.block-contact-grid-c > div > div > div .area-socials .socialmedia-follow:hover {
  background-color: #282023;
  border: 1px solid #282023 !important;
}
.block-contact-grid-c > div > div > div .area-socials .socialmedia-follow:hover i {
  color: #fff;
}
.block-contact-grid-c > div > div > div .area-socials .socialmedia-follow i {
  color: #282023;
}
.block-contact-grid-c > div > div > div .area-image {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  grid-area: image;
  align-self: center;
}
.block-contact-grid-c > div > div > div .area-image .image {
  border: 1px solid #fff;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  padding-top: unset;
}
@media (max-width: 991.98px) {
  .block-contact-grid-c > div > div > div .area-image .image {
    padding-top: 0 !important;
  }
}
.block-contact-grid-c > div > div > div .area-phone a i,
.block-contact-grid-c > div > div > div .area-phone a span,
.block-contact-grid-c > div > div > div .area-email a i,
.block-contact-grid-c > div > div > div .area-email a span,
.block-contact-grid-c > div > div > div .area-optional a i,
.block-contact-grid-c > div > div > div .area-optional a span {
  text-align: center;
}
.block-contact-grid-c > div > div > div .area-phone a i,
.block-contact-grid-c > div > div > div .area-email a i,
.block-contact-grid-c > div > div > div .area-optional a i {
  color: #282023;
}
.block-contact-grid-c > div > div > div .area-title {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: title;
  margin-bottom: 0px !important;
  align-self: flex-end;
}
.block-contact-grid-c > div > div > div .area-text {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  grid-area: text;
  font-weight: 400;
}
.block-contact-grid-c > div > div > div .area-text p {
  margin-bottom: 0;
}
.block-contact-grid-c > div > div > div .area-phone {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 7;
  grid-area: phone;
  align-self: center;
}
.block-contact-grid-c > div > div > div .area-email {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 9;
  grid-area: email;
  align-self: center;
}
.block-contact-grid-c > div > div > div .area-optional {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 5;
  grid-area: optional;
  align-self: center;
}
@media (max-width: 991.98px) {
  .block-contact-grid-c > div > div > div {
    -ms-grid-columns: auto 2fr auto 2fr 2fr;
    grid-template-columns: auto 2fr auto 2fr 2fr;
    grid-template-areas: "image title optional phone socials" "image text optional email socials";
  }
  .block-contact-grid-c > div > div > div > .area-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
  .block-contact-grid-c > div > div > div > .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div > .area-text {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div > .area-phone {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 4;
  }
  .block-contact-grid-c > div > div > div > .area-email {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 4;
  }
  .block-contact-grid-c > div > div > div > .area-optional {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 3;
  }
  .block-contact-grid-c > div > div > div > .area-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
  .block-contact-grid-c > div > div > div > .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div > .area-text {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div > .area-phone {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 4;
  }
  .block-contact-grid-c > div > div > div > .area-email {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 4;
  }
  .block-contact-grid-c > div > div > div > .area-optional {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 3;
  }
  .block-contact-grid-c > div > div > div .area-socials {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 5;
  }
  .block-contact-grid-c > div > div > div > .area-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
  .block-contact-grid-c > div > div > div > .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div > .area-text {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div > .area-phone {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 4;
  }
  .block-contact-grid-c > div > div > div > .area-email {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 4;
  }
  .block-contact-grid-c > div > div > div > .area-optional {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 3;
  }
}
@media (max-width: 767.98px) {
  .block-contact-grid-c > div > div > div {
    padding: 20px;
    position: relative;
    width: -webkit-fill-available;
    -ms-grid-columns: 25% 75%;
    grid-template-columns: 25% 75%;
    grid-template-areas: "image title" "image phone" "image email" "image optional" "image socials";
  }
  .block-contact-grid-c > div > div > div .area-title,
.block-contact-grid-c > div > div > div .area-phone,
.block-contact-grid-c > div > div > div .area-email,
.block-contact-grid-c > div > div > div .area-optional,
.block-contact-grid-c > div > div > div .area-socials {
    padding-left: 0 !important;
    text-align: left !important;
  }
  .block-contact-grid-c > div > div > div .area-image {
    padding: 0 !important;
  }
  .block-contact-grid-c > div > div > div .area-image > div {
    padding: 0 !important;
  }
  .block-contact-grid-c > div > div > div .area-text {
    display: none;
  }
  .block-contact-grid-c > div > div > div > .area-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 5;
    -ms-grid-column: 1;
  }
  .block-contact-grid-c > div > div > div > .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div > .area-phone {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div > .area-email {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div > .area-optional {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div > .area-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 5;
    -ms-grid-column: 1;
  }
  .block-contact-grid-c > div > div > div > .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div > .area-phone {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div > .area-email {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div > .area-optional {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div .area-socials {
    -ms-grid-row: 5;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div > .area-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 5;
    -ms-grid-column: 1;
  }
  .block-contact-grid-c > div > div > div > .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div > .area-phone {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div > .area-email {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div > .area-optional {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
}

.block-contact-grid-d {
  background-color: #fff;
}
.block-contact-grid-d > div > div > div {
  height: 102px;
  -ms-grid-columns: 96px 0 2fr 0 auto 0 auto 0 auto;
  grid-template-columns: 96px 2fr auto auto auto;
  -ms-grid-rows: auto 0 auto;
  grid-template-rows: auto auto;
  width: -webkit-fill-available;
  display: -ms-grid !important;
  display: grid !important;
  gap: 0;
  grid-template-areas: "image title optional phone email" "image text optional phone email";
}
@media (max-width: 991.98px) {
  .block-contact-grid-d > div > div > div {
    height: 112px;
  }
}
.block-contact-grid-d > div > div > div .stroke-title {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #000;
}
@media (max-width: 991.98px) {
  .block-contact-grid-d > div > div > div .stroke-title {
    font-size: 13px;
  }
}
.block-contact-grid-d > div > div > div .stroke-text {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  .block-contact-grid-d > div > div > div .stroke-text {
    font-size: 12px;
  }
}
.block-contact-grid-d > div > div > div .stroke-contact {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #000;
}
@media (max-width: 991.98px) {
  .block-contact-grid-d > div > div > div .stroke-contact {
    font-size: 13px;
  }
}
.block-contact-grid-d > div > div > div .area {
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}
.block-contact-grid-d > div > div > div .area-image {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  grid-area: image;
  align-self: center;
}
.block-contact-grid-d > div > div > div .area-image .image {
  border: 1px solid #fff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  padding-top: unset;
}
@media (max-width: 991.98px) {
  .block-contact-grid-d > div > div > div .area-image .image {
    padding-top: 0 !important;
  }
}
.block-contact-grid-d > div > div > div .area-phone a i,
.block-contact-grid-d > div > div > div .area-phone a span,
.block-contact-grid-d > div > div > div .area-email a i,
.block-contact-grid-d > div > div > div .area-email a span,
.block-contact-grid-d > div > div > div .area-optional a i,
.block-contact-grid-d > div > div > div .area-optional a span {
  text-align: center;
  color: #696969;
}
.block-contact-grid-d > div > div > div .area-phone a i,
.block-contact-grid-d > div > div > div .area-email a i,
.block-contact-grid-d > div > div > div .area-optional a i {
  color: #282023;
}
.block-contact-grid-d > div > div > div .area-phone a:hover span,
.block-contact-grid-d > div > div > div .area-email a:hover span,
.block-contact-grid-d > div > div > div .area-optional a:hover span {
  text-decoration: underline;
}
.block-contact-grid-d > div > div > div .area-title {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: title;
}
.block-contact-grid-d > div > div > div .area-text {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  grid-area: text;
  font-weight: 400;
}
.block-contact-grid-d > div > div > div .area-text p {
  margin-bottom: 0;
}
.block-contact-grid-d > div > div > div .area-phone {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 7;
  grid-area: phone;
  align-self: center;
  background-color: #696969;
}
.block-contact-grid-d > div > div > div .area-email {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 9;
  grid-area: email;
  align-self: center;
  background-color: #696969;
}
.block-contact-grid-d > div > div > div .area-optional {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 5;
  grid-area: optional;
  align-self: center;
}
@media (max-width: 1199.98px) {
  .block-contact-grid-d > div > div > div {
    -ms-grid-columns: auto 0 auto 0 auto 0 auto 0 auto;
    grid-template-columns: auto auto auto auto auto;
    -ms-grid-rows: auto 0 auto;
    grid-template-rows: auto auto;
    width: -webkit-fill-available;
    display: -ms-grid !important;
    display: grid !important;
    gap: 0;
    grid-template-areas: "image title line phone optional" "image text line email optional";
  }
  .block-contact-grid-d > div > div > div .area-phone,
.block-contact-grid-d > div > div > div .area-email {
    height: unset;
    text-align: right;
  }
  .block-contact-grid-d > div > div > div .area-phone {
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
  .block-contact-grid-d > div > div > div .area-email {
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
  .block-contact-grid-d > div > div > div > .area-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1;
  }
  .block-contact-grid-d > div > div > div > .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .block-contact-grid-d > div > div > div > .area-text {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .block-contact-grid-d > div > div > div > .area-phone {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 7;
  }
  .block-contact-grid-d > div > div > div > .area-email {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 7;
  }
  .block-contact-grid-d > div > div > div > .area-optional {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 9;
  }
  .block-contact-grid-d > div > div > div > .area-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1;
  }
  .block-contact-grid-d > div > div > div > .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .block-contact-grid-d > div > div > div > .area-text {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .block-contact-grid-d > div > div > div > .area-phone {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 7;
  }
  .block-contact-grid-d > div > div > div > .area-email {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 7;
  }
  .block-contact-grid-d > div > div > div > .area-optional {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 9;
  }
  .block-contact-grid-d > div > div > div > .area-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1;
  }
  .block-contact-grid-d > div > div > div > .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .block-contact-grid-d > div > div > div > .area-text {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .block-contact-grid-d > div > div > div > .area-phone {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 7;
  }
  .block-contact-grid-d > div > div > div > .area-email {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 7;
  }
  .block-contact-grid-d > div > div > div > .area-optional {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 9;
  }
  .block-contact-grid-d > div > div > div > .area-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1;
  }
  .block-contact-grid-d > div > div > div > .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .block-contact-grid-d > div > div > div > .area-text {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .block-contact-grid-d > div > div > div > .area-phone {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 7;
  }
  .block-contact-grid-d > div > div > div > .area-email {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 7;
  }
  .block-contact-grid-d > div > div > div > .area-optional {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 9;
  }
}
@media (max-width: 767.98px) {
  .block-contact-grid-d > div > div > div {
    padding: 16px;
    position: relative;
    width: -webkit-fill-available;
    -ms-grid-columns: 96px 75%;
    grid-template-columns: 96px 75%;
    grid-template-areas: "image title" "image phone" "image email" "image optional";
  }
  .block-contact-grid-d > div > div > div .area-title,
.block-contact-grid-d > div > div > div .area-phone,
.block-contact-grid-d > div > div > div .area-email,
.block-contact-grid-d > div > div > div .area-optional {
    padding-left: 0 !important;
    text-align: left !important;
  }
  .block-contact-grid-d > div > div > div .area-phone,
.block-contact-grid-d > div > div > div .area-email {
    background-color: #fff !important;
  }
  .block-contact-grid-d > div > div > div .area-phone {
    border-right: none;
  }
  .block-contact-grid-d > div > div > div .area-image {
    padding: 0 !important;
  }
  .block-contact-grid-d > div > div > div .area-image > div {
    padding: 0 !important;
  }
  .block-contact-grid-d > div > div > div .area-text {
    display: none;
  }
  .block-contact-grid-d > div > div > div > .area-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    -ms-grid-column: 1;
  }
  .block-contact-grid-d > div > div > div > .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-d > div > div > div > .area-phone {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-d > div > div > div > .area-email {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-d > div > div > div > .area-optional {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-d > div > div > div > .area-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    -ms-grid-column: 1;
  }
  .block-contact-grid-d > div > div > div > .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-d > div > div > div > .area-phone {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-d > div > div > div > .area-email {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-d > div > div > div > .area-optional {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-d > div > div > div > .area-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    -ms-grid-column: 1;
  }
  .block-contact-grid-d > div > div > div > .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-d > div > div > div > .area-phone {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-d > div > div > div > .area-email {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-d > div > div > div > .area-optional {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-d > div > div > div > .area-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    -ms-grid-column: 1;
  }
  .block-contact-grid-d > div > div > div > .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-d > div > div > div > .area-phone {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-d > div > div > div > .area-email {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-d > div > div > div > .area-optional {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
}

.block-employee-contact {
  z-index: 59;
  background-color: rgba(0, 0, 0, 0.9);
  border: 1px solid transparent;
  border-radius: 45px;
  width: 411px;
}
@media (max-width: 991.98px) {
  .block-employee-contact {
    width: 285px;
  }
}
.block-employee-contact .image {
  border: 2px solid #fff;
  width: 76px;
  height: 76px;
  right: 10px;
}
.block-employee-contact .image img {
  position: absolute;
  top: 0px;
}
.block-employee-contact .title {
  color: #fff;
  font-family: "Roboto", sans-serif;
  line-height: 1.2;
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .block-employee-contact .title {
    font-size: 15px;
  }
}
.block-employee-contact .text {
  color: #fff;
  font-family: "Quicksand", sans-serif;
  line-height: 1.2;
  font-size: 18px;
}
@media (max-width: 991.98px) {
  .block-employee-contact .text {
    font-size: 13px;
  }
}

.block-faq-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.block-faq-search .text p:last-child {
  margin-bottom: 0px;
}
@media (max-width: 991.98px) {
  .block-faq-search .block-pills-filter {
    height: 48px;
  }
}
.block-faq-search .search-bar-faq .search {
  width: 100%;
}
.block-faq-search .search-bar-faq .search input {
  font-style: italic;
}
.block-faq-search .search-bar-faq .search .input-group-append {
  cursor: pointer;
}
.block-faq-search .search-bar-faq .search .input-group-text {
  background-color: #375D8E !important;
}
.block-faq-search .search-bar-faq .search .input-group-text i {
  color: #282023;
}

@media (max-width: 991.98px) {
  .block-faq-search-faq {
    margin-bottom: 16px !important;
  }
  .block-faq-search-faq .line {
    margin-bottom: 0 !important;
  }
}
.block-faq-search-faq .search-bar-faq .search-faq {
  width: 100%;
}
.block-faq-search-faq .search-bar-faq .search-faq .input-group-text {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}
.block-faq-search-faq .search-bar-faq .search-faq .search-header-faq {
  height: 44px !important;
}
@media (max-width: 991.98px) {
  .block-faq-search-faq .search-bar-faq .search-faq .search-header-faq {
    height: 36px !important;
  }
}
.block-faq-search-faq .search-bar-faq .search-faq .input-group-append {
  cursor: pointer;
}
.block-faq-search-faq .search-bar-faq .search-faq .input-group-text {
  background-color: #375D8E !important;
}
.block-faq-search-faq .search-bar-faq .search-faq .input-group-text i {
  color: #282023;
}

.dual-range-slider .dual-range-divider {
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
}
.dual-range-slider .slider {
  position: relative;
}
.dual-range-slider .slider input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 2px;
  position: absolute;
  background-color: transparent;
  width: calc(100% - 30px);
  z-index: 0;
}
.dual-range-slider .slider input[type=range]:hover {
  cursor: pointer;
}
.dual-range-slider .slider input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #DDDDDD;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
}
.dual-range-slider .slider input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #DDDDDD;
  box-shadow: none;
  cursor: pointer;
}
.dual-range-slider .slider input[type=range]._hide-slider {
  z-index: 1;
  top: -48px;
  visibility: hidden;
  background-color: #282023;
  pointer-events: none;
}
.dual-range-slider .slider input[type=range]._hide-slider:hover {
  cursor: auto;
}
.dual-range-slider .slider input[type=range]._hide-slider::-webkit-slider-thumb {
  visibility: visible;
  -webkit-transform: translateY(48px);
  transform: translateY(48px);
}
.dual-range-slider .slider input[type=range]._hide-slider::-moz-range-thumb {
  visibility: visible;
  transform: translateY(48px);
}
.dual-range-slider .slider .val-feedback {
  position: absolute;
  top: 24px;
  font-size: 14px;
  color: white;
  padding: 2px 9px;
  background: #282023;
  z-index: 1;
}
.dual-range-slider .slider .val-feedback::before {
  content: "";
  position: absolute;
  top: calc(3px * -1);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-right: 3px solid transparent;
  border-left: 3px solid transparent;
  border-bottom: 3px solid #282023;
  display: inline-block;
}

@media (max-width: 767.98px) {
  .fm-textblock .container-fluid .content-editor, .fm-textblock .container-sm .content-editor, .fm-textblock .container-md .content-editor, .fm-textblock .container-lg .content-editor, .fm-textblock .container-xl .content-editor {
    width: 100%;
  }
}
.fm-textblock .card-image-background .overlay {
  z-index: 3;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.fm-textblock .card-image-background h1, .fm-textblock .card-image-background .h1,
.fm-textblock .card-image-background h2, .fm-textblock .card-image-background .h2,
.fm-textblock .card-image-background h3, .fm-textblock .card-image-background .h3,
.fm-textblock .card-image-background h4, .fm-textblock .card-image-background .h4,
.fm-textblock .card-image-background h5, .fm-textblock .card-image-background .h5,
.fm-textblock .card-image-background h6, .fm-textblock .card-image-background .h6,
.fm-textblock .card-image-background p,
.fm-textblock .card-image-background ul, .fm-textblock .card-image-background li, .fm-textblock .card-image-background ol, .fm-textblock .card-image-background b, .fm-textblock .card-image-background strong, .fm-textblock .card-image-background i, .fm-textblock .card-image-background s, .fm-textblock .card-image-background code {
  color: #fff;
}
.fm-textblock .card-image-background .content-editor h1, .fm-textblock .card-image-background .content-editor .h1,
.fm-textblock .card-image-background .content-editor h2, .fm-textblock .card-image-background .content-editor .h2,
.fm-textblock .card-image-background .content-editor h3, .fm-textblock .card-image-background .content-editor .h3,
.fm-textblock .card-image-background .content-editor h4, .fm-textblock .card-image-background .content-editor .h4,
.fm-textblock .card-image-background .content-editor h5, .fm-textblock .card-image-background .content-editor .h5,
.fm-textblock .card-image-background .content-editor h6, .fm-textblock .card-image-background .content-editor .h6,
.fm-textblock .card-image-background .content-editor p,
.fm-textblock .card-image-background .content-editor b, .fm-textblock .card-image-background .content-editor strong, .fm-textblock .card-image-background .content-editor i, .fm-textblock .card-image-background .content-editor s, .fm-textblock .card-image-background .content-editor code {
  margin: 0;
  color: #fff;
}
.fm-textblock .card-image-background .content-editor ul, .fm-textblock .card-image-background .content-editor li, .fm-textblock .card-image-background .content-editor ol {
  color: #fff;
}
.fm-textblock .card-image-background .gradient {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #00000033), color-stop(80%, #000000cc)) 0% 0% no-repeat padding-box;
  background: linear-gradient(180deg, #00000033 20%, #000000cc 80%) 0% 0% no-repeat padding-box;
  top: unset;
  bottom: 0;
  left: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 2;
}
@media (max-width: 991.98px) {
  .fm-textblock .card-image-background .gradient {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #00000033), color-stop(80%, #000000cc)) 0% 0% no-repeat padding-box;
    background: linear-gradient(180deg, #00000033 20%, #000000cc 80%) 0% 0% no-repeat padding-box;
  }
}
.fm-textblock .card-image-default {
  background-color: transparent;
}
.fm-textblock .card-image-default .content-editor p {
  margin: 0;
}
.fm-textblock .card-ratio-4x3 {
  padding-top: 75%;
  height: 100% !important;
}
.fm-textblock .style-linked-object-accordion .linked-object-accordion-element .linked-object-accordion-heading.collapsed, .fm-textblock .style-linked-object-accordion .linked-object-accordion-element .linked-object-accordion-heading[aria-expanded=false] {
  opacity: 0.5;
}
.fm-textblock .style-linked-object-accordion .linked-object-accordion-element .linked-object-accordion-heading .linked-object-accordion-title {
  font-size: 28px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  cursor: pointer;
  position: relative;
}
.fm-textblock .style-linked-object-accordion .linked-object-accordion-element .linked-object-accordion-heading .icon {
  height: 0;
}
.fm-textblock .style-linked-object-accordion .linked-object-accordion-element .linked-object-accordion-heading i {
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.fm-textblock .style-linked-object-accordion .linked-object-accordion-element .linked-object-accordion-heading:not(.collapsed) i {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.hero-form-a {
  width: 100%;
  max-width: 370px;
  background-color: #fff;
  z-index: 1;
  position: absolute;
  top: 77px;
  right: calc(((100vw - 1140px) / 2) + 7px);
}
.hero-form-a p {
  font-size: 14px;
  color: #000000;
}
@media (max-width: 1199.98px) {
  .hero-form-a {
    right: calc(((100vw - 991px) / 2) + 30px);
  }
}
@media (max-width: 991.98px) {
  .hero-form-a {
    max-width: 688px;
    top: 0px;
    right: 0;
    left: 0;
    position: relative;
  }
}
@media (max-width: 767.98px) {
  .hero-form-a {
    max-width: 510px;
  }
}
@media (max-width: 575.98px) {
  .hero-form-a {
    max-width: calc(100% - 30px);
    position: relative;
  }
}
.hero-form-a .card-footer {
  border-color: #fff !important;
  background-color: #fff;
}

@media (max-width: 991.98px) {
  .block-hero .hero-container {
    padding-left: 20px;
    margin-left: 0px !important;
  }
}
.block-hero .gradient {
  background: -webkit-gradient(linear, right top, left top, color-stop(20%, #00000033), color-stop(80%, #000000cc)) 0% 0% no-repeat padding-box;
  background: linear-gradient(270deg, #00000033 20%, #000000cc 80%) 0% 0% no-repeat padding-box;
  width: 100%;
}
.block-hero .buttons {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  position: relative !important;
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
  padding-right: 85px;
  margin-top: -134px;
}
@media (max-width: 991.98px) {
  .block-hero .buttons {
    padding-right: 40px;
  }
}
@media (max-width: 991.98px) {
  .block-hero .buttons {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    margin-top: 16px;
    padding-right: 0px;
  }
}

.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  position: relative;
  background-position: center;
  background-size: cover;
}

.hero-size-small {
  height: calc(calc(0px + 102px + 0px + 0px) + 250px);
}
@media (max-width: 991.98px) {
  .hero-size-small {
    height: calc(calc(0px + 102px + 0px + 0px) + 150px);
  }
}
.hero-size-small .bg-video-zoom {
  -webkit-transform: scale(4.3);
  transform: scale(4.3);
}
@media (max-width: 767.98px) {
  .hero-size-small .bg-video-zoom {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
  }
}
.hero-size-small .bg-video-zoom-mobile {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.hero-size-medium {
  height: calc(calc(0px + 102px + 0px + 0px) + 350px);
}
@media (max-width: 991.98px) {
  .hero-size-medium {
    height: calc(calc(0px + 102px + 0px + 0px) + 180px);
  }
}
.hero-size-medium .bg-video-zoom {
  -webkit-transform: scale(3.1);
  transform: scale(3.1);
}
@media (max-width: 767.98px) {
  .hero-size-medium .bg-video-zoom {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
.hero-size-medium .bg-video-zoom-mobile {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.hero-size-big {
  height: calc(calc(0px + 102px + 0px + 0px) + 500px);
}
@media (max-width: 991.98px) {
  .hero-size-big {
    height: calc(calc(0px + 102px + 0px + 0px) + 230px);
  }
}
.hero-size-big .bg-video-zoom {
  -webkit-transform: scale(2.2);
  transform: scale(2.2);
}
@media (max-width: 767.98px) {
  .hero-size-big .bg-video-zoom {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
  }
}
.hero-size-big .bg-video-zoom-mobile {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.hero-size-home {
  height: 100vh;
}
@media (max-width: 991.98px) {
  .hero-size-home {
    height: 100vh;
  }
  .hero-size-home .hero-container {
    margin-bottom: 100px;
  }
}
@media (min-width: 992px) {
  .hero-size-home .hero-container {
    margin-bottom: 200px;
  }
}
.hero-size-home .bg-video-zoom {
  -webkit-transform: scale(2.7);
  transform: scale(2.7);
}
@media (max-width: 767.98px) {
  .hero-size-home .bg-video-zoom {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}
.hero-size-home .bg-video-zoom-mobile {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.gradient {
  background: -webkit-gradient(linear, right top, left top, color-stop(20%, #00000033), color-stop(80%, #000000cc)) 0% 0% no-repeat padding-box;
  background: linear-gradient(270deg, #00000033 20%, #000000cc 80%) 0% 0% no-repeat padding-box;
  top: unset;
  bottom: 0;
  left: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 2;
}
@media (max-width: 991.98px) {
  .gradient {
    background: -webkit-gradient(linear, right top, left top, color-stop(20%, #00000033), color-stop(80%, #000000cc)) 0% 0% no-repeat padding-box;
    background: linear-gradient(270deg, #00000033 20%, #000000cc 80%) 0% 0% no-repeat padding-box;
  }
}

.bg-video {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero .hero-container {
  z-index: 3;
}
.hero .hero-container .hero-text, .hero .hero-container .hero-subtitle, .hero .hero-container .hero-title {
  display: block;
  text-decoration: none;
  overflow-wrap: break-word;
}
.hero .hero-container .hero-title {
  font-size: 64px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #fff;
}
@media (max-width: 991.98px) {
  .hero .hero-container .hero-title {
    font-size: 28px;
  }
}
.hero .hero-container .extra-text {
  color: #fff;
  font-size: 16px;
  font-style: italic;
}
.hero .hero-container .hero-subtitle {
  font-size: 36px;
  line-height: 1.2;
  font-family: "Quicksand", sans-serif;
  color: #fff;
}
@media (max-width: 991.98px) {
  .hero .hero-container .hero-subtitle {
    font-size: 24px;
  }
}
.hero .hero-container .hero-text {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #fff;
}
@media (max-width: 991.98px) {
  .hero .hero-container .hero-text {
    font-size: 12px;
  }
}
.hero .hero-container .btn:not(:last-child) {
  margin-right: 1rem;
}
@media (max-width: 767.98px) {
  .hero .hero-container .btn:not(:last-child) {
    margin-bottom: 16px;
  }
  .hero .hero-container .btn:nth-of-type(2) {
    display: none;
  }
}

.container-slider-nav {
  height: 0px;
}
.container-slider-nav .slider-nav {
  display: inline-block;
  position: relative;
  top: -71px;
  z-index: 20;
}
@media (max-width: 991.98px) {
  .container-slider-nav .slider-nav {
    top: -35px;
  }
}
@media (max-width: 991.98px) {
  .container-slider-nav .slider-nav.has-form {
    top: -65px;
    right: calc(-100% + 50px);
  }
}
.container-slider-nav .slider-nav .btn-hero-back-slider,
.container-slider-nav .slider-nav .btn-hero-forward-slider {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #575756;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 22px;
}
.container-slider-nav .slider-nav .btn-hero-back-slider:hover,
.container-slider-nav .slider-nav .btn-hero-forward-slider:hover {
  cursor: pointer;
}
.container-slider-nav .slider-nav i {
  font-size: 14px;
}

.block-hero-footer .hero .hero-container {
  position: relative !important;
  -ms-flex-item-align: center !important;
  -ms-grid-row-align: center !important;
  align-self: center !important;
}
.block-hero-footer .hero .hero-container > div > div {
  width: 100% !important;
}
@media (min-width: 768px) {
  .block-hero-footer .hero .hero-container > div > div {
    width: 58.333333% !important;
  }
}

@media (max-width: 767.98px) {
  .block-history .right {
    display: none !important;
  }
}
.block-history:not(:last-child) .left,
.block-history:not(:last-child) .right {
  margin-bottom: 3rem !important;
}
@media (min-width: 768px) {
  .block-history > div.reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
}
.block-history > div .timeline-border:after {
  border-right: 4px solid #545454;
  content: " ";
  left: 52px;
  position: absolute;
  height: 100%;
}
.block-history > div .timeline-border:before {
  content: " ";
  background: #545454;
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  border: 4px solid #545454;
  left: 54px;
  width: 18px;
  height: 18px;
  z-index: 100;
  top: 10%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.block-kiyoh-stars .kiyoh-star-container .kiyoh-star {
  width: 20px;
}
.block-kiyoh-stars .kiyoh-star-container .kiyoh-star.disabled {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
.block-kiyoh-stars .kiyoh-star-container .kiyoh-star:not(:last-child) {
  margin-right: 5px;
}
.block-kiyoh-stars .kiyoh-star-container.stars-0 .kiyoh-star {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
.block-kiyoh-stars .kiyoh-star-container.stars-1 .kiyoh-star:nth-last-child(-n+4) {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
.block-kiyoh-stars .kiyoh-star-container.stars-2 .kiyoh-star:nth-last-child(-n+3) {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
.block-kiyoh-stars .kiyoh-star-container.stars-3 .kiyoh-star:nth-last-child(-n+2) {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
.block-kiyoh-stars .kiyoh-star-container.stars-4 .kiyoh-star:nth-last-child(-n+1) {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
.block-kiyoh-stars .kiyoh-text {
  font-size: 12px;
}

.block-language-a li {
  border-bottom: none;
}
.block-language-a .language-image {
  opacity: 0.5;
  height: 15px;
  border-radius: 50%;
}
@media (max-width: 991.98px) {
  .block-language-a .language-image {
    height: 25px;
  }
}
@media (max-width: 767.98px) {
  .block-language-a .language-image {
    height: 25px;
  }
}
.block-language-a .selected {
  opacity: 1;
}

.block-language-b i {
  color: #282023;
  font-size: 10px;
}
.block-language-b li {
  border-bottom: none;
}
.block-language-b .nav {
  height: 100%;
  -ms-flex-line-pack: center;
  align-content: center;
}
.block-language-b .dropdown-menu {
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  margin-top: 0px;
  border-radius: 4px;
  border: 1px solid #DDDDDD;
}
.block-language-b .language-image {
  opacity: 0.5;
  height: 14px;
  border-radius: 50%;
}
@media (max-width: 991.98px) {
  .block-language-b .language-image {
    height: 25px;
  }
}
@media (max-width: 767.98px) {
  .block-language-b .language-image {
    height: 25px;
  }
}
.block-language-b .selected {
  opacity: 1;
}

.block-newsletter-a {
  background-color: #fff;
}
.block-newsletter-a > div > div > div .area {
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}
.block-newsletter-a > div > div > div .area-title {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: title;
}
.block-newsletter-a > div > div > div .stroke-title {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #000;
}
@media (max-width: 991.98px) {
  .block-newsletter-a > div > div > div .stroke-title {
    font-size: 13px;
  }
}
.block-newsletter-a > div > div > div .area-newsletter {
  grid-area: newsletter;
}
.block-newsletter-a > div > div > div label {
  font-family: "Quicksand", sans-serif !important;
  line-height: 1.2 !important;
}

.block-notification {
  background-color: #fff;
}
.block-notification .icon p,
.block-notification .content p {
  display: inline;
  margin-bottom: 0;
}
.block-notification button.button-close {
  padding: 0.375rem 1rem !important;
  opacity: 1;
}

.pills-container {
  white-space: nowrap;
  display: -webkit-box;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.pills-container .pill {
  margin-right: 0.5rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  font-weight: bold !important;
  font-size: 13px;
  color: #000000;
  line-height: 1.2;
  font-family: "Quicksand", sans-serif;
  background-color: #F9F9F9;
  border: 1px solid #DDDDDD;
  border-radius: 100px;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  white-space: nowrap;
  outline: none;
  text-decoration: none !important;
}
@media (min-width: 768px) {
  .pills-container .pill {
    margin-right: 1rem !important;
  }
}
.pills-container .pill.selected {
  text-decoration: underline !important;
}

.product-header-a {
  visibility: hidden;
  top: -50px;
  z-index: 64;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.product-header-a.active {
  visibility: visible;
  top: 0px;
}

.block-promotioncode.block-promotioncode-input .btn-promocode-add {
  display: block;
}
.block-promotioncode.block-promotioncode-input .btn-promocode-delete {
  display: none;
}
.block-promotioncode.block-promotioncode-info .btn-promocode-add {
  display: none;
}
.block-promotioncode.block-promotioncode-info .btn-promocode-delete {
  display: block;
}
.block-promotioncode input {
  border-top-right-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
}

.reviews-slider .carousel-reviews .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
  width: calc(100% - 30px) !important;
}
.reviews-slider .carousel-reviews .owl-nav .owl-next, .reviews-slider .carousel-reviews .owl-nav .owl-prev {
  width: 30px;
  height: 30px;
  border: 1px solid #282023;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  background-color: #282023;
  color: #fff;
  position: relative;
  top: 0;
}
.reviews-slider .carousel-reviews .owl-nav .owl-next.disabled, .reviews-slider .carousel-reviews .owl-nav .owl-prev.disabled {
  background-color: #fff !important;
  color: #282023 !important;
}
.reviews-slider .carousel-reviews .owl-nav .owl-next > span, .reviews-slider .carousel-reviews .owl-nav .owl-prev > span {
  font-size: 30px;
  position: relative;
  top: -6px;
}
.reviews-slider .carousel-reviews .owl-nav .owl-next {
  left: 45px;
}
.reviews-slider .carousel-reviews .owl-nav .owl-prev {
  left: -45px;
}
.reviews-slider .carousel-reviews .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 1.5rem;
  gap: 4px;
}
.reviews-slider .carousel-reviews .owl-dots .owl-dot {
  background-color: #282023;
  border: 2px solid #282023;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.reviews-slider .carousel-reviews .owl-dots .owl-dot.active {
  background-color: transparent;
}

.reviews-total .stars {
  white-space: nowrap;
}
.reviews-total.footer-sizes {
  font-size: 20px;
}
@media (max-width: 1199.98px) {
  .reviews-total.footer-sizes {
    font-size: 16px;
  }
}
.reviews-total .review-text a {
  color: white;
  text-decoration: underline;
}
.reviews-total .golden-star {
  color: #282023;
}
.reviews-total .big-star {
  font-size: 22px;
}
@media (max-width: 1199.98px) {
  .reviews-total .big-star {
    font-size: 20px;
  }
}
.reviews-total .size-12 {
  font-size: 12px;
}
.reviews-total .size-14 {
  font-size: 14px;
}
.reviews-total .size-16 {
  font-size: 16px;
}
.reviews-total.line-height-12, .reviews-total .line-height-12 {
  line-height: 12px;
}
.reviews-total.line-height-14, .reviews-total .line-height-14 {
  line-height: 14px;
}

.block-sample-package {
  background-color: #545454;
}
.block-sample-package .title {
  line-height: 24px;
  color: #545454;
}
.block-sample-package .text {
  line-height: 24px;
  color: #545454;
}
.block-sample-package .text a {
  text-decoration: underline;
}

.block-sample-package-product-overview {
  margin-top: 1.5rem !important;
}

.block-sidebar > .title {
  text-align: left;
}
.block-sidebar img {
  border-radius: 0.25rem !important;
  width: 50px;
  height: 50px;
}
.block-sidebar .item > div:nth-child(2) {
  text-align: left;
}
.block-sidebar .item .title, .block-sidebar .item .text {
  font-size: 16px;
  line-height: 16px !important;
}

.block-slogan .square {
  letter-spacing: -68px !important;
  font-size: 500px !important;
  z-index: 0 !important;
}
.block-slogan .slogan {
  color: #EBEBEB;
  font-size: 150px;
  font-weight: 900;
  line-height: 0;
  z-index: 2;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  text-transform: uppercase;
}
.block-slogan .slogan.right, .block-slogan .slogan.left {
  position: absolute;
  display: none;
  font-size: 96px;
  top: 50px;
}
.block-slogan .slogan.right {
  right: calc(((100vw - 1420px) / 2) * -1);
  padding-right: 10px;
  z-index: 0;
}
@media (min-width: 768px) {
  .block-slogan .slogan.right {
    right: calc(((100vw - 768px) / 2) * -1);
    display: block;
  }
}
@media (min-width: 992px) {
  .block-slogan .slogan.right {
    right: calc(((100vw - 977px) / 2) * -1);
    display: block;
  }
}
@media (min-width: 1200px) {
  .block-slogan .slogan.right {
    right: calc(((100vw - 1140px) / 2) * -1);
    display: block;
    font-size: 160px;
  }
}
.block-slogan .slogan.left {
  left: calc(((100vw - 1420px) / 2) * -1);
  padding-left: 10px;
}
@media (min-width: 768px) {
  .block-slogan .slogan.left {
    left: calc(((100vw - 768px) / 2) * -1);
    display: block;
  }
}
@media (min-width: 992px) {
  .block-slogan .slogan.left {
    left: calc(((100vw - 977px) / 2) * -1);
    display: block;
  }
}
@media (min-width: 1200px) {
  .block-slogan .slogan.left {
    left: calc(((100vw - 1140px) / 2) * -1);
    display: block;
    font-size: 160px;
  }
}
.block-slogan.textblock .slogan {
  padding-top: 3rem !important;
}

.block-social-follow-specific > div a {
  border: 1px solid #DDDDDD;
  height: 25px;
  width: 25px;
  line-height: 21px;
  color: #282023;
}
.block-social-follow-specific > div a i {
  font-size: 12px;
}
.block-social-follow-specific > div a:hover {
  color: #fff;
  border: 1px solid #282023;
  background-color: #282023;
}
.block-social-follow-specific.footer h6 {
  display: none !important;
}
.block-social-follow-specific.contact {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: start !important;
}
.block-social-follow-specific.contact h6 {
  margin-bottom: 0.25rem;
  padding-right: 15px !important;
  font-size: 14px;
}

.block-social-follow > div a {
  border-radius: 4px;
  border: 1px solid #DDDDDD;
  height: 30px;
  width: 30px;
  line-height: 28px;
  color: #fff;
}
.block-social-follow > div a i {
  font-size: 18px;
  color: #7B5A51;
}
@media (max-width: 991.98px) {
  .block-social-follow > div a {
    height: 20px;
    width: 20px;
    line-height: 18px;
  }
  .block-social-follow > div a i {
    font-size: 13px;
  }
}
.block-social-follow > div a:hover {
  color: #7B5A51;
  border: 1px solid #fff;
  background-color: #fff;
}
.block-social-follow.footer h6 {
  display: none;
}
.block-social-follow.contact {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: start !important;
}
.block-social-follow.contact div > a {
  color: #7B5A51;
}
.block-social-follow.contact div > a:hover {
  background-color: #7B5A51;
}
.block-social-follow.contact div > a:hover i {
  color: #fff;
}

.block-social-share-a .socialmedia {
  width: 25px;
  height: 25px;
  line-height: 25px;
  font-size: 12px;
  color: #fff;
  cursor: pointer;
}
.block-social-share-a .socialmedia:hover {
  background-color: #282023;
  border: 1px solid #282023 !important;
}
.block-social-share-a .socialmedia:hover i {
  color: #fff;
}
.block-social-share-a .socialmedia i {
  color: #282023;
}

.block-social-share-b .socialmedia {
  width: 25px;
  height: 25px;
  line-height: 25px;
  font-size: 12px;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}
.block-social-share-b .socialmedia i {
  color: #fff;
}
.block-social-share-b .socialmedia.socialmedia-twitter {
  background: #7B5A51;
  border: 1px solid #7B5A51;
}
.block-social-share-b .socialmedia.socialmedia-twitter:hover {
  background: #644942;
  border-color: #644942;
}
.block-social-share-b .socialmedia.socialmedia-facebook {
  background: #7B5A51;
  border: 1px solid #7B5A51;
}
.block-social-share-b .socialmedia.socialmedia-facebook:hover {
  background: #644942;
  border-color: #644942;
}
.block-social-share-b .socialmedia.socialmedia-linkedin {
  background: #7B5A51;
  border: 1px solid #7B5A51;
}
.block-social-share-b .socialmedia.socialmedia-linkedin:hover {
  background: #644942;
  border-color: #644942;
}
.block-social-share-b .socialmedia.socialmedia-pinterest {
  background: #7B5A51;
  border: 1px solid #7B5A51;
}
.block-social-share-b .socialmedia.socialmedia-pinterest:hover {
  background: #644942;
  border-color: #644942;
}
.block-social-share-b .socialmedia.socialmedia-youtube {
  background: #7B5A51;
  border: 1px solid #7B5A51;
}
.block-social-share-b .socialmedia.socialmedia-youtube:hover {
  background: #644942;
  border-color: #644942;
}
.block-social-share-b .socialmedia.socialmedia-blogger {
  background: #7B5A51;
  border: 1px solid #7B5A51;
}
.block-social-share-b .socialmedia.socialmedia-blogger:hover {
  background: #644942;
  border-color: #644942;
}

.block-textblock img,
.block-textblock-modular img {
  border-radius: 0.375rem !important;
  border: 1px solid #dee2e6 !important;
}
.block-textblock .margin-spacer-2,
.block-textblock-modular .margin-spacer-2 {
  margin-bottom: 1rem !important;
}
.block-textblock .margin-spacer-3,
.block-textblock-modular .margin-spacer-3 {
  margin-bottom: 1rem !important;
}
.block-textblock .margin-spacer-4,
.block-textblock-modular .margin-spacer-4 {
  margin-bottom: 0.5rem !important;
}
@media (min-width: 768px) {
  .block-textblock .margin-spacer-4,
.block-textblock-modular .margin-spacer-4 {
    margin-bottom: 1.5rem !important;
  }
}
.block-textblock .gap-spacer-2,
.block-textblock-modular .gap-spacer-2 {
  gap: 0.5rem !important;
}
.block-textblock .gap-spacer-3,
.block-textblock-modular .gap-spacer-3 {
  margin-left: 0 !important;
  margin-right: 0 !important;
  gap: 1rem !important;
}
.block-textblock p,
.block-textblock-modular p {
  margin-bottom: 0 !important;
}
.block-textblock p:not(:last-child),
.block-textblock-modular p:not(:last-child) {
  margin-bottom: 0.5rem !important;
}

.block-tilecalculator {
  background-color: #545454;
  position: relative;
}
.block-tilecalculator h2 {
  line-height: 24px;
}
.block-tilecalculator .text {
  font-size: 16px;
  line-height: 22px !important;
  font-weight: 300;
}
.block-tilecalculator h2,
.block-tilecalculator .text {
  color: #545454;
}
.block-tilecalculator input::-webkit-input-placeholder {
  font-size: 16px !important;
}
.block-tilecalculator input::-moz-placeholder {
  font-size: 16px !important;
}
.block-tilecalculator input:-ms-input-placeholder {
  font-size: 16px !important;
}
.block-tilecalculator input::-ms-input-placeholder {
  font-size: 16px !important;
}
.block-tilecalculator input,
.block-tilecalculator input::placeholder {
  font-size: 16px !important;
}
.block-tilecalculator button {
  height: 33px;
  line-height: 40px;
}
.block-tilecalculator button i {
  font-size: 16px;
}
.block-tilecalculator .icon {
  background-color: #545454;
  font-size: 16px;
  color: #545454;
  cursor: pointer;
}

.block-usp-a .icon {
  color: #fff;
  background-color: #375D8E;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  text-align: -webkit-right;
}
.block-usp-a .icon i {
  margin: auto;
  width: 20px;
  height: 14px;
  text-align: center;
  position: relative;
}
@media (max-width: 991.98px) {
  .block-usp-a .icon {
    height: 30px;
    width: 30px;
  }
  .block-usp-a .icon i {
    font-size: 15px;
    text-align: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
}
.block-usp-a .unique-selling-point {
  font-size: 32px;
  font-weight: 800 !important;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .block-usp-a .unique-selling-point {
    font-size: 26px;
  }
}
.block-usp-a img {
  margin: auto;
  width: unset !important;
  height: 25px;
}
@media (max-width: 991.98px) {
  .block-usp-a img {
    height: 20px;
  }
}

.block-usp:not(.block-usp-product) {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.block-usp .icon {
  margin-right: 0.5rem !important;
  color: #2DAC00;
}
.block-usp .unique-selling-point {
  font-family: "Quicksand", sans-serif;
  line-height: 1.2;
  font-size: 14px;
  color: #696969;
}
.block-usp img {
  margin-right: 0.5rem;
  width: unset !important;
  height: 20px;
}

.block-usp-product {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.block-webwinkelkeur-stars .webwinkelkeur-star-container .webwinkelkeur-star {
  width: 20px;
}
.block-webwinkelkeur-stars .webwinkelkeur-star-container .webwinkelkeur-star.disabled {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
.block-webwinkelkeur-stars .webwinkelkeur-star-container .webwinkelkeur-star:not(:last-child) {
  margin-right: 5px;
}
.block-webwinkelkeur-stars .webwinkelkeur-star-container.stars-0 .webwinkelkeur-star {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
.block-webwinkelkeur-stars .webwinkelkeur-star-container.stars-1 .webwinkelkeur-star:nth-last-child(-n+4) {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
.block-webwinkelkeur-stars .webwinkelkeur-star-container.stars-2 .webwinkelkeur-star:nth-last-child(-n+3) {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
.block-webwinkelkeur-stars .webwinkelkeur-star-container.stars-3 .webwinkelkeur-star:nth-last-child(-n+2) {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
.block-webwinkelkeur-stars .webwinkelkeur-star-container.stars-4 .webwinkelkeur-star:nth-last-child(-n+1) {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
.block-webwinkelkeur-stars .webwinkelkeur-text {
  font-size: 12px;
}

.block-widget-a .title {
  color: #131826;
  background-color: #fff;
  font-size: 18px;
  font-family: "Roboto", sans-serif !important;
}
.block-widget-a .content {
  font-size: 14px;
  line-height: 25px;
}
.block-widget-a .image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.block-widget-a.default {
  background: #ffffff !important;
}
.block-widget-a .star {
  width: 10px !important;
  height: 10px !important;
  display: inline-block !important;
}

.block-widget-b .title {
  padding: 16px;
  color: #ffffff;
  font-size: 18px;
  font-family: "Roboto", sans-serif !important;
}
@media (max-width: 1199.98px) {
  .block-widget-b .title {
    font-size: 16px;
  }
}
.block-widget-b .content {
  color: #696969;
  font-size: 14px;
  font-family: "Quicksand", sans-serif !important;
  line-height: "Quicksand", sans-serif !important;
}
@media (max-width: 1199.98px) {
  .block-widget-b .content {
    font-size: 12px;
  }
}
.block-widget-b .image .image-block {
  width: 130px;
  height: 130px;
  overflow: hidden;
  border: 1px solid #DDDDDD;
}
@media (max-width: 1199.98px) {
  .block-widget-b .image .image-block {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 991.98px) {
  .block-widget-b .image .image-block {
    width: 111px;
    height: 111px;
  }
}
.block-widget-b .image .image-block img {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: calc(100% + 4px);
}
.block-widget-b.default {
  background: #ffffff !important;
}

.block-widget-c .title {
  padding: 16px;
  color: #131826;
  background-color: #fff;
  font-size: 18px;
  font-family: "Roboto", sans-serif !important;
}
.block-widget-c .content {
  font-size: 14px;
  line-height: 25px;
}
.block-widget-c .image .image-block {
  width: 130px;
  height: 130px;
  overflow: hidden;
  border: 1px solid #DDDDDD;
}
@media (max-width: 1199.98px) {
  .block-widget-c .image .image-block {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 991.98px) {
  .block-widget-c .image .image-block {
    width: 111px;
    height: 111px;
  }
}
.block-widget-c .image .image-block img {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: calc(100% + 4px);
}
.block-widget-c.default {
  background: #ffffff !important;
}

.block-widget-hero {
  background-color: #7B5A51;
  max-width: 370px;
  width: 100%;
  z-index: 1;
  position: absolute;
  top: 47px;
  right: calc(((100vw - 1140px) / 2) + 7px);
}
@media (max-width: 1199.98px) {
  .block-widget-hero {
    max-width: 250px;
    right: calc(((100vw - 953px) / 2) + 30px);
    top: 28px;
  }
}
@media (max-width: 991.98px) {
  .block-widget-hero {
    right: calc(((100vw - 752px) / 2) + 30px);
    top: 80px;
  }
}
@media (max-width: 767.98px) {
  .block-widget-hero {
    top: 0px;
    right: 0;
    left: 15px;
    position: relative;
    max-width: calc(100% - 30px);
    margin-bottom: 50px;
  }
}
.block-widget-hero .title {
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 1199.98px) {
  .block-widget-hero .title {
    font-size: 13px;
  }
}
.block-widget-hero .content .text {
  color: #fff;
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
}
@media (max-width: 1199.98px) {
  .block-widget-hero .content .text {
    font-size: 12px;
  }
}
.block-widget-hero .content .border {
  border: 3px solid #282023 !important;
  background-color: #282023;
}
.block-widget-hero .bottom {
  margin-top: 110px;
}
@media (max-width: 1199.98px) {
  .block-widget-hero .bottom {
    margin-top: 16px;
  }
}
.block-widget-hero .bottom a:not(:last-child) {
  margin-bottom: 0.5rem;
}
@media (min-width: 992px) {
  .block-widget-hero .bottom a:not(:last-child) {
    margin-bottom: 1rem;
  }
}

/*
    Search bar container Default styling. Used in:
    - Header X
    - page not found.

    Templates:
    - search_a.php
    - search_b.php

    This css uses variables from header_x.scss
    Make sure that you import this file after section/*
    See: src/scss/style.scss.
*/
.search-bar-container.floating-search {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: calc(100% - 30px) !important;
  z-index: 1;
}
.search-bar-container.floating-search .search-bar-input {
  position: relative;
  left: 100%;
  -webkit-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out;
}
.search-bar-container.floating-search.active .search-bar-input {
  left: 0%;
}
.search-bar-container .search-bar {
  position: relative;
  z-index: 58;
}
.search-bar-container .search-bar .search-bar-input_b {
  position: absolute;
  border-color: #DDDDDD;
  overflow: hidden;
  opacity: 100%;
  -webkit-transition: 500ms ease-in-out;
  transition: 500ms ease-in-out;
  right: 0;
}
.search-bar-container .search-bar .search-bar-input_b.hidden {
  width: 0 !important;
  right: 3px !important;
  opacity: 0;
}
.search-bar-container .search-bar .search-bar-input,
.search-bar-container .search-bar .search-bar-button {
  border-color: #DDDDDD;
}
.search-bar-container .search-bar .search-bar-button {
  color: #000000;
}
.search-bar-container .search-results {
  position: absolute;
  top: calc(100% - 15px);
  z-index: 57;
  width: calc(100% - 30px);
  min-height: 64px;
  max-height: 400px;
  background-color: #fff;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  overflow-x: auto;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.search-bar-container .search-results.open {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
.search-bar-container .search-results .search-button-container {
  bottom: 0px;
}
.search-bar-container .search-results_b {
  right: 0;
}
.search-bar-container .search-title {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  line-height: 1.8;
  color: #000;
  font-weight: bold;
}
@media (max-width: 991.98px) {
  .search-bar-container .search-title {
    font-size: 13px;
  }
}
.search-bar-container .search-item {
  font-size: 14px;
  font-family: "Quicksand", sans-serif;
  line-height: 1.8;
  color: #000000;
}
@media (max-width: 991.98px) {
  .search-bar-container .search-item {
    font-size: 13px;
  }
}
.search-bar-container .search-image {
  width: 50px;
}
.search-bar-container .search-results-list,
.search-bar-container .search-button-container {
  visibility: hidden;
  opacity: 0;
}
.search-bar-container .search-results-list:not(.open),
.search-bar-container .search-button-container:not(.open) {
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  display: none !important;
}
.search-bar-container .search-results-list.open,
.search-bar-container .search-button-container.open {
  visibility: visible;
  opacity: 1;
}
.search-bar-container .search-results-loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1;
  visibility: hidden;
  opacity: 0;
}
.search-bar-container .search-results-loader.open {
  visibility: visible;
  opacity: 1;
}

.carousel-overflow-none .owl-stage-outer {
  overflow: unset !important;
  position: relative;
}
.carousel-overflow-none.overflow-left .owl-stage-outer::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1;
}
.carousel-overflow-none.overflow-right .owl-stage-outer::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1;
}

.carousel-gradient::before, .carousel-gradient::after {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}
@media (min-width: 992px) {
  .carousel-gradient::before {
    content: "";
    position: absolute;
    right: 100%;
    width: 100vw;
    z-index: 1;
  }
  .carousel-gradient::after {
    content: "";
    position: absolute;
    left: 100%;
    width: 100vw;
    z-index: 1;
  }
}

.owl-fm-theme-a .owl-nav,
[data-style=owl-fm-theme-a] .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 3;
  width: 100% !important;
  pointer-events: none;
}
.owl-fm-theme-a .owl-nav .owl-next,
.owl-fm-theme-a .owl-nav .owl-prev,
[data-style=owl-fm-theme-a] .owl-nav .owl-next,
[data-style=owl-fm-theme-a] .owl-nav .owl-prev {
  width: 30px;
  height: 30px;
  border: 1px solid #282023 !important;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  background-color: #282023 !important;
  color: #fff !important;
  position: relative;
  top: 0;
  pointer-events: all;
}
.owl-fm-theme-a .owl-nav .owl-next.disabled,
.owl-fm-theme-a .owl-nav .owl-prev.disabled,
[data-style=owl-fm-theme-a] .owl-nav .owl-next.disabled,
[data-style=owl-fm-theme-a] .owl-nav .owl-prev.disabled {
  background-color: #fff !important;
  color: #282023 !important;
}
.owl-fm-theme-a .owl-nav .owl-next > span,
.owl-fm-theme-a .owl-nav .owl-prev > span,
[data-style=owl-fm-theme-a] .owl-nav .owl-next > span,
[data-style=owl-fm-theme-a] .owl-nav .owl-prev > span {
  font-size: 30px;
  position: relative;
}
.owl-fm-theme-a .owl-nav .owl-next,
[data-style=owl-fm-theme-a] .owl-nav .owl-next {
  left: 45px;
}
.owl-fm-theme-a .owl-nav .owl-prev,
[data-style=owl-fm-theme-a] .owl-nav .owl-prev {
  left: -45px;
}
.owl-fm-theme-a .owl-dots,
[data-style=owl-fm-theme-a] .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 1.5rem;
  gap: 4px;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}
.owl-fm-theme-a .owl-dots .owl-dot,
[data-style=owl-fm-theme-a] .owl-dots .owl-dot {
  background-color: #282023;
  border: 2px solid #282023;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.owl-fm-theme-a .owl-dots .owl-dot.active,
[data-style=owl-fm-theme-a] .owl-dots .owl-dot.active {
  background-color: transparent;
}
.owl-fm-theme-a[data-slides-desktop="1"] img,
[data-style=owl-fm-theme-a][data-slides-desktop="1"] img {
  max-height: 600px;
}
.owl-fm-theme-a[data-slides-desktop="1"] .owl-item:not(.active),
[data-style=owl-fm-theme-a][data-slides-desktop="1"] .owl-item:not(.active) {
  opacity: 0.5;
}

#page.account .page-aside {
  text-align: left !important;
}
#page.account .page-aside ul li.active, #page.account .page-aside ul li:hover {
  cursor: pointer;
}
#page.account .page-aside ul li.active a, #page.account .page-aside ul li:hover a {
  color: #282023 !important;
  text-decoration: underline;
}
#page.account .panel-orders .panel-body {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
#page.account .panel-orders .list-item {
  width: -webkit-fill-available;
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: 16.6666666667% 0 20% 0 auto 0 16.6666666667% 0 16.6666666667%;
  grid-template-columns: 16.6666666667% 20% auto 16.6666666667% 16.6666666667%;
  gap: 0;
  grid-template-areas: "id date status price action";
}
#page.account .panel-orders .area {
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}
#page.account .panel-orders .area-id {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: id;
}
#page.account .panel-orders .area-date {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: date;
}
#page.account .panel-orders .area-status {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
  grid-area: status;
}
#page.account .panel-orders .area-price {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
  grid-area: price;
  text-align: right;
}
#page.account .panel-orders .area-action {
  -ms-grid-row: 1;
  -ms-grid-column: 9;
  grid-area: action;
  text-align: right;
}
#page.account .panel-orders .area-action i {
  color: #7B5A51;
}
@media (max-width: 991.98px) {
  #page.account .panel-orders .list-item {
    position: relative;
    width: -webkit-fill-available;
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 50% 50%;
    grid-template-areas: "id action" "date action" "status action" "price action";
  }
  #page.account .panel-orders .area-price {
    text-align: left;
  }
  #page.account .panel-orders .area-id {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  #page.account .panel-orders .area-date {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  #page.account .panel-orders .area-status {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  #page.account .panel-orders .area-price {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
  }
  #page.account .panel-orders .area-action {
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    -ms-grid-column: 2;
  }
}
#page.account .card-title {
  font-size: 32px;
  font-weight: bold !important;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  #page.account .card-title {
    font-size: 26px;
  }
}
#page.account .header-title {
  font-size: 32px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
  font-weight: bold !important;
}
@media (max-width: 991.98px) {
  #page.account .header-title {
    font-size: 26px;
  }
}
#page.account .card-text {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  #page.account .card-text {
    font-size: 12px;
  }
}
#page.account .panel-orderdetail .panel-body {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
#page.account .panel-orderdetail .list-item {
  width: -webkit-fill-available;
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: 16.6666666667% 0 auto 0 16.6666666667% 0 16.6666666667%;
  grid-template-columns: 16.6666666667% auto 16.6666666667% 16.6666666667%;
  gap: 0;
  -ms-grid-rows: auto 0 auto;
  grid-template-areas: "image title quantity price" "image text quantity price";
}
@media (max-width: 991.98px) {
  #page.account .panel-orderdetail .list-item {
    position: relative;
    width: -webkit-fill-available;
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 50% 50%;
    grid-template-areas: "title title" "image text" "image quantity" "image price";
  }
  #page.account .panel-orderdetail .area-title,
#page.account .panel-orderdetail .area-price,
#page.account .panel-orderdetail .area-text {
    text-align: left;
  }
  #page.account .panel-orderdetail .area-title,
#page.account .panel-orderdetail .area-price {
    font-weight: bold;
  }
  #page.account .panel-orderdetail .list-item > .area-price {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
}
#page.account .panel-orderdetail .area {
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}
#page.account .panel-orderdetail .area-image {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  grid-area: image;
  -ms-grid-row-align: center;
  align-self: center;
}
#page.account .panel-orderdetail .area-image a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
#page.account .panel-orderdetail .area-title {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: title;
}
#page.account .panel-orderdetail .area-text {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  grid-area: text;
}
#page.account .panel-orderdetail .area-quantity {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 5;
  grid-area: quantity;
  -ms-grid-row-align: center;
  align-self: center;
}
#page.account .panel-orderdetail .area-price {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
  grid-area: price;
  -ms-grid-row-align: center;
  align-self: center;
  text-align: right;
}
#page.account .panel-order-info .panel-header h2 {
  margin-bottom: 0;
}

#page.branches .page-aside {
  display: initial;
  text-align: left;
}
#page.branches .horizontal-line {
  border-style: solid;
}
#page.branches .search-block {
  border-bottom: 1px solid #DDDDDD;
}
#page.branches .search-block .btn-product-search:hover {
  cursor: pointer;
}
#page.branches .btn-open-read-more {
  text-transform: none !important;
  text-decoration: underline !important;
}
#page.branches .filters-controls,
#page.branches .filter-results {
  display: none;
}
#page.branches .filters-controls .menu-title,
#page.branches .filter-results .menu-title {
  font-weight: 800;
  font-size: 16px;
  color: #000;
  font-family: "Roboto", sans-serif;
  line-height: 1.2;
}
#page.branches .btn-filters-reset {
  text-decoration: underline !important;
}

@media (max-width: 991.98px) {
  body.filters-mobile-open {
    overflow: hidden;
  }
  body.filters-mobile-open #page.branches .page-aside {
    left: 0px !important;
    height: calc(100vh);
    max-width: calc(100% - 4.8rem);
  }
  body.filters-mobile-open #page.branches .menu-title {
    font-weight: bold;
    font-size: 16px;
    font-size: #000;
  }
  body.filters-mobile-open #page.branches .mobile {
    height: calc(100vh - 133px);
    overflow-y: auto;
    overflow-x: hidden;
  }
  body.filters-mobile-open #page.branches .filters-controls,
body.filters-mobile-open #page.branches .filter-results {
    height: 50px;
    left: 0px;
    right: 0px;
  }
  body.filters-mobile-open #page.branches .filters-controls {
    height: 41px !important;
    line-height: 41px !important;
    background-color: #F9F9F9;
    display: block !important;
  }
  body.filters-mobile-open #page.branches .filters-controls > div > div:first-child {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    vertical-align: middle;
  }
  body.filters-mobile-open #page.branches .filters-controls > div > div:last-child {
    text-align: right;
  }
  body.filters-mobile-open #page.branches .filters-controls .menu-title {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    color: #000;
    font-weight: 700;
  }
  body.filters-mobile-open #page.branches .filters-controls .btn-close-filter {
    color: #575756;
    font-size: 15px;
  }
  body.filters-mobile-open #page.branches .categories {
    cursor: pointer !important;
    padding-bottom: 15px;
    padding-top: 15px;
    border-bottom: 1px solid #DDDDDD;
  }
  body.filters-mobile-open #page.branches .categories ul {
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 0px;
  }
  body.filters-mobile-open #page.branches .categories ul li {
    padding-left: 15px;
  }
  body.filters-mobile-open #page.branches .categories ul li li {
    padding-left: 60px !important;
  }
  body.filters-mobile-open #page.branches .categories ul li li li {
    padding-left: 90px !important;
  }
  body.filters-mobile-open #page.branches .categories ul ul {
    margin-left: -30px !important;
  }
  body.filters-mobile-open #page.branches .categories ul ul ul {
    margin-left: -45px !important;
  }
  body.filters-mobile-open #page.branches .filters {
    margin-top: 0px !important;
  }
  body.filters-mobile-open #page.branches .filters .group {
    margin-top: 1rem !important;
    padding-bottom: 15px;
    border-bottom: 1px solid #DDDDDD;
  }
  body.filters-mobile-open #page.branches .filter-block {
    padding: 0 14px;
  }
  body.filters-mobile-open #page.branches .filter-block .filter-header {
    padding: 12px 0;
  }
  body.filters-mobile-open #page.branches .filter-buttons {
    bottom: 0px;
    width: 100%;
    background: #fff;
    z-index: 51;
    padding-bottom: 20px;
    position: sticky !important;
  }
  body.filters-mobile-open-after .block-sample-package,
body.filters-mobile-open-after .downloads {
    display: none !important;
  }
  body #page.branches .page-aside {
    -webkit-transition: left 0.5s ease-out;
    transition: left 0.5s ease-out;
    left: -100%;
    width: 100%;
    top: 0px;
    bottom: 0px;
    position: fixed;
    z-index: 9999;
    margin-top: 0px;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  body #page.branches .filter-results,
body #page.branches .page-aside,
body #page.branches .mobile {
    display: block !important;
    background: #fff !important;
  }
}
#page.branches-specific .info-text-card table {
  border: 1px solid transparent;
  font-size: 13px !important;
}
#page.branches-specific .info-text-card table td {
  vertical-align: top;
}
#page.branches-specific .mobile-register {
  position: fixed;
  bottom: 0px;
  width: 100%;
  background-color: #fff;
  z-index: 100;
}

@media (min-width: 576px) and (max-width: 767.98px) {
  #page.building-blocks-playground .stairs-sm-2 [class*=col-]:nth-child(2n+1) {
    top: -15px;
  }
  #page.building-blocks-playground .stairs-sm-2 [class*=col-]:nth-child(2n) {
    top: 0px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  #page.building-blocks-playground .stairs-md-2 [class*=col-]:nth-child(2n+1) {
    top: -15px;
  }
  #page.building-blocks-playground .stairs-md-2 [class*=col-]:nth-child(2n) {
    top: 0px;
  }
}
@media (min-width: 992px) {
  #page.building-blocks-playground .stairs-lg-2 [class*=col-]:nth-child(2n+1) {
    top: -15px;
  }
  #page.building-blocks-playground .stairs-lg-2 [class*=col-]:nth-child(2n) {
    top: 0px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  #page.building-blocks-playground .stairs-sm-3 [class*=col-]:nth-child(3n+1) {
    top: -15px;
  }
  #page.building-blocks-playground .stairs-sm-3 [class*=col-]:nth-child(3n) {
    top: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  #page.building-blocks-playground .stairs-md-3 [class*=col-]:nth-child(3n+1) {
    top: -15px;
  }
  #page.building-blocks-playground .stairs-md-3 [class*=col-]:nth-child(3n) {
    top: 15px;
  }
}
@media (min-width: 992px) {
  #page.building-blocks-playground .stairs-lg-3 [class*=col-]:nth-child(3n+1) {
    top: -15px;
  }
  #page.building-blocks-playground .stairs-lg-3 [class*=col-]:nth-child(3n) {
    top: 15px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  #page.building-blocks-playground .stairs-sm-4 [class*=col-]:nth-child(4n+1) {
    top: -15px;
  }
  #page.building-blocks-playground .stairs-sm-4 [class*=col-]:nth-child(4n+2) {
    top: 0px;
  }
  #page.building-blocks-playground .stairs-sm-4 [class*=col-]:nth-child(4n+3) {
    top: 15px;
  }
  #page.building-blocks-playground .stairs-sm-4 [class*=col-]:nth-child(4n) {
    top: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  #page.building-blocks-playground .stairs-md-4 [class*=col-]:nth-child(4n+1) {
    top: -15px;
  }
  #page.building-blocks-playground .stairs-md-4 [class*=col-]:nth-child(4n+2) {
    top: 0px;
  }
  #page.building-blocks-playground .stairs-md-4 [class*=col-]:nth-child(4n+3) {
    top: 15px;
  }
  #page.building-blocks-playground .stairs-md-4 [class*=col-]:nth-child(4n) {
    top: 30px;
  }
}
@media (min-width: 992px) {
  #page.building-blocks-playground .stairs-lg-4 [class*=col-]:nth-child(4n+1) {
    top: -15px;
  }
  #page.building-blocks-playground .stairs-lg-4 [class*=col-]:nth-child(4n+2) {
    top: 0px;
  }
  #page.building-blocks-playground .stairs-lg-4 [class*=col-]:nth-child(4n+3) {
    top: 15px;
  }
  #page.building-blocks-playground .stairs-lg-4 [class*=col-]:nth-child(4n) {
    top: 30px;
  }
}

#page.building-blocks,
#page.building-blocks-cards,
#page.building-blocks-headers,
#page.building-blocks-blocks,
#page.building-blocks-footers {
  padding-top: 0px;
  background-color: #f1f1f1;
}
#page.building-blocks .card,
#page.building-blocks-cards .card,
#page.building-blocks-headers .card,
#page.building-blocks-blocks .card,
#page.building-blocks-footers .card {
  height: unset !important;
}

#page.building-blocks-headers {
  height: 150vh;
}

#page.building-blocks-footers {
  height: 150vh;
}
#page.building-blocks-footers *[class^=footer-] {
  background: #fff;
}

#page.cases-specific {
  padding-bottom: 0px !important;
}
#page.cases-specific .page-content .author {
  color: #000;
  font-size: 20px;
  line-height: 32px;
  font-family: "Quicksand", sans-serif;
}
#page.cases-specific .page-content .publisher,
#page.cases-specific .page-content .job-description {
  line-height: 32px;
}

#page.checkout .page-aside {
  text-align: left !important;
}
#page.checkout .card-head {
  font-size: 18px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  #page.checkout .card-head {
    font-size: 16px;
  }
}
#page.checkout .card-title {
  font-size: 32px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  #page.checkout .card-title {
    font-size: 26px;
  }
}
#page.checkout .card-text {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  #page.checkout .card-text {
    font-size: 12px;
  }
}
#page.checkout .payment-icon {
  border-radius: 4px;
  width: 55px;
}
@media (max-width: 767.98px) {
  #page.checkout .checkout-contact {
    display: inline-block;
    width: 48%;
  }
}
#page.checkout .shopping-overview .cart-item {
  border-bottom: 1px solid #DDDDDD;
}
#page.checkout .shopping-overview .line {
  border-top: 1px solid #DDDDDD;
}
#page.checkout .salution label {
  font-weight: normal !important;
}
#page.checkout .webwinkelkeurPopup img {
  width: 100%;
}
#page.checkout .modal .modal-title {
  font-weight: bold;
  font-size: 32px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  #page.checkout .modal .modal-title {
    font-size: 26px;
  }
}

#page.contact .map {
  height: 400px;
}
@media (max-width: 991.98px) {
  #page.contact .map {
    height: 200px;
  }
}
#page.contact .card-header {
  padding: 1.15rem 1.15rem;
  font-family: "Roboto", sans-serif;
}
#page.contact .card-body label::after {
  color: #fff;
}

#page.customerservice .page-aside {
  text-align: left !important;
  display: none;
}
#page.customerservice .menu li {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
#page.customerservice .menu li:not(:first-child) {
  border-top: 1px solid #DDDDDD;
}
#page.customerservice .menu li a {
  font-weight: bold;
  font-size: 16px;
  line-height: 32px;
}
#page.customerservice .menu li a:hover {
  text-decoration: none;
}
#page.customerservice .menu li a.active {
  color: #545454;
}
#page.customerservice .menu li.active a {
  color: #545454;
}
#page.customerservice .icons a {
  text-align: center;
}
#page.customerservice .icons a:hover {
  color: #545454;
  text-decoration: none;
}
#page.customerservice .icons a:hover i,
#page.customerservice .icons a:hover div {
  color: inherit;
}
#page.customerservice .icons a i {
  color: #545454;
  font-size: 100px;
}
@media (max-width: 1199.98px) {
  #page.customerservice .icons a i {
    font-size: 60px;
  }
}
#page.customerservice .icons a div {
  font-weight: normal;
  color: #545454;
}
@media (max-width: 1199.98px) {
  #page.customerservice .icons a div {
    font-size: 16px;
  }
}

#page.default .page-aside {
  text-align: left;
}
#page.default .sidebar > div {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-weight: bold;
}
#page.default .sidebar a {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid #DDDDDD;
}
#page.default .owl-dots {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
#page.default .owl-dots .active span {
  background: #282023;
}
#page.default .products-nav {
  right: 17px;
  bottom: 5px;
}
#page.default .products-nav .btn-back,
#page.default .products-nav .btn-forward {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #575756;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 22px;
}
#page.default .products-nav .btn-back:hover,
#page.default .products-nav .btn-forward:hover {
  cursor: pointer;
}
#page.default .products-nav i {
  font-size: 14px;
}
#page.default .textblocks .style-primary,
#page.default .textblocks .style-secondary,
#page.default .textblocks .style-tertiary {
  padding-top: 60px;
  padding-bottom: 70px;
  margin: 0px;
}
@media (max-width: 991.98px) {
  #page.default .textblocks .style-primary,
#page.default .textblocks .style-secondary,
#page.default .textblocks .style-tertiary {
    padding: 30px 0;
  }
}

#page.events-specific {
  padding-bottom: 0px !important;
}
#page.events-specific .page-content .publisher,
#page.events-specific .page-content .author-job-description {
  line-height: 32px;
}

#page.home .textblocks .style-primary,
#page.home .textblocks .style-secondary,
#page.home .textblocks .style-tertiary {
  padding-top: 60px;
  padding-bottom: 70px;
  margin: 0px;
}
@media (max-width: 991.98px) {
  #page.home .textblocks .style-primary,
#page.home .textblocks .style-secondary,
#page.home .textblocks .style-tertiary {
    padding: 30px 0;
  }
}
#page.home .owl-dots {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
#page.home .owl-dots .active span {
  background: #282023;
}
#page.home .carousel-usps .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#page.home .carousel-usps .owl-stage .owl-item {
  text-align: center;
}
#page.home .daily-offer-block {
  border: 0px;
  background: #696969;
}
#page.home .daily-offer-block .card-label {
  font-size: 12px;
  line-height: 1.2;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  #page.home .daily-offer-block .card-label {
    font-size: 11px;
  }
}
#page.home .daily-sale .card-img {
  border-radius: 4px;
}
#page.home .daily-sale .price-crossed {
  color: #000;
}

#page.inspirations {
  padding-bottom: 70px;
}

#page.invoice .breadcrumb {
  background: #282023 !important;
}
#page.invoice .breadcrumb .breadcrumb-item, #page.invoice .breadcrumb a, #page.invoice .breadcrumb .breadcrumb-item::before {
  color: #fff;
}
#page.invoice .map {
  height: 400px;
}
@media (max-width: 991.98px) {
  #page.invoice .map {
    height: 200px;
  }
}
#page.invoice .card-header {
  padding: 1.15rem 1.15rem;
}
#page.invoice .required::after {
  color: #fff;
}
#page.invoice .page-content p {
  color: #fff;
}

#page.locations .page-aside {
  text-align: left;
}
#page.locations .search-form {
  background-color: #F9F9F9;
}
#page.locations .location i {
  color: #282023;
}
#page.locations .location:not(:last-child) {
  margin-bottom: 1rem;
}
#page.locations .location a {
  color: #544E42;
  text-decoration: none;
}
#page.locations .location a:hover {
  color: #282023;
  text-decoration: underline;
}
#page.locations .map {
  height: 380px;
}
@media (max-width: 991.98px) {
  #page.locations .map {
    height: 200px;
  }
}
#page.locations .style-primary-padding {
  padding-top: 70px;
  padding-bottom: 100px;
}
@media (max-width: 991.98px) {
  #page.locations .style-primary-padding {
    padding-top: 30px;
    padding-bottom: 50px;
  }
}

#page.login .card-login .card-title,
#page.login-password_forgot .card-login .card-title,
#page.login-password_reset .card-login .card-title {
  font-size: 32px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  #page.login .card-login .card-title,
#page.login-password_forgot .card-login .card-title,
#page.login-password_reset .card-login .card-title {
    font-size: 26px;
  }
}
#page.login .card-link,
#page.login-password_forgot .card-link,
#page.login-password_reset .card-link {
  text-decoration: underline;
  -webkit-text-decoration-color: #7B5A51;
  text-decoration-color: #7B5A51;
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
}
@media (max-width: 991.98px) {
  #page.login .card-link,
#page.login-password_forgot .card-link,
#page.login-password_reset .card-link {
    font-size: 12px;
  }
}

#page.no_support {
  padding: 0px !important;
  margin: 0px !important;
  height: 100vh !important;
  overflow: hidden !important;
}
#page.no_support .image-background {
  min-height: 100vh;
  max-width: 100%;
}
#page.no_support .logo img {
  height: 30px;
}

#page.page_not_found .panel-container-center {
  border: none !important;
  padding-top: 60px !important;
  padding-bottom: 80px !important;
  max-width: 715px;
}
@media (max-width: 991.98px) {
  #page.page_not_found .panel-container-center {
    padding: 30px 16px !important;
  }
}
#page.page_not_found .panel-container-center .search-page-not-found {
  z-index: 61;
}
#page.page_not_found .panel-container-center .search-page-not-found .search-header-page-not-found {
  height: 39px;
  font-style: italic;
}
#page.page_not_found .panel-container-center .search-page-not-found .input-group-text {
  height: 39px;
  width: 39px;
  padding: 8px;
}
#page.page_not_found .panel-container-center .search-page-not-found .input-group-text i {
  font-size: 20px;
}
#page.page_not_found .panel-container-center .search-page-not-found .input-group-text:hover {
  cursor: pointer;
}
#page.page_not_found .search-bar-container {
  position: relative;
  z-index: 62;
}
#page.page_not_found .search-bar-container .search-bar .search-bar-button {
  background-color: #fff;
}

#page.pagebuilder .editor {
  padding: 15px;
  background-color: #dedede;
  min-height: 300px;
}
#page.pagebuilder .editor .layout-row {
  height: 200px;
  border: 2px dashed gray !important;
  overflow: hidden;
}
#page.pagebuilder .editor .layout-row .row-container {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
#page.pagebuilder .editor .layout-row .column {
  display: inline-block;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  vertical-align: top;
  position: absolute;
  z-index: 60;
}
#page.pagebuilder .editor .layout-row .column > div {
  width: 100%;
  height: 100%;
}
#page.pagebuilder .editor .layout-row .column > div > div:not(.pagebuilder-content) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  background: #c8c8c8;
}
#page.pagebuilder .editor .layout-row .column:first-child > div {
  padding: 10px 15px 10px 10px;
}
#page.pagebuilder .editor .layout-row .column:not(:first-child) > div {
  padding: 10px 15px 10px 15px;
}
#page.pagebuilder .editor .layout-row .devider {
  width: 10px;
  height: 100%;
  background: grey;
  display: inline-block;
  position: absolute;
  z-index: 80;
}

#page.previewer {
  padding: 0px;
  margin: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 38px;
}

#page.products-upsell {
  padding-bottom: 0px;
}
#page.products-upsell .recently-seen {
  padding: 0px 0 70px 0;
}
@media (max-width: 991.98px) {
  #page.products-upsell .filters-mobile-toggle {
    display: block !important;
    position: fixed;
    z-index: 100;
    background: #fff;
    border: 1px solid #DDDDDD;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 !important;
    padding: 15px;
  }
}

#page.products .page-aside {
  display: initial;
  text-align: left;
}
#page.products .btn-product-search {
  background: #F5F4EF !important;
  font-size: 13px;
  color: #000;
}
#page.products .btn-open-read-more {
  text-transform: none !important;
  text-decoration: underline !important;
}
#page.products .btn-filters-reset {
  text-transform: none;
  text-decoration: underline;
}
#page.products .categories > div i {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  color: #ffffff;
}
#page.products .categories > div:not(.collapsed) i {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
#page.products .categories ul a {
  color: #575756;
}
#page.products .categories ul a:hover {
  text-decoration: underline;
}
#page.products .categories ul .active > a {
  color: #282023;
  text-decoration: underline;
}
#page.products .filters-controls,
#page.products .filter-results {
  display: none;
}
#page.products .filters-controls .menu-title,
#page.products .filter-results .menu-title {
  font-weight: 800;
  font-size: 16px;
  color: #000;
  font-family: "Roboto", sans-serif;
  line-height: 1.2;
}
@media (min-width: 992px) {
  #page.products .filters .group .group-row {
    border-bottom: 1px solid #DDDDDD;
    -webkit-transition: padding-bottom 0.3s ease;
    transition: padding-bottom 0.3s ease;
  }
  #page.products .filters .group .group-row:not(:has(.btn-filters-more-less)):has(.collapsed), #page.products .filters .group .group-row:has(.reset-filter) {
    padding-bottom: 0.5rem;
  }
}
#page.products .filters .group .label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  text-decoration: none;
}
#page.products .filters .group .label:hover {
  text-decoration: none !important;
  color: #ffffff;
}
#page.products .filters .group .label .arrow i {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  font-size: 12px;
}
#page.products .filters .group .label.collapsed .arrow i {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
#page.products .filters .group .filter-tooltip {
  font-size: 12px;
  display: inline-block;
  cursor: pointer;
  position: relative;
}
#page.products .filters .values .value label {
  font-weight: normal !important;
}
#page.products .filters .values .value > div:first-child {
  white-space: nowrap;
  overflow: hidden;
}
#page.products .filters .values .value > div:last-child {
  text-align: right;
}
#page.products .filters .values .value > div:last-child span {
  font-size: 10px;
  background-color: #F9F9F9;
  color: #575756;
}
#page.products .filters .values .value .value-color-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  position: relative;
  top: 2px;
  border: 1px solid #d5d5d5;
}
#page.products .filters .values .value .value-image {
  display: inline-block;
  width: 40px;
  position: relative;
  top: 2px;
}
@media (max-width: 991.98px) {
  #page.products .products-controls .filters-mobile-toggle {
    display: block !important;
    position: fixed;
    z-index: 50;
    background: #fff;
    border: 1px solid #DDDDDD;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 !important;
    padding: 15px;
  }
}
#page.products .products-controls .counting {
  text-align: left;
}
#page.products .products-controls .filter-pill-image img {
  height: 35px;
}
#page.products .filters-more-less-container .btn-filters-more-less span {
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
#page.products .filters-more-less-container .btn-filters-more-less span.show-more {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
#page.products .filters-more-less-container .btn-filters-more-less span.show-less {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
#page.products .reset-filter {
  font-size: 16px;
}
@media (max-width: 991.98px) {
  #page.products .reset-filter {
    font-size: 14px;
  }
}
#page.products .reset-filter:hover {
  cursor: pointer;
}
#page.products .page-content .filter-loading {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 10;
  background: #79797942;
  backdrop-filter: blur(1px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.read-more {
  background-color: #fff;
  position: fixed;
  left: -100%;
  width: calc(100% - 4.8rem);
  height: 100%;
  top: 0;
  z-index: 1002;
  display: block;
  overflow-y: auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.read-more .head {
  padding-top: 0;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 0.5rem;
  background-color: #f9f9f9;
  position: fixed;
  width: calc(100% - 4.8rem);
  z-index: 1003;
  font-weight: 800;
  font-size: 16px;
  color: #000;
  font-family: "Roboto", sans-serif;
}
.read-more .head i {
  position: absolute;
  right: 14px;
  top: 12px;
}
.read-more .content {
  padding: 1.5rem;
  padding-top: 0;
  margin-top: 38px;
}

@media (max-width: 991.98px) {
  body #page.products .page-aside {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -100%;
    width: 100%;
    z-index: 9999;
    margin-top: 0;
    padding: 0 !important;
    -webkit-transition: left 0.5s ease-out;
    transition: left 0.5s ease-out;
    display: none;
  }
  body #page.products .page-aside .mobile {
    height: calc(100vh - 114px);
    overflow-y: auto;
    overflow-x: hidden;
  }
  body #page.products .page-aside .filters-controls {
    height: 41px !important;
    line-height: 41px !important;
    background-color: #F9F9F9;
    display: block !important;
  }
  body #page.products .page-aside .filters-controls > div > div:first-child {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    vertical-align: middle;
  }
  body #page.products .page-aside .filters-controls > div > div:last-child {
    text-align: right;
  }
  body #page.products .page-aside .filters-controls .btn-close-filter {
    color: #575756;
    font-size: 15px;
  }
  body #page.products .page-aside .categories {
    cursor: pointer !important;
    padding: 15px 0;
    border-top: 1px solid #DDDDDD;
  }
  body #page.products .page-aside .categories ul {
    margin: 0 -15px;
  }
  body #page.products .page-aside .categories ul li {
    padding-left: 15px;
  }
  body #page.products .page-aside .categories ul li li {
    padding-left: 60px !important;
  }
  body #page.products .page-aside .categories ul li li li {
    padding-left: 90px !important;
  }
  body #page.products .page-aside .categories ul ul {
    margin-left: -30px !important;
  }
  body #page.products .page-aside .categories ul ul ul {
    margin-left: -45px !important;
  }
  body #page.products .page-aside .filters {
    margin-top: 0 !important;
  }
  body #page.products .page-aside .filters .group {
    border-bottom: 1px solid #DDDDDD;
  }
  body #page.products .page-aside .filter-block {
    padding: 0 14px;
  }
  body #page.products .page-aside .filter-block .filter-header {
    padding: 12px 0;
  }
  body #page.products .page-aside .filter-buttons {
    bottom: 0;
    width: 100%;
    background: #fff;
    z-index: 51;
    padding-bottom: 15px;
    position: sticky !important;
    border-top: 1px solid #DDDDDD;
  }
  body #page.products .page-aside .filter-specific-menu {
    position: fixed;
    left: -100%;
    top: 41px;
    height: calc(100vh - 114px);
    width: calc(100% - 4.8rem) !important;
    background: #fff;
    z-index: 51;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  body #page.products .page-aside .filter-specific-menu.active {
    left: 0;
  }
  body #page.products .page-aside .filter-specific-menu .filter-specific-menu-header {
    height: 43px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 14px;
    border-bottom: 1px solid #DDDDDD;
    font-weight: bold;
    font-size: 13px;
    color: #ffffff;
  }
  body #page.products .page-aside .filter-specific-menu .filter-specific-menu-header i {
    margin-right: 8px;
    font-size: 10px;
  }
  body #page.products .page-aside .filter-specific-menu .filter-specific-menu-text {
    padding: 11px 14px 0;
    font-size: 12px;
    line-height: 2;
  }
  body #page.products .page-aside .filter-specific-menu .filter-specific-menu-filters .group {
    padding-top: 0 !important;
  }
  body #page.products .page-aside .filter-specific-menu .filter-specific-menu-filters .filter-title {
    display: none;
  }
  body #page.products .filter-results,
body #page.products .mobile {
    display: block !important;
    background: #fff !important;
  }
  body.filters-mobile-open {
    overflow: hidden;
  }
  body.filters-mobile-open #page.products .page-aside {
    left: 0px !important;
    height: 100vh;
    max-width: calc(100% - 4.8rem);
    display: block;
  }
  body.filters-mobile-open-after .block-sample-package,
body.filters-mobile-open-after .downloads {
    display: none !important;
  }
  body.filters-mobile-open-after .page-aside {
    display: block;
  }
}
#page.products-specific .product-price-m2 {
  font-size: 22px;
  line-height: 1.2;
  color: #000;
}
#page.products-specific h3 {
  margin-bottom: 0.5rem !important;
}
#page.products-specific .no-margin-bottom {
  margin-bottom: 0px !important;
}
#page.products-specific .upload-text {
  font-size: 16px;
}
#page.products-specific .out-of-stock {
  opacity: 0.3;
}
#page.products-specific .out-of-stock option {
  pointer-events: none;
}
#page.products-specific .area-title .stock-text {
  font-size: 16px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
}
@media (max-width: 991.98px) {
  #page.products-specific .area-title .stock-text {
    font-size: 14px;
  }
}
#page.products-specific .area-title .stock-text.in-stock {
  color: #28A745;
}
#page.products-specific .area-title .stock-text.out-of-stock-temporary {
  color: #EC9F1B;
}
#page.products-specific .area-title .stock-text.out-of-stock {
  color: #EC1B1B;
}
#page.products-specific .area-images .main-image {
  position: relative;
}
#page.products-specific .area-images #mainCarousel {
  width: 100%;
  margin: 0 auto 1rem auto;
  --carousel-button-color: #170724;
  --carousel-button-bg: #fff;
  --carousel-button-svg-width: 20px;
  --carousel-button-svg-height: 20px;
  --carousel-button-svg-stroke-width: 2.5;
}
#page.products-specific .area-images .carousel__button {
  height: 30px !important;
  width: 30px !important;
}
#page.products-specific .area-images #mainCarousel .carousel__slide {
  width: 100%;
  padding: 0;
  margin-right: 0.5rem;
}
#page.products-specific .area-images #mainCarousel .carousel__button.is-prev {
  left: 0.5rem;
}
#page.products-specific .area-images #mainCarousel .carousel__button.is-next {
  right: 0.5rem;
}
#page.products-specific .area-images #mainCarousel .carousel__button:focus {
  outline: none;
}
#page.products-specific .area-images #thumbCarousel .is-nav-selected img {
  border: 1px solid #282023;
}
#page.products-specific .area-images #thumbCarousel .carousel__slide {
  padding: 0;
  opacity: 0.5;
  width: 125px;
  border: solid 1px #DDDDDD;
  border-radius: 4px;
}
@media (max-width: 991.98px) {
  #page.products-specific .area-images #thumbCarousel .carousel__slide {
    width: 75px !important;
  }
}
#page.products-specific .area-images #thumbCarousel .carousel__slide.is-nav-selected {
  opacity: 1;
}
#page.products-specific .area-images .btn-back,
#page.products-specific .area-images .btn-forward {
  position: absolute;
  height: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  position: absolute;
  background: #FFFFFFBF 0% 0% no-repeat padding-box;
  opacity: 1;
  top: 0;
  z-index: 50;
  color: #6B6B6B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#page.products-specific .area-images .btn-back i,
#page.products-specific .area-images .btn-forward i {
  margin: auto 0;
  font-size: 14px;
}
#page.products-specific .area-images .btn-back:hover,
#page.products-specific .area-images .btn-forward:hover {
  cursor: pointer;
  color: #D51036 !important;
}
#page.products-specific .area-images .btn-back {
  left: 0px;
}
#page.products-specific .area-images .btn-forward {
  right: 0px;
}
#page.products-specific .area-images .out-of-stock-image {
  position: absolute;
  top: calc(50% - 62px);
  width: 100%;
  height: 124px;
  background-color: rgba(255, 255, 255, 0.75);
  border: 1px solid #DDDDDD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 991.98px) {
  #page.products-specific .area-images .out-of-stock-image {
    height: 80px;
    top: calc(50% - 40px);
  }
}
#page.products-specific .area-images .out-of-stock-image .product-out-of-stock-title {
  font-weight: bold;
  font-size: 22px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #000;
}
@media (max-width: 991.98px) {
  #page.products-specific .area-images .out-of-stock-image .product-out-of-stock-title {
    font-size: 16px;
  }
}
#page.products-specific .area-images .out-of-stock-image .text {
  font-size: 16px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  #page.products-specific .area-images .out-of-stock-image .text {
    font-size: 14px;
  }
}
#page.products-specific .area-variants > div i {
  color: #282023;
}
@media (max-width: 767.98px) {
  #page.products-specific .area-variants select {
    height: 45px;
  }
}
#page.products-specific .area-variants .radio-choice {
  border-radius: 50%;
  height: 32px;
  width: 32px;
  background: #000000;
  border: 1px solid #696969;
}
#page.products-specific .area-variants .radio-choice label {
  padding: 2px;
  color: #696969;
  font-size: 10px;
}
#page.products-specific .area-variants .radio-choice:has(input:disabled) {
  opacity: 0.5;
}
#page.products-specific .area-variants .radio-choice:has(input:disabled) label {
  cursor: not-allowed;
}
#page.products-specific .area-variants .radio-choice:has(input:not(:disabled)):hover, #page.products-specific .area-variants .radio-choice:has(input:not(:disabled)):has(input:checked) {
  outline: 2px solid #375D8E;
  border: 2px solid #fff;
}
#page.products-specific .area-variants .radio-choice:has(input:not(:disabled)):hover label, #page.products-specific .area-variants .radio-choice:has(input:not(:disabled)):has(input:checked) label {
  padding: 0px;
}
#page.products-specific .area-variants-bundles .variant-image-block .variant-image {
  border: 1px solid #DDDDDD;
}
#page.products-specific .area-variants-bundles .variant-image-block span {
  padding: 0px 4px;
  display: block;
  text-align: center;
  color: #696969;
  font-size: 12px;
}
#page.products-specific .area-variants-bundles .variant-image-block:hover, #page.products-specific .area-variants-bundles .variant-image-block.active {
  text-decoration: none;
}
#page.products-specific .area-variants-bundles .variant-image-block:hover .variant-image, #page.products-specific .area-variants-bundles .variant-image-block.active .variant-image {
  border: 1px solid #282023;
}
#page.products-specific .area-variants-bundles .variant-image-block:hover span, #page.products-specific .area-variants-bundles .variant-image-block.active span {
  color: #282023;
}
@media (max-width: 767.98px) {
  #page.products-specific .area-variants-bundles select {
    height: 45px;
  }
}
#page.products-specific .area-usps .icon {
  width: 18px;
  font-size: 13px;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
#page.products-specific .area-usps .icon i {
  color: #7B5A51;
}
#page.products-specific .area-subscribe .product-subscribe-title {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #000;
}
@media (max-width: 991.98px) {
  #page.products-specific .area-subscribe .product-subscribe-title {
    font-size: 14px;
  }
}
#page.products-specific .area-subscribe .product-subscribe-text {
  font-size: 15px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  #page.products-specific .area-subscribe .product-subscribe-text {
    font-size: 13px;
  }
}
#page.products-specific .area-delivery-usp i {
  width: 18px;
  font-size: 13px;
  color: #7B5A51;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
#page.products-specific .area-delivery-usp .title {
  color: #7B5A51;
}
#page.products-specific .area-pricing .price .amount,
#page.products-specific .area-pricing .price .type,
#page.products-specific .area-pricing .price .price-type {
  display: inline-block;
}
#page.products-specific .area-pricing .price .price-type {
  font-size: 16px;
}
@media (max-width: 991.98px) {
  #page.products-specific .area-pricing .price .price-type {
    font-size: 14px;
  }
}
#page.products-specific .area-pricing .price .product-price,
#page.products-specific .area-pricing .price .product-price-span {
  font-size: 22px;
  line-height: 1.2;
  color: #000;
}
@media (max-width: 991.98px) {
  #page.products-specific .area-pricing .price .product-price,
#page.products-specific .area-pricing .price .product-price-span {
    font-size: 18px;
  }
}
#page.products-specific .area-pricing .price .main .type {
  display: none;
}
#page.products-specific .area-pricing .price .other {
  top: -0.5em;
  left: 7px;
  position: relative;
  font-size: 75%;
  vertical-align: baseline;
}
#page.products-specific .area-pricing .price .other:before, #page.products-specific .area-pricing .price .other:after {
  position: absolute;
  top: 0px;
}
#page.products-specific .area-pricing .price .other:before {
  content: "(";
  left: -5px;
}
#page.products-specific .area-pricing .price .other:after {
  content: ")";
  right: -5px;
}
#page.products-specific .area-pricing .price .extra-low {
  top: 1.5em !important;
}
@media (max-width: 601px) {
  #page.products-specific .area-cart .add-to-cart .col-3 {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}
@media (max-width: 767.98px) {
  #page.products-specific .area-cart .add-to-cart .cart-button {
    height: 45px;
  }
}
#page.products-specific .carrousel-product-nav .back {
  position: absolute;
  border: 0 !important;
  color: #575756;
  height: 100%;
  width: 50%;
  background: transparent;
  top: 0;
  line-height: 0px;
  border-radius: 50%;
  font-size: 26px;
  position: absolute;
  left: 0px;
}
#page.products-specific .carrousel-product-nav .back span {
  border-radius: 50%;
  padding: 0.5rem;
  background: #fff;
  position: absolute;
  left: 8px;
  top: 50%;
  font-size: 20px;
}
#page.products-specific .carrousel-product-nav .forward {
  position: absolute;
  border: 0 !important;
  color: #575756;
  height: 100%;
  width: 50%;
  background: transparent;
  top: 0;
  line-height: 0px;
  border-radius: 50%;
  font-size: 26px;
  position: absolute;
  right: 0px;
}
#page.products-specific .carrousel-product-nav .forward span {
  border-radius: 50%;
  padding: 0.5rem;
  background: #fff;
  position: absolute;
  right: 8px;
  top: 50%;
  font-size: 20px;
}
#page.products-specific .gradient {
  position: absolute;
  top: 0;
  right: 0;
  left: 5px;
  bottom: 0;
  width: calc(100% - 10px);
  background: rgba(0, 0, 0, 0.5);
}
#page.products-specific .more-img {
  font-size: 16px;
  color: #545454;
}
#page.products-specific .alert-blackfriday {
  background-color: #000000;
  border: 2px solid #FF0000;
  color: #fff;
  font-size: 14px;
  font-style: "Quicksand", sans-serif;
}
#page.products-specific .alert-blackfriday i {
  color: #FF0000;
}
#page.products-specific .alert-blackfriday span {
  color: #FF0000;
}
@media (max-width: 991.98px) {
  #page.products-specific .alert-blackfriday {
    font-size: 12px;
  }
}
#page.products-specific .alert-promotion {
  background-color: #7B5A51;
  border: 2px solid #282023;
  color: #fff;
  font-size: 14px;
  font-style: "Quicksand", sans-serif;
}
#page.products-specific .alert-promotion i {
  color: #282023;
}
#page.products-specific .alert-promotion span {
  color: #282023;
}
@media (max-width: 991.98px) {
  #page.products-specific .alert-promotion {
    font-size: 12px;
  }
}
#page.products-specific .tabs .tab-title {
  font-size: 16px;
}
#page.products-specific .tabs .menu ul li a {
  background-color: #F9F9F9;
  border-color: #DDDDDD;
}
#page.products-specific .tabs .item {
  display: block !important;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-top: 1px solid #DDDDDD;
}
#page.products-specific .tabs .item table {
  border-spacing: 0;
  border-collapse: separate;
  border: 1px solid #DDDDDD;
  border-radius: 4px;
}
#page.products-specific .tabs .item table tr th {
  width: 300px;
  border-bottom: 1px solid #DDDDDD;
  border-top: 1px solid transparent;
}
@media (max-width: 767.98px) {
  #page.products-specific .tabs .item table tr th {
    width: auto;
    width: unset;
    padding: 16px 8px;
    padding-top: 18px;
  }
}
#page.products-specific .tabs .item table tr td {
  border-top: 1px solid transparent;
  border-bottom: 1px solid #DDDDDD;
}
@media (max-width: 767.98px) {
  #page.products-specific .tabs .item table tr td {
    padding: 16px 0px;
  }
}
#page.products-specific .tabs .item tbody > tr:nth-child(odd) > td,
#page.products-specific .tabs .item tbody > tr:nth-child(odd) > th {
  background-color: #fff;
}
#page.products-specific .tabs .item tbody > tr:nth-child(even) > td,
#page.products-specific .tabs .item tbody > tr:nth-child(even) > th {
  background-color: #F9F9F9;
}
#page.products-specific .tabs .item tbody > tr:first-child th {
  border-top-left-radius: 4px !important;
}
#page.products-specific .tabs .item tbody > tr:first-child td {
  border-top-right-radius: 4px !important;
}
#page.products-specific .tabs .item tbody > tr:last-child th {
  border-bottom: 1px solid transparent;
  border-bottom-left-radius: 4px !important;
}
#page.products-specific .tabs .item tbody > tr:last-child td {
  border-bottom: 1px solid transparent;
  border-bottom-right-radius: 4px !important;
}
#page.products-specific .fa-chevron-down,
#page.products-specific .fa-angle-down,
#page.products-specific .fa-minus {
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  color: #000000;
}
#page.products-specific .collapsed .fa-angle-down {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
#page.products-specific .collapsed .fa-minus:before {
  content: "";
}
#page.products-specific .favorite {
  width: 40px;
  height: 40px;
  line-height: 46px;
  cursor: pointer;
  background-color: #FFFFFF;
  text-align: center;
  z-index: 3;
  left: 1px;
  top: 1px;
}
#page.products-specific .favorite i {
  line-height: 26px;
  font-size: 22px;
  color: #fff;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #282023;
}
@media (pointer: fine) {
  #page.products-specific .favorite i:hover {
    color: #282023;
    -webkit-text-stroke-width: 2px;
    cursor: pointer;
  }
}
#page.products-specific .favorite.is-favorite i {
  color: #282023;
  -webkit-text-stroke-width: 2px;
  cursor: pointer;
}
@media (pointer: fine) {
  #page.products-specific .favorite.is-favorite i:hover {
    color: #fff;
    -webkit-text-stroke-width: 2px;
  }
}
@media (max-width: 991.98px) {
  #page.products-specific .favorite {
    width: 20px;
    height: 20px;
    line-height: 21px;
  }
  #page.products-specific .favorite i {
    line-height: 0px;
    font-size: 12px;
  }
}
#page.products-specific .product-label {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #fff;
  z-index: 3;
  top: 0px;
  right: 0px;
}
@media (max-width: 991.98px) {
  #page.products-specific .product-label {
    font-size: 14px;
    top: unset !important;
  }
}
@media (max-width: 767.98px) {
  #page.products-specific .area-cart {
    position: fixed;
    z-index: 50;
    background: #fff;
    border: 1px solid #DDDDDD;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 !important;
    padding: 8px 0 8px 0;
  }
  #page.products-specific .area-cart .price {
    margin-bottom: 8px !important;
  }
}
@media (max-width: 767.98px) and (max-width: 767.98px) {
  #page.products-specific .area-cart .btn-add-to-cart,
#page.products-specific .area-cart .quantity-block,
#page.products-specific .area-cart .cart-button {
    height: 45px;
  }
}
@media (max-width: 767.98px) {
  #page.products-specific .area-pricing .product-price,
#page.products-specific .area-pricing .product-price-span {
    font-size: 26px !important;
  }
}
#page.products-specific .unique-selling-point {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 767.98px) {
  #page.products-specific .unique-selling-point {
    font-size: 13px;
  }
}
#page.products-specific .brand-img {
  width: 100px;
  height: 66px;
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}
#page.products-specific .delivery-usp {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #7B5A51;
}
@media (max-width: 767.98px) {
  #page.products-specific .delivery-usp {
    font-size: 13px;
  }
}
#page.products-specific .temp-d-none {
  display: none !important;
}
#page.products-specific .fake-thumb-images {
  margin: 0 -0.25rem 0 -0.25rem;
}
#page.products-specific .fake-overlay {
  opacity: 0.5;
}

[disabled] {
  pointer-events: none;
  color: #808080;
  background: #e3e3e3;
}

.style-configurator .page-configurator-aside {
  text-align: left;
}
.style-configurator .question .card-header {
  color: #111111;
  font-size: 20px;
  cursor: pointer;
}
@media (max-width: 991.98px) {
  .style-configurator .question .card-header {
    font-size: 16px;
  }
}
.style-configurator .question .card-header i {
  cursor: pointer;
}
.style-configurator .question .question-suffix {
  color: #777777;
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 991.98px) {
  .style-configurator .question .question-suffix {
    font-size: 16px;
  }
}
.style-configurator .question label {
  text-transform: uppercase;
  color: #111111 !important;
  font-family: "Roboto", sans-serif;
}
.style-configurator .question .price-title {
  color: #111111;
  font-size: 34px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}
.style-configurator .question .price-piece-title {
  color: #777777;
  font-size: 22px;
  font-family: "Roboto", sans-serif;
}
.style-configurator .custom-input-styling {
  width: 100px !important;
}
@media (max-width: 767.98px) {
  .style-configurator .custom-input-styling {
    width: 100% !important;
  }
}
.style-configurator .btn-preset-inputs,
.style-configurator .btn-custom-inputs {
  text-decoration: underline;
  cursor: pointer;
}
.style-configurator .configurator-select-option option.disabled {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.5;
  background-color: #dddddd;
}

#page.publications-specific {
  padding-bottom: 0px !important;
}
#page.publications-specific .date-published {
  font-size: 15px;
  line-height: 1.8;
  font-family: "Quicksand", sans-serif;
  color: #696969;
}
@media (max-width: 991.98px) {
  #page.publications-specific .date-published {
    font-size: 13px;
  }
}

#page.relations-specific hr {
  border-top: 1px solid #DDDDDD !important;
}
#page.relations-specific .page-aside .image img {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
#page.relations-specific .page-aside .card-body i,
#page.relations-specific .page-aside .card-header i {
  margin-right: 0.5rem;
  color: #282023;
}
#page.relations-specific .page-aside .card-body .phoneicon,
#page.relations-specific .page-aside .card-header .phoneicon {
  margin-right: 3px;
}

#page.reviews .extra-padding-top {
  padding-top: 60px !important;
}
#page.reviews .reviews-controls {
  row-gap: 0.5rem;
}
#page.reviews .reviews-controls .container {
  row-gap: 1rem;
}
@media (max-width: 1199.98px) {
  #page.reviews .reviews-controls .container {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  #page.reviews .reviews-controls .container .dropdown-select ._btn-text, #page.reviews .reviews-controls .container .dropdown-select ._option {
    font-size: 14px;
  }
}
#page.reviews .reviews-controls .counting {
  text-align: left;
  font-size: 26px;
  font-weight: bold;
}
#page.reviews .filters {
  row-gap: 0.5rem;
}
#page.reviews .dropdown-select ._dropdown-btn {
  text-align: left;
  width: 100%;
  height: calc(form-select-lg-calc + (16px * 0.5));
  color: #696969;
  font-size: 1rem;
  background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
  border-color: #ced4da;
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#page.reviews .dropdown-select ._dropdown-btn::after {
  border: none;
}
#page.reviews .dropdown-select ._option:hover {
  cursor: pointer;
}

#page.search .search-results a {
  color: #000000;
}
#page.search .search-results a:not(:last-child) {
  margin-bottom: 1rem;
  border-bottom: 1px solid #DDDDDD;
}
#page.search .search-results a.item > div {
  width: 100%;
}
#page.search .search-results a.item > div > div {
  margin-bottom: 0px;
}
#page.search .search-results a.item > div > div h5 {
  margin-bottom: 0.5rem;
  display: block;
}

#page.services-specific {
  padding-bottom: 0px !important;
}

#page.shoppingcart .page-aside {
  text-align: left !important;
}
#page.shoppingcart .panel-shoppingcart .list-item {
  width: -webkit-fill-available;
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: 16.6666666667% 0 auto 0 16.6666666667% 0 16.6666666667% 0 8.3333333333%;
  grid-template-columns: 16.6666666667% auto 16.6666666667% 16.6666666667% 8.3333333333%;
  gap: 0;
  -ms-grid-rows: auto 0 auto;
  grid-template-areas: "image title quantity price delete" "image text quantity price delete";
}
#page.shoppingcart .panel-shoppingcart .list-item:not(:last-child) {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: solid 1px;
}
#page.shoppingcart .panel-shoppingcart i {
  color: #575756;
}
#page.shoppingcart .panel-shoppingcart .area {
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}
#page.shoppingcart .panel-shoppingcart .area-image {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  grid-area: image;
  -ms-grid-row-align: center;
  align-self: center;
}
#page.shoppingcart .panel-shoppingcart .area-image a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
#page.shoppingcart .panel-shoppingcart .area-title {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: title;
}
#page.shoppingcart .panel-shoppingcart .area-text {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  grid-area: text;
}
@media (max-width: 991.98px){
  .block-contact-grid-b > div > div > div .area-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    -ms-grid-column: 1;
  }
  .block-contact-grid-b > div > div > div .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-b > div > div > div .area-phone {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-b > div > div > div .area-email {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-b > div > div > div .area-optional {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div .area-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    -ms-grid-column: 1;
  }
  .block-contact-grid-c > div > div > div .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div .area-phone {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div .area-email {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div .area-optional {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-d > div > div > div .area-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    -ms-grid-column: 1;
  }
  .block-contact-grid-c > div > div > div > .area-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
  .block-contact-grid-d > div > div > div .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div > .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div > .area-text {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .block-contact-grid-d > div > div > div .area-phone {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div > .area-phone {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 4;
  }
  .block-contact-grid-d > div > div > div .area-email {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div > .area-email {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 4;
  }
  .block-contact-grid-d > div > div > div .area-optional {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div > .area-optional {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 3;
  }
  .block-newsletter-a > div > div > div .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div > .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  #page.account .panel-orderdetail .area-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    -ms-grid-column: 1;
  }
  .block-contact-grid-c > div > div > div > .area-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
  #page.account .panel-orderdetail .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div > .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div > .area-text {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  #page.shoppingcart .panel-shoppingcart .area-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    -ms-grid-column: 1;
  }
  .block-contact-grid-c > div > div > div > .area-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
  #page.shoppingcart .panel-shoppingcart .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div > .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div > .area-text {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
}
@media (max-width: 767.98px){
  .block-contact-grid-b > div > div > div > .area-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    -ms-grid-column: 1;
  }
  .block-contact-grid-b > div > div > div > .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-b > div > div > div > .area-phone {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-b > div > div > div > .area-email {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-b > div > div > div > .area-optional {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-b > div > div > div > .area-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    -ms-grid-column: 1;
  }
  .block-contact-grid-c > div > div > div > .area-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 5;
    -ms-grid-column: 1;
  }
  .block-contact-grid-b > div > div > div > .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div > .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-b > div > div > div > .area-phone {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div > .area-phone {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-b > div > div > div > .area-email {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div > .area-email {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-b > div > div > div > .area-optional {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div > .area-optional {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-b > div > div > div > .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div > .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-d > div > div > div > .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-b > div > div > div > .area-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    -ms-grid-column: 1;
  }
  .block-contact-grid-c > div > div > div > .area-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 5;
    -ms-grid-column: 1;
  }
  .block-contact-grid-d > div > div > div > .area-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    -ms-grid-column: 1;
  }
  .block-contact-grid-b > div > div > div > .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div > .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-d > div > div > div > .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-b > div > div > div > .area-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    -ms-grid-column: 1;
  }
  .block-contact-grid-c > div > div > div > .area-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 5;
    -ms-grid-column: 1;
  }
  .block-contact-grid-d > div > div > div > .area-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    -ms-grid-column: 1;
  }
  .block-contact-grid-b > div > div > div > .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-c > div > div > div > .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .block-contact-grid-d > div > div > div > .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
}
@media (max-width: 1199.98px){
  .block-contact-grid-d > div > div > div > .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .block-contact-grid-d > div > div > div > .area-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1;
  }
  .block-contact-grid-d > div > div > div > .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .block-contact-grid-d > div > div > div > .area-text {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .block-contact-grid-d > div > div > div > .area-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1;
  }
  .block-contact-grid-d > div > div > div > .area-title {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .block-contact-grid-d > div > div > div > .area-text {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
}
#page.shoppingcart .panel-shoppingcart .area-quantity {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 5;
  grid-area: quantity;
  -ms-grid-row-align: center;
  align-self: center;
}
#page.shoppingcart .panel-shoppingcart .area-price {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
  grid-area: price;
  -ms-grid-row-align: center;
  align-self: center;
  text-align: right;
}
#page.shoppingcart .panel-shoppingcart .area-delete {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 9;
  grid-area: delete;
  -ms-grid-row-align: center;
  align-self: center;
  text-align: right;
}
@media (max-width: 991.98px){
  #page.account .panel-orderdetail .area-quantity {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  #page.account .panel-orderdetail .area-price {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
  }
  #page.account .panel-orderdetail .list-item > .area-price {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  #page.shoppingcart .panel-shoppingcart .area-quantity {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  #page.shoppingcart .panel-shoppingcart .area-price {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
  }
  #page.account .panel-orderdetail .list-item > .area-price {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
}
@media (max-width: 767.98px) {
  #page.shoppingcart .panel-shoppingcart .list-item {
    position: relative;
    width: -webkit-fill-available;
    -ms-grid-columns: 30% 70%;
    grid-template-columns: 30% 70%;
    grid-template-areas: "image title" "image text" "image price" "image quantity" "image delete";
  }
  #page.shoppingcart .panel-shoppingcart .area {
    padding-left: 0px;
  }
  #page.shoppingcart .panel-shoppingcart .area-image {
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
  #page.shoppingcart .panel-shoppingcart .area-title,
#page.shoppingcart .panel-shoppingcart .area-price,
#page.shoppingcart .panel-shoppingcart .area-text,
#page.shoppingcart .panel-shoppingcart .area-delete {
    text-align: left;
  }
  #page.shoppingcart .panel-shoppingcart .area-title {
    font-weight: bold;
  }
  #page.shoppingcart .panel-shoppingcart .area-price {
    font-weight: bold;
  }
  #page.shoppingcart .panel-shoppingcart .area-delete a {
    position: absolute;
    top: 5px;
    right: 15px;
  }
  #page.shoppingcart .panel-shoppingcart .list-item > .area-price {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  #page.shoppingcart .panel-shoppingcart .list-item > .area-quantity {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  #page.shoppingcart .panel-shoppingcart .list-item > .area-price {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  #page.shoppingcart .panel-shoppingcart .list-item > .area-quantity {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  #page.shoppingcart .panel-shoppingcart .list-item > .area-price {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
  #page.shoppingcart .panel-shoppingcart .area-delete {
    -ms-grid-row: 5;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
}
@media (max-width: 767.98px) {
  #page.shoppingcart .order {
    position: fixed;
    z-index: 50;
    background: #fff;
    border: 1px solid #DDDDDD;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 !important;
    padding: 8px 14px 8px 14px;
  }
  #page.shoppingcart .order .btn {
    margin-top: 0px !important;
  }
}
#page.shoppingcart .upsell {
  padding-bottom: 70px;
}
#page.shoppingcart .recently-seen {
  padding: 0px 0 70px 0;
}

body.dragging {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

#page.uploader {
  padding-top: 0px !important;
  overflow-x: hidden;
}
#page.uploader .upload-part {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 3;
}
#page.uploader .loop-image {
  float: right;
  width: 30px;
  height: 30px;
}
#page.uploader .upload-wrapper {
  padding: 75px 100px 90px 90px;
}
@media (max-width: 1024px) {
  #page.uploader .upload-wrapper {
    padding: 60px 40px 60px 40px;
  }
}
#page.uploader .modal-height {
  height: 100%;
  margin-top: 0;
}
#page.uploader .top-bar {
  background-repeat: no-repeat;
  min-height: 90px;
  border-bottom: 1px solid #ECECEC;
  background-color: white;
}
#page.uploader .top-bar .logo {
  height: 74px;
}
#page.uploader .mobile-header {
  padding-bottom: 20px;
}
#page.uploader .mobile-header .logo {
  height: 40px;
}
#page.uploader .mobile-header .action span {
  font-size: 14px;
}
#page.uploader .bottom-bar {
  z-index: 999;
  position: fixed;
  bottom: 0;
  border-top: 1px solid #ECECEC;
  background-color: white;
  width: 100%;
  max-width: 100%;
  height: 100px;
}
@media (max-width: 1024px) {
  #page.uploader .bottom-bar {
    background-color: #000000;
    height: 68px;
    line-height: 18px;
  }
}
#page.uploader .modal-header {
  background-color: #000000;
  border: 1px solid #DDDDDD;
}
#page.uploader canvas {
  background: none;
  border: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#page.uploader canvas#canvas_bottom {
  position: absolute;
  margin-top: -50px;
  margin-left: -50px;
}
#page.uploader .upload-modal .modal-dialog {
  width: 100%;
}
@media (max-width: 576px) {
  #page.uploader .upload-modal .modal-dialog {
    margin: 0;
  }
}
@media (min-width: 576px) {
  #page.uploader .upload-modal .modal-dialog {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  #page.uploader .upload-modal .modal-dialog {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  #page.uploader .upload-modal .modal-dialog {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  #page.uploader .upload-modal .modal-dialog {
    max-width: 1140px;
  }
}
#page.uploader #content-uploader {
  height: calc(100vh - 180px) !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#page.uploader #content-uploader .overview-area {
  height: calc(100vh - 190px) !important;
}
#page.uploader #content-uploader #upload-container .start-message img {
  cursor: pointer;
}
#page.uploader #content-uploader #upload-container .add-border {
  border-bottom: 1px solid #DDDDDD;
  width: 100%;
  margin: 10px 15px 0 15px;
}
@media (max-width: 576px) {
  #page.uploader #content-uploader #upload-container .upload_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
#page.uploader #content-uploader #upload-container .upload_item .image {
  cursor: pointer;
  height: 100%;
  width: 100%;
}
@media (max-width: 576px) {
  #page.uploader #content-uploader #upload-container .upload_item .image {
    margin: auto;
  }
}
@media (max-width: 1024px) {
  #page.uploader #content-uploader #upload-container .upload_item .image {
    max-height: 120px;
  }
}
#page.uploader #content-uploader #upload-container .upload_item .image .cover {
  height: 100%;
  width: 100%;
  border: solid 3px rgba(255, 255, 255, 0.56);
}
#page.uploader #content-uploader #upload-container .upload_item .image .cover .bleed {
  position: relative;
  height: 100%;
  width: 100%;
  border: dashed 2px #FA6819;
}
#page.uploader #content-uploader #upload-container .upload_item .image .cover .security {
  position: relative;
  height: 100%;
  width: 100%;
  border: dashed 2px #41B57A;
}
#page.uploader #content-uploader #upload-container .upload_item .image .cover-rounded {
  border: none !important;
  border-radius: 50% !important;
  -webkit-box-shadow: 0 0 0 2000px rgba(255, 255, 255, 0.56) !important;
  box-shadow: 0 0 0 2000px rgba(255, 255, 255, 0.56) !important;
}
#page.uploader #content-uploader #upload-container .upload_item .image .cover-rounded .bleed-rounded {
  border-radius: 50% !important;
}
#page.uploader #content-uploader #upload-container .upload_item .image .cover-rounded .security-rounded {
  border-radius: 50% !important;
}
#page.uploader #content-uploader #upload-container .upload_item .info_default {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
}
#page.uploader #content-uploader #upload-container .upload_item .info_default ul {
  list-style: none;
  margin: 0;
}
#page.uploader #content-uploader #upload-container .upload_item .action {
  position: absolute;
  top: 0;
  right: 0;
  text-align: right;
}
#page.uploader #content-uploader #upload-container .quantity {
  width: 45px;
  text-align: center;
  height: 35px;
  margin: 0 6px;
}
#page.uploader #content-uploader #upload-container .quantity-buttons {
  width: 35px;
  height: 35px;
}
@media (max-width: 1024px) {
  #page.uploader #content-uploader .style-default {
    padding-top: 0px;
  }
}
#page.uploader .upload-button-mobile {
  display: none;
}
@media (max-width: 1024px) {
  #page.uploader #page {
    height: calc(100vh - 88px);
  }
  #page.uploader #content-uploader {
    padding-bottom: 68px;
    height: calc(100vh - 170px) !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #page.uploader #content-uploader #upload_container .upload_item .action {
    top: 10px !important;
    right: 10px !important;
    width: 60px;
  }
  #page.uploader #content-uploader #upload_container .upload_item .message {
    margin-top: 10px;
  }
  #page.uploader #content-uploader .start-message {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: calc(100vh - 320px);
  }
  #page.uploader .delete-img-button {
    background-color: white;
    height: 20px;
    width: 20px;
    padding: 0px;
  }
  #page.uploader .upload-button-mobile {
    display: block;
    position: fixed;
    bottom: 68px;
    right: 0;
    left: 0;
    z-index: 999;
    padding: 10px 0;
  }
  #page.uploader .close-page-mobile {
    height: 22px;
  }
}
#page.uploader div.resize-modal {
  font-size: 0.875em;
}
#page.uploader div.resize-modal .details {
  border-left: 1px solid #DDDDDD;
}
#page.uploader div.resize-modal .bleed-small {
  height: 2px;
  width: 40px;
  border-bottom: dashed 3px red;
  position: absolute;
  top: 16px;
  right: 60px;
}
#page.uploader div.resize-modal .title-5 {
  color: #000;
  font-size: 1em;
  line-height: 20px;
}
@media (min-width: 1024px) {
  #page.uploader div.resize-modal .save-button {
    position: absolute;
    bottom: 20px;
    width: 100%;
  }
}
@media (max-width: 1024px) {
  #page.uploader div.resize-modal .save-button {
    margin-top: 15px;
  }
}
@media (max-width: 850px) {
  #page.uploader div.resize-modal .title-5 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
#page.uploader div.resize-modal div.upload-container {
  width: 1300px;
  overflow: hidden;
}
#page.uploader div.resize-modal div.upload {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1000;
  border: solid 1px #252525;
}
#page.uploader div.resize-modal div.upload.axis-free, #page.uploader div.resize-modal div.upload.axis-x, #page.uploader div.resize-modal div.upload.axis-y {
  cursor: -webkit-grab;
  cursor: grab;
}
#page.uploader div.resize-modal div.upload.mousedown {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
#page.uploader div.resize-modal div.upload .resizeImg {
  overflow: hidden;
  height: 100%;
}
#page.uploader div.resize-modal div.upload .cover {
  height: 100%;
  overflow: hidden;
  border: solid 3px rgba(255, 255, 255, 0.56);
}
#page.uploader div.resize-modal div.upload .cover .bleed {
  position: relative;
  height: 100%;
  width: 100%;
  border: dashed 3px #FA6819;
  overflow: hidden;
  padding: 4px;
}
#page.uploader div.resize-modal div.upload .cover .security {
  position: relative;
  height: 100%;
  width: 100%;
  border: dashed 3px #41B57A;
  overflow: hidden;
}
#page.uploader div.resize-modal div.upload .cover .ui-resizable-handle {
  position: absolute;
  background: red;
  width: 14px;
  height: 14px;
  margin: -6px;
  border-radius: 50%;
  border: solid 2px white;
}
#page.uploader div.resize-modal div.upload .cover .ui-resizable-handle.ui-resizable-nw {
  top: 0;
  left: 0;
  cursor: nw-resize;
}
#page.uploader div.resize-modal div.upload .cover .ui-resizable-handle.ui-resizable-se {
  bottom: 0;
  right: 0;
  cursor: se-resize;
}
#page.uploader div.resize-modal div.upload .cover .ui-resizable-handle.ui-resizable-ne {
  top: 0;
  right: 0;
  cursor: ne-resize;
}
#page.uploader div.resize-modal div.upload .cover .ui-resizable-handle.ui-resizable-sw {
  bottom: 0;
  left: 0;
  cursor: sw-resize;
}
#page.uploader div.resize-modal div.upload .cover-rounded {
  border: none !important;
  border-radius: 50% !important;
  -webkit-box-shadow: 0 0 0 2000px rgba(255, 255, 255, 0.56) !important;
  box-shadow: 0 0 0 2000px rgba(255, 255, 255, 0.56) !important;
}
#page.uploader div.resize-modal div.upload .cover-rounded .bleed-rounded {
  border-radius: 50% !important;
}
#page.uploader div.resize-modal div.upload .cover-rounded .security-rounded {
  border-radius: 50% !important;
}
#page.uploader div.resize-modal div.upload .cover-triangle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#page.uploader div.resize-modal div.upload .cover-triangle .triangle-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  /* Triangle cutout */
}
#page.uploader div.resize-modal div.upload.finished .resizeImg {
  border: none;
}
#page.uploader div.resize-modal div.upload.finished .cover {
  cursor: pointer;
}
#page.uploader div.resize-modal div.upload.finished .cover .bleed {
  border-style: solid;
}
#page.uploader .gallery {
  width: 100%;
  overflow-y: auto;
}
#page.uploader .gallery:not(.custom_gallery) .disabled {
  display: none;
}
#page.uploader .gallery .gallery_item {
  display: inline-block;
  position: relative;
  width: calc((100% - 50px) / 5);
  height: 200px;
  margin: 5px;
  background-size: cover;
  background-position: center;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  vertical-align: top;
}
@media (max-width: 1200px) {
  #page.uploader .gallery .gallery_item {
    width: calc((100% - 40px) / 4);
  }
}
@media (max-width: 992px) {
  #page.uploader .gallery .gallery_item {
    width: calc((100% - 30px) / 3);
  }
}
@media (max-width: 768px) {
  #page.uploader .gallery .gallery_item {
    width: calc((100% - 20px) / 2);
  }
}
#page.uploader .gallery .gallery_item:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#page.uploader .gallery .gallery_item:hover:before {
  background: rgba(20, 200, 20, 0.4);
}
#page.uploader .gallery .gallery_item.disabled:hover .tooltip {
  display: inline-block;
}
#page.uploader .gallery .gallery_item.disabled::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "FontAwesome";
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  font-size: 40px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(200, 20, 20, 0.6);
}
#page.uploader .gallery .gallery_item::after {
  display: none;
  font-family: "FontAwesome";
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  font-size: 40px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(145, 207, 177, 0.95);
}
#page.uploader .gallery .gallery_item.active:not(.disabled)::after {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#page.uploader .gallery .gallery_item.active::before {
  content: "";
}
#page.uploader #instagram-loading {
  display: none;
  width: 100%;
  position: absolute;
  margin-top: 10px;
  font-size: 30px;
}
#page.uploader .fa-cog {
  -webkit-animation: loading 4s infinite linear;
  animation: loading 4s infinite linear;
}
@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
#page.uploader .lines {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  right: 0;
  bottom: 0;
}
#page.uploader .line {
  background-color: #009FE3;
  position: absolute;
  cursor: pointer;
}
#page.uploader .line .line-handle {
  position: absolute;
  height: calc(100% + 4px);
  width: calc(100% + 4px);
  margin-left: -2px;
  margin-top: -2px;
}
#page.uploader .line .line-debug {
  color: white;
}
#page.uploader .line .position {
  display: inline-block;
  position: absolute;
  background: #009FE3;
  color: white;
  height: 50px;
  width: 80px;
}
#page.uploader .line .position input {
  color: inherit;
  border: none;
  background: none;
  width: 40px;
  height: 40px;
  margin: 5px 0 5px 5px;
  text-align: right;
}
#page.uploader .line.horizontal-line {
  width: calc(100% + 10px);
  height: 2px;
  top: calc(50% - 1px);
  left: 0;
}
#page.uploader .line.horizontal-line:after {
  width: 0;
  height: 0;
  content: " ";
  display: block;
  position: absolute;
  border-radius: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid #009FE3;
  margin-left: -8px;
  right: 0;
  margin-top: -7px;
}
#page.uploader .line.horizontal-line .position {
  margin-top: -25px;
  left: calc(100% - 2px);
}
#page.uploader .line.vertical-line {
  height: calc(100% + 10px);
  width: 2px;
  top: 0;
  left: calc(50% - 1px);
}
#page.uploader .line.vertical-line:after {
  width: 0;
  height: 0;
  content: " ";
  display: block;
  position: absolute;
  border-radius: 3px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #009FE3;
  bottom: 0;
  bottom: 0;
  margin-left: -7px;
}
#page.uploader .line.vertical-line .position {
  margin-left: -35px;
  top: calc(100% - 2px);
}
#page.uploader .upload-part {
  position: fixed;
  top: 150px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  height: calc(100vh - 190px) !important;
}
#page.uploader .security-line {
  border: 2px dashed #41B57A;
  opacity: 1;
  height: 0px;
  width: 55px;
  margin-top: 10px;
}
#page.uploader .bleed-line {
  border: 2px dashed #FA6819;
  opacity: 1;
  height: 0px;
  width: 55px;
  margin-top: 10px;
}
#page.uploader .wrong-measurements {
  text-decoration: underline;
}
#page.uploader .mobile-save-button {
  position: absolute;
  bottom: 10px;
}

#page.vacancies .page-aside {
  display: initial;
}
#page.vacancies .btn-product-search {
  background: #fff !important;
  font-size: 14px;
  color: #000;
}
#page.vacancies .btn-filters-reset {
  text-transform: none;
  text-decoration: underline;
}
#page.vacancies .list-container .item:not(:last-child) {
  padding-bottom: 1rem;
}
#page.vacancies .filters-controls,
#page.vacancies .filter-results {
  display: none;
}
#page.vacancies .filters-controls .menu-title,
#page.vacancies .filter-results .menu-title {
  font-size: 16px;
  color: #000;
  font-family: "Roboto", sans-serif;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 992px) {
  #page.vacancies .filters .group .group-row {
    border-bottom: 1px solid #DDDDDD;
  }
}
#page.vacancies .filters .group .sidebar-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-decoration: none;
  cursor: pointer;
}
#page.vacancies .filters .group .sidebar-title:hover {
  text-decoration: none !important;
  color: #000;
}
#page.vacancies .filters .group .sidebar-title i {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  font-size: 12px;
}
#page.vacancies .filters .group .sidebar-title.collapsed i {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
#page.vacancies .filters .group .values .value label {
  font-weight: normal !important;
}
#page.vacancies .filters .group .values .value > div:last-child {
  text-align: right;
}
#page.vacancies .filters .group .values .value > div:last-child span {
  font-size: 10px;
  background-color: #F9F9F9;
  color: #575756;
}
@media (max-width: 991.98px) {
  #page.vacancies .vacancies-controls .filters-mobile-toggle {
    display: block !important;
    position: fixed;
    z-index: 50;
    background: #fff;
    border: 1px solid #DDDDDD;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 !important;
    padding: 15px;
  }
}
#page.vacancies .vacancies-controls .counting {
  text-align: left;
}

@media (max-width: 991.98px) {
  body.filters-mobile-open {
    overflow: hidden;
  }
  body.filters-mobile-open #page.vacancies .page-aside {
    left: 0px !important;
    height: calc(100vh);
    max-width: calc(100% - 4.8rem);
  }
  body.filters-mobile-open #page.vacancies .mobile {
    height: calc(100vh - 133px);
    overflow-y: auto;
    overflow-x: hidden;
  }
  body.filters-mobile-open #page.vacancies .filters-controls,
body.filters-mobile-open #page.vacancies .filter-results {
    height: 50px;
    left: 0px;
    right: 0px;
  }
  body.filters-mobile-open #page.vacancies .filters-controls {
    height: 41px !important;
    line-height: 41px !important;
    background-color: #F9F9F9;
    display: block !important;
  }
  body.filters-mobile-open #page.vacancies .filters-controls > div > div:first-child {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    vertical-align: middle;
  }
  body.filters-mobile-open #page.vacancies .filters-controls > div > div:last-child {
    text-align: right;
  }
  body.filters-mobile-open #page.vacancies .filters-controls .btn-close-filter {
    color: #575756;
    font-size: 15px;
  }
  body.filters-mobile-open #page.vacancies .categories {
    cursor: pointer !important;
    padding-bottom: 15px;
    padding-top: 15px;
    border-top: 1px solid #DDDDDD;
  }
  body.filters-mobile-open #page.vacancies .categories ul {
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 0px;
  }
  body.filters-mobile-open #page.vacancies .categories ul li {
    padding-left: 15px;
  }
  body.filters-mobile-open #page.vacancies .categories ul li li {
    padding-left: 60px !important;
  }
  body.filters-mobile-open #page.vacancies .categories ul li li li {
    padding-left: 90px !important;
  }
  body.filters-mobile-open #page.vacancies .categories ul ul {
    margin-left: -30px !important;
  }
  body.filters-mobile-open #page.vacancies .categories ul ul ul {
    margin-left: -45px !important;
  }
  body.filters-mobile-open #page.vacancies .filters {
    margin-top: 0px !important;
  }
  body.filters-mobile-open #page.vacancies .filters .group {
    margin-top: 1rem !important;
    padding-bottom: 15px;
    border-bottom: 1px solid #DDDDDD;
  }
  body.filters-mobile-open #page.vacancies .filter-block {
    padding: 0 14px;
  }
  body.filters-mobile-open #page.vacancies .filter-block .filter-header {
    padding: 12px 0;
  }
  body.filters-mobile-open #page.vacancies .filter-buttons {
    bottom: 0px;
    width: 100%;
    background: #fff;
    z-index: 51;
    padding-bottom: 20px;
    position: sticky !important;
  }
  body.filters-mobile-open #page.vacancies .sorting-on {
    border-bottom: 1px solid #DDDDDD;
  }
  body #page.vacancies .page-aside {
    -webkit-transition: left 0.5s ease-out;
    transition: left 0.5s ease-out;
    left: -100%;
    width: 100%;
    top: 0px;
    bottom: 0px;
    position: fixed;
    z-index: 9999;
    margin-top: 0px;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  body #page.vacancies .filter-results,
body #page.vacancies .page-aside,
body #page.vacancies .mobile {
    display: block !important;
    background: #fff !important;
  }
}
#page.vacancies-specific {
  padding-bottom: 0px !important;
}
#page.vacancies-specific .page-content .date-published {
  display: none;
  width: 100%;
}
#page.vacancies-specific .page-content .publisher {
  display: block;
}
#page.vacancies-specific .page-aside .block-sidebar,
#page.vacancies-specific .page-aside .employee-specific {
  margin-bottom: 1.5rem;
}
#page.vacancies-specific .page-aside .card-sidebar .card-header {
  font-family: "Roboto", sans-serif;
}
#page.vacancies-specific .page-aside .card-sidebar i {
  margin-right: 0.5rem;
  color: #282023;
}
@media (max-width: 991.98px) {
  #page.vacancies-specific h2.page-title {
    margin-bottom: 0px !important;
  }
}
@media (max-width: 991.98px) {
  #page.vacancies-specific .page-button {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 80;
    margin: 0 !important;
    width: 100%;
    padding: 12px 14px !important;
  }
  #page.vacancies-specific .page-button .btn {
    text-align: center !important;
    display: inline-block;
    width: calc(100% - 64px) !important;
  }
}

:root {
  --theme-color-primary: #282023;
  --theme-color-secondary: #7B5A51;
  --theme-color-success: #00b900;
  --theme-color-info: #17a2b8;
  --theme-color-warning: #ffc107;
  --theme-color-danger: #dc3545;
  --theme-color-light: #f8f9fa;
  --theme-color-dark: #343a40;
  --theme-color-tertiary: #375D8E;
  --style-primary: #fff;
  --style-secondary: #696969;
  --style-tertiary: #000000;
  --style-quaternary: #D6D6D6;
}

html, body {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 20px;
  line-height: 1.8;
  font-weight: normal;
  overflow-x: hidden;
}
@media (max-width: 991.98px) {
  html, body {
    font-size: 16px;
  }
}

label {
  font-weight: 700;
}

.loading {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 999999999;
  background: #79797942;
  backdrop-filter: blur(1px);
}
.loading i {
  position: relative;
  left: 50%;
  top: 50%;
}

.loading-search .fa-spin {
  color: #282023;
  position: absolute;
  top: 25%;
  right: 45%;
}

.overlay-gradient,
.read-more-gradient {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 60;
  background-color: rgba(0, 0, 0, 0.7);
}

.read-more-gradient {
  z-index: 1001 !important;
}

#cookie-notification-popup {
  z-index: 999999;
  background-color: rgba(0, 0, 0, 0.45);
}
#cookie-notification-popup.modal .modal-content {
  max-height: 90vh;
}
#cookie-notification-popup.modal .modal-body {
  max-height: 85vh;
  overflow: auto;
}
#cookie-notification-popup .logo img {
  height: 40px;
}
#cookie-notification-popup .cookie-link {
  text-decoration: underline;
  color: #7B5A51;
  cursor: pointer;
}
#cookie-notification-popup .cookie-link:hover {
  color: #5c443d;
}

#consent-banner {
  z-index: 999999;
  -webkit-box-shadow: 0 -1px 10px 0 #acabab4d;
  box-shadow: 0 -1px 10px 0 #acabab4d;
  bottom: 0;
  background: #fff;
}
#consent-banner .consent-title {
  color: #000;
}

.dev-warning-css {
  outline: 3px dashed red !important;
  outline-offset: -3px;
}

.custom-scroll::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.3);
  background-color: #ffffff;
}

.custom-scroll::-webkit-scrollbar {
  height: 5px;
  width: 5px;
  background-color: transparent;
}

.custom-scroll::-webkit-scrollbar-thumb {
  background-color: #CCCCCC;
}
.custom-scroll::-webkit-scrollbar-thumb:hover {
  background-color: #a5a5a5;
}

.custom-scroll {
  scrollbar-width: thin;
  scrollbar-color: #CCCCCC transparent;
}

.google-tag-manager {
  height: 0px;
  width: 0px;
  display: none;
  visibility: hidden;
}

.price-from-strike {
  position: relative;
}
.price-from-strike:before {
  border-top: 1px solid;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: rotate(-10deg);
  transform: rotate(-10deg);
}

/*
	Landingspage css.
	hide/remove elements.
*/
.style-landing-page #page {
  padding-top: 0px !important;
}
.style-landing-page #page > .style {
  padding-top: 32px !important;
}
.style-landing-page header {
  position: relative !important;
}
.style-landing-page header.header-a .search-bar,
.style-landing-page header.header-a .search-bar + div,
.style-landing-page header.header-a .logo + div,
.style-landing-page header.header-a .bottom {
  display: none !important;
}
.style-landing-page header.header-a .middle {
  border-bottom: 1px solid #DDDDDD;
}
.style-landing-page header.header-b .search-bar,
.style-landing-page header.header-b .search-bar + div,
.style-landing-page header.header-b .logo + div,
.style-landing-page header.header-b .bottom {
  display: none !important;
}
.style-landing-page header.header-b .middle {
  border-bottom: 1px solid #DDDDDD;
}
.style-landing-page header.header-c .search-bar,
.style-landing-page header.header-c .menu-mobile-open {
  display: none !important;
}
.style-landing-page header.header-d .contact,
.style-landing-page header.header-d .search-bar,
.style-landing-page header.header-d .menu-mobile-open {
  display: none !important;
}
.style-landing-page header.header-e .bottom-menu + div,
.style-landing-page header.header-e .search-bar {
  display: none !important;
}
.style-landing-page header.header-f .kiyoh,
.style-landing-page header.header-f .bottom-right,
.style-landing-page header.header-f .search-bar {
  display: none !important;
}
.style-landing-page header.header-x ._default,
.style-landing-page header.header-x ._menu,
.style-landing-page header.header-x ._search,
.style-landing-page header.header-x ._divider,
.style-landing-page header.header-x ._button,
.style-landing-page header.header-x > div > div._layer:first-child,
.style-landing-page header.header-x > div > div._layer:last-child {
  display: none !important;
}
.style-landing-page header .top,
.style-landing-page header ul.nav,
.style-landing-page .block-breadcrumb,
.style-landing-page .block-contact-grid-c,
.style-landing-page .tablet,
.style-landing-page footer {
  display: none !important;
}

.meter-bar {
  position: relative;
  height: 20px;
  background-color: #fff;
  border: 1px solid #DDDDDD;
  border-radius: 4px;
  color: #000;
  font-size: 12px;
  overflow: hidden;
}
.meter-bar .meter-bar-progress {
  display: block;
  height: 100%;
  position: relative;
  background-color: darkgray;
  -webkit-transition: width 1.2s ease-out;
  transition: width 1.2s ease-out;
}
.meter-bar.big {
  height: 24px;
}

.cursor-pointer {
  cursor: pointer;
}

.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 1rem;
  z-index: 999999999999 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.toast {
  min-width: 250px;
  max-width: 350px;
  padding: 15px 20px;
  border-radius: 6px;
  color: white;
  font-size: 14px;
  -webkit-animation: slideIn 0.4s ease-out;
  animation: slideIn 0.4s ease-out;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  opacity: 0.95;
}

.toast.toast-success {
  background-color: #28a745;
}

.toast.toast-error {
  background-color: #dc3545;
}

.toast.toast-danger {
  background-color: #dc3545;
}

.toast.toast-info {
  background-color: #17a2b8;
}

.toast.toast-warning {
  background-color: #ffc107;
  color: #000;
}

.toast .close-btn {
  position: absolute;
  top: 6px;
  right: 10px;
  cursor: pointer;
  font-weight: bold;
  color: white;
}

@-webkit-keyframes slideIn {
  from {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0.95;
  }
}

@keyframes slideIn {
  from {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0.95;
  }
}
.ui-datepicker.ui-widget.ui-widget-content {
  margin: 5px auto 0;
  border-radius: 0;
  padding: 20px 10px 10px 10px;
  border: 1px solid #282023;
  font-weight: 400;
  background: #fff;
}
.ui-datepicker.ui-widget.ui-widget-content a {
  text-decoration: none;
}
.ui-datepicker.ui-widget.ui-widget-content .ui-datepicker-header {
  border-radius: 0;
  border: none;
  background: none;
}
.ui-datepicker.ui-widget.ui-widget-content .ui-state-default {
  background-color: transparent;
  border: none;
  font-size: 16px;
  letter-spacing: 0.4px;
  padding: 5px;
  text-align: center;
}
.ui-datepicker.ui-widget.ui-widget-content .ui-state-highlight {
  background-color: #fff;
  color: #282023;
}
.ui-datepicker.ui-widget.ui-widget-content .ui-state-active, .ui-datepicker.ui-widget.ui-widget-content .ui-state-hover:not(.ui-datepicker-next-hover, .ui-datepicker-prev-hover) {
  background-color: #282023;
  color: #fff;
}

.object-fit-coverimg,
.object-fit-cover > img,
.object-fit-cover img {
  -o-object-fit: cover;
  object-fit: cover;
}

.object-fit-containimg,
.object-fit-contain > img,
.object-fit-contain img {
  -o-object-fit: contain;
  object-fit: contain;
}
/*# sourceMappingURL=maps/style.css.map */
