@charset "UTF-8";
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
}

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

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

hr:not([size]) {
  height: 1px;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

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

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

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

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

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

ol,
ul {
  padding-left: 2rem;
}

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #0d6efd;
  text-decoration: underline;
}
a:hover {
  color: #0a58ca;
}

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

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr /* rtl:ignore */;
  unicode-bidi: bidi-override;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

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

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

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

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

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

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

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

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

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

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

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
}

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

output {
  display: inline-block;
}

iframe {
  border: 0;
}

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

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

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

.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}

.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}

.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}

.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}

.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: 0.875em;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.blockquote > :last-child {
  margin-bottom: 0;
}

.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

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

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

.figure {
  display: inline-block;
}

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

.figure-caption {
  font-size: 0.875em;
  color: #6c757d;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
.row, .total, .wvd.orderlist .orderlist_header, .wvd.orderlist .orderlist_row, .subcats, .cat_description, .cross_selling .item, .listingcontainer .item, .listingcontainer_full .item, .listingcontainer_details .item {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}
.row > *, .total > *, .wvd.orderlist .orderlist_header > *, .wvd.orderlist .orderlist_row > *, .subcats > *, .cat_description > *, .cross_selling .item > *, .listingcontainer .item > *, .listingcontainer_full .item > *, .listingcontainer_details .item > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
}

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

.col-2, .wvd.orderlist .ol_image {
  flex: 0 0 auto;
  width: 16.66666667%;
}

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

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

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

.col-6, .subcats .subcatsitem {
  flex: 0 0 auto;
  width: 50%;
}

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

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

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

.col-10, .wvd.orderlist .ol_productsname {
  flex: 0 0 auto;
  width: 83.33333333%;
}

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

.col-12, .total .list, .total .remarks, .wvd.orderlist .ol_price {
  flex: 0 0 auto;
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2, .cross_selling .item .img, .listingcontainer .item .img, .listingcontainer_full .item .img, .listingcontainer_details .item .img {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3, .subcats .subcatsitem, .cross_selling .item > .buy, .listingcontainer .item > .buy, .listingcontainer_full .item > .buy, .listingcontainer_details .item > .buy {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7, .cross_selling .item .txt, .listingcontainer .item .txt, .listingcontainer_full .item .txt, .listingcontainer_details .item .txt {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
.gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
.gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
.gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
.gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
.gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
.gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
.gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
.gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
.gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
.gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
.gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
.gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1, .wvd.orderlist .ol_image {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5, .total .remarks, .wvd.orderlist .ol_price {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6, .wvd.orderlist .ol_productsname {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7, .total .list {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
.gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
.gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
.gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
.gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
.gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
.gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
.gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
.gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
.gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
.gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
.gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
.gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4, .wvd.orderlist .ol_price {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6, .total .list, .total .remarks {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7, .wvd.orderlist .ol_productsname {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
.gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
.gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
.gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
.gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
.gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
.gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
.gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
.gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
.gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
.gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
.gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
.gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
.gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
.gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
.gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
.gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
.gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
.gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
.gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
.gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
.gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
.gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
.gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
.gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
.gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
.gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
.gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
.gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
.gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
.gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
.gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
.gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
.gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
.gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
.gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
.gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.link-primary {
  color: #0d6efd;
}
.link-primary:hover, .link-primary:focus {
  color: #0a58ca;
}

.link-secondary {
  color: #6c757d;
}
.link-secondary:hover, .link-secondary:focus {
  color: #565e64;
}

.link-success {
  color: #198754;
}
.link-success:hover, .link-success:focus {
  color: #146c43;
}

.link-info {
  color: #0dcaf0;
}
.link-info:hover, .link-info:focus {
  color: #3dd5f3;
}

.link-warning {
  color: #ffc107;
}
.link-warning:hover, .link-warning:focus {
  color: #ffcd39;
}

.link-danger {
  color: #dc3545;
}
.link-danger:hover, .link-danger:focus {
  color: #b02a37;
}

.link-light {
  color: #f8f9fa;
}
.link-light:hover, .link-light:focus {
  color: #f9fafb;
}

.link-dark {
  color: #212529;
}
.link-dark:hover, .link-dark:focus {
  color: #1a1e21;
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}

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

.sticky-top, .content_navbar {
  position: sticky;
  top: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.visually-hidden, .content_navbar .wishlist a .count .desc, .content_navbar .cart a .count .desc,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.stretched-link::after, .subcats .subcatsitem .card-body a::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

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

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

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

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

.toast {
  width: 350px;
  max-width: 100%;
  font-size: 0.875rem;
  pointer-events: auto;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
.toast:not(.showing):not(.show) {
  opacity: 0;
}
.toast.hide {
  display: none;
}

.toast-container {
  width: max-content;
  max-width: 100%;
  pointer-events: none;
}
.toast-container > :not(:last-child) {
  margin-bottom: 0.75rem;
}

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

.toast-body {
  padding: 0.75rem;
  word-wrap: break-word;
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5;
}
.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}
.btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  opacity: 1;
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  user-select: none;
  opacity: 0.25;
}

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.accordion-button, #product_info > .accordion > div > h3 > button, #product_info > .accordion > div > .h3 > button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  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, border-radius 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button, #product_info > .accordion > div > h3 > button, #product_info > .accordion > div > .h3 > button {
    transition: none;
  }
}
.accordion-button:not(.collapsed), #product_info > .accordion > div > h3 > button:not(.collapsed), #product_info > .accordion > div > .h3 > button:not(.collapsed) {
  color: #0c63e4;
  background-color: #e7f1ff;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}
.accordion-button:not(.collapsed)::after, #product_info > .accordion > div > h3 > button:not(.collapsed)::after, #product_info > .accordion > div > .h3 > button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}
.accordion-button::after, #product_info > .accordion > div > h3 > button::after, #product_info > .accordion > div > .h3 > button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after, #product_info > .accordion > div > h3 > button::after, #product_info > .accordion > div > .h3 > button::after {
    transition: none;
  }
}
.accordion-button:hover, #product_info > .accordion > div > h3 > button:hover, #product_info > .accordion > div > .h3 > button:hover {
  z-index: 2;
}
.accordion-button:focus, #product_info > .accordion > div > h3 > button:focus, #product_info > .accordion > div > .h3 > button:focus {
  z-index: 3;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.accordion-header, #product_info > .accordion > div > h3, #product_info > .accordion > div > .h3 {
  margin-bottom: 0;
}

.accordion-item, #product_info > .accordion > div {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.accordion-item:first-of-type, #product_info > .accordion > div:first-of-type {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.accordion-item:first-of-type .accordion-button, .accordion-item:first-of-type #product_info > .accordion > div > h3 > button, .accordion-item:first-of-type #product_info > .accordion > div > .h3 > button, #product_info > .accordion > div:first-of-type .accordion-button, #product_info > .accordion > div:first-of-type #product_info > .accordion > div > h3 > button, #product_info > .accordion > div:first-of-type #product_info > .accordion > div > .h3 > button {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.accordion-item:not(:first-of-type), #product_info > .accordion > div:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type, #product_info > .accordion > div:last-of-type {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.accordion-item:last-of-type .accordion-button.collapsed, .accordion-item:last-of-type #product_info > .accordion > div > h3 > button.collapsed, .accordion-item:last-of-type #product_info > .accordion > div > .h3 > button.collapsed, #product_info > .accordion > div:last-of-type .accordion-button.collapsed, #product_info > .accordion > div:last-of-type #product_info > .accordion > div > h3 > button.collapsed, #product_info > .accordion > div:last-of-type #product_info > .accordion > div > .h3 > button.collapsed {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.accordion-item:last-of-type .accordion-collapse, .accordion-item:last-of-type #product_info > .accordion > div > div, #product_info > .accordion > div:last-of-type .accordion-collapse, #product_info > .accordion > div:last-of-type #product_info > .accordion > div > div {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.accordion-body {
  padding: 1rem 1.25rem;
}

.accordion-flush .accordion-collapse, .accordion-flush #product_info > .accordion > div > div, #product_info .cross_selling .accordion .accordion-collapse, #product_info .cross_selling #product_info > .accordion > div > div {
  border-width: 0;
}
.accordion-flush .accordion-item, .accordion-flush #product_info > .accordion > div, #product_info .cross_selling .accordion .accordion-item, #product_info .cross_selling #product_info > .accordion > div {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush .accordion-item:first-child, .accordion-flush #product_info > .accordion > div:first-child, #product_info .cross_selling .accordion .accordion-item:first-child, #product_info .cross_selling #product_info > .accordion > div:first-child {
  border-top: 0;
}
.accordion-flush .accordion-item:last-child, .accordion-flush #product_info > .accordion > div:last-child, #product_info .cross_selling .accordion .accordion-item:last-child, #product_info .cross_selling #product_info > .accordion > div:last-child {
  border-bottom: 0;
}
.accordion-flush .accordion-item .accordion-button, .accordion-flush #product_info > .accordion > div .accordion-button, .accordion-flush #product_info > .accordion > div > h3 > button, .accordion-flush #product_info > .accordion > div > .h3 > button, #product_info .cross_selling .accordion .accordion-item .accordion-button, #product_info .cross_selling #product_info > .accordion > div .accordion-button, #product_info .cross_selling #product_info > .accordion > div > h3 > button, #product_info .cross_selling #product_info > .accordion > div > .h3 > button {
  border-radius: 0;
}

.badge, .content_navbar .wishlist a .count, .content_navbar .cart a .count {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}
.badge:empty, .content_navbar .wishlist a .count:empty, .content_navbar .cart a .count:empty {
  display: none;
}

.btn .badge, .btn .content_navbar .wishlist a .count, .content_navbar .wishlist a .btn .count, .btn .content_navbar .cart a .count, .content_navbar .cart a .btn .count {
  position: relative;
  top: -1px;
}

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

.card-body {
  flex: 1 1 auto;
  padding: 1rem 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

.card-group > .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
.card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
.card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
.card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
.card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
}
.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
}

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

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0.25rem;
}

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

.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
@media (min-width: 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
}
.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.55);
}
.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 .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.55);
  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' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%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.55);
}
.navbar-light .navbar-text a,
.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.55);
}
.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 .nav-link.active {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.55);
  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' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%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.55);
}
.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: #fff;
}

.tooltip {
  position: absolute;
  z-index: 1080;
  display: block;
  margin: 0;
  font-family: var(--bs-font-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: 0.9;
}
.tooltip .tooltip-arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

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

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

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

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

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

/*!
 * Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2022 Fonticons, Inc.
 */
.fa {
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: var(--fa-style, 900);
}

.fa,
.fa-classic,
.fa-sharp,
.fas,
.fa-solid,
div.discount-scale ul li::before,
.far,
.fa-regular,
.fab,
.fa-brands {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}

.fas,
.fa-classic,
.fa-solid,
div.discount-scale ul li::before,
.far,
.fa-regular {
  font-family: "Font Awesome 6 Free";
}

.fab,
.fa-brands {
  font-family: "Font Awesome 6 Brands";
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-2xs {
  font-size: 0.625em;
  line-height: 0.1em;
  vertical-align: 0.225em;
}

.fa-xs {
  font-size: 0.75em;
  line-height: 0.0833333337em;
  vertical-align: 0.125em;
}

.fa-sm {
  font-size: 0.875em;
  line-height: 0.0714285718em;
  vertical-align: 0.0535714295em;
}

.fa-lg {
  font-size: 1.25em;
  line-height: 0.05em;
  vertical-align: -0.075em;
}

.fa-xl {
  font-size: 1.5em;
  line-height: 0.0416666682em;
  vertical-align: -0.125em;
}

.fa-2xl {
  font-size: 2em;
  line-height: 0.03125em;
  vertical-align: -0.1875em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: var(--fa-li-margin, 2.5em);
  padding-left: 0;
}
.fa-ul > li {
  position: relative;
}

.fa-li, div.discount-scale ul li::before {
  left: calc(var(--fa-li-width, 2em) * -1);
  position: absolute;
  text-align: center;
  width: var(--fa-li-width, 2em);
  line-height: inherit;
}

.fa-border {
  border-color: var(--fa-border-color, #eee);
  border-radius: var(--fa-border-radius, 0.1em);
  border-style: var(--fa-border-style, solid);
  border-width: var(--fa-border-width, 0.08em);
  padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);
}

.fa-pull-left {
  float: left;
  margin-right: var(--fa-pull-margin, 0.3em);
}

.fa-pull-right {
  float: right;
  margin-left: var(--fa-pull-margin, 0.3em);
}

.fa-beat {
  animation-name: fa-beat;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-bounce {
  animation-name: fa-bounce;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));
}

.fa-fade {
  animation-name: fa-fade;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}

.fa-beat-fade {
  animation-name: fa-beat-fade;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}

.fa-flip {
  animation-name: fa-flip;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-shake {
  animation-name: fa-shake;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-spin {
  animation-name: fa-spin;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 2s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-spin-reverse {
  --fa-animation-direction: reverse;
}

.fa-pulse,
.fa-spin-pulse {
  animation-name: fa-spin;
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, steps(8));
}

@media (prefers-reduced-motion: reduce) {
  .fa-beat,
.fa-bounce,
.fa-fade,
.fa-beat-fade,
.fa-flip,
.fa-pulse,
.fa-shake,
.fa-spin,
.fa-spin-pulse {
    animation-delay: -1ms;
    animation-duration: 1ms;
    animation-iteration-count: 1;
    transition-delay: 0s;
    transition-duration: 0s;
  }
}
@keyframes fa-beat {
  0%, 90% {
    transform: scale(1);
  }
  45% {
    transform: scale(var(--fa-beat-scale, 1.25));
  }
}
@keyframes fa-bounce {
  0% {
    transform: scale(1, 1) translateY(0);
  }
  10% {
    transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
  }
  30% {
    transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
  }
  50% {
    transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
  }
  57% {
    transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
@keyframes fa-fade {
  50% {
    opacity: var(--fa-fade-opacity, 0.4);
  }
}
@keyframes fa-beat-fade {
  0%, 100% {
    opacity: var(--fa-beat-fade-opacity, 0.4);
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(var(--fa-beat-fade-scale, 1.125));
  }
}
@keyframes fa-flip {
  50% {
    transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
  }
}
@keyframes fa-shake {
  0% {
    transform: rotate(-15deg);
  }
  4% {
    transform: rotate(15deg);
  }
  8%, 24% {
    transform: rotate(-18deg);
  }
  12%, 28% {
    transform: rotate(18deg);
  }
  16% {
    transform: rotate(-22deg);
  }
  20% {
    transform: rotate(22deg);
  }
  32% {
    transform: rotate(-12deg);
  }
  36% {
    transform: rotate(12deg);
  }
  40%, 100% {
    transform: rotate(0deg);
  }
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  transform: rotate(90deg);
}

.fa-rotate-180 {
  transform: rotate(180deg);
}

.fa-rotate-270 {
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  transform: scale(1, -1);
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
  transform: scale(-1, -1);
}

.fa-rotate-by {
  transform: rotate(var(--fa-rotate-angle, none));
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: var(--fa-stack-z-index, auto);
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: var(--fa-inverse, #fff);
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-0::before {
  content: "\30 ";
}

.fa-1::before {
  content: "\31 ";
}

.fa-2::before {
  content: "\32 ";
}

.fa-3::before {
  content: "\33 ";
}

.fa-4::before {
  content: "\34 ";
}

.fa-5::before {
  content: "\35 ";
}

.fa-6::before {
  content: "\36 ";
}

.fa-7::before {
  content: "\37 ";
}

.fa-8::before {
  content: "\38 ";
}

.fa-9::before {
  content: "\39 ";
}

.fa-fill-drip::before {
  content: "\f576";
}

.fa-arrows-to-circle::before {
  content: "\e4bd";
}

.fa-circle-chevron-right::before {
  content: "\f138";
}

.fa-chevron-circle-right::before {
  content: "\f138";
}

.fa-at::before {
  content: "\@";
}

.fa-trash-can::before {
  content: "\f2ed";
}

.fa-trash-alt::before {
  content: "\f2ed";
}

.fa-text-height::before {
  content: "\f034";
}

.fa-user-xmark::before {
  content: "\f235";
}

.fa-user-times::before {
  content: "\f235";
}

.fa-stethoscope::before {
  content: "\f0f1";
}

.fa-message::before {
  content: "\f27a";
}

.fa-comment-alt::before {
  content: "\f27a";
}

.fa-info::before {
  content: "\f129";
}

.fa-down-left-and-up-right-to-center::before {
  content: "\f422";
}

.fa-compress-alt::before {
  content: "\f422";
}

.fa-explosion::before {
  content: "\e4e9";
}

.fa-file-lines::before {
  content: "\f15c";
}

.fa-file-alt::before {
  content: "\f15c";
}

.fa-file-text::before {
  content: "\f15c";
}

.fa-wave-square::before {
  content: "\f83e";
}

.fa-ring::before {
  content: "\f70b";
}

.fa-building-un::before {
  content: "\e4d9";
}

.fa-dice-three::before {
  content: "\f527";
}

.fa-calendar-days::before {
  content: "\f073";
}

.fa-calendar-alt::before {
  content: "\f073";
}

.fa-anchor-circle-check::before {
  content: "\e4aa";
}

.fa-building-circle-arrow-right::before {
  content: "\e4d1";
}

.fa-volleyball::before {
  content: "\f45f";
}

.fa-volleyball-ball::before {
  content: "\f45f";
}

.fa-arrows-up-to-line::before {
  content: "\e4c2";
}

.fa-sort-down::before {
  content: "\f0dd";
}

.fa-sort-desc::before {
  content: "\f0dd";
}

.fa-circle-minus::before {
  content: "\f056";
}

.fa-minus-circle::before {
  content: "\f056";
}

.fa-door-open::before {
  content: "\f52b";
}

.fa-right-from-bracket::before {
  content: "\f2f5";
}

.fa-sign-out-alt::before {
  content: "\f2f5";
}

.fa-atom::before {
  content: "\f5d2";
}

.fa-soap::before {
  content: "\e06e";
}

.fa-icons::before {
  content: "\f86d";
}

.fa-heart-music-camera-bolt::before {
  content: "\f86d";
}

.fa-microphone-lines-slash::before {
  content: "\f539";
}

.fa-microphone-alt-slash::before {
  content: "\f539";
}

.fa-bridge-circle-check::before {
  content: "\e4c9";
}

.fa-pump-medical::before {
  content: "\e06a";
}

.fa-fingerprint::before {
  content: "\f577";
}

.fa-hand-point-right::before {
  content: "\f0a4";
}

.fa-magnifying-glass-location::before {
  content: "\f689";
}

.fa-search-location::before {
  content: "\f689";
}

.fa-forward-step::before {
  content: "\f051";
}

.fa-step-forward::before {
  content: "\f051";
}

.fa-face-smile-beam::before {
  content: "\f5b8";
}

.fa-smile-beam::before {
  content: "\f5b8";
}

.fa-flag-checkered::before {
  content: "\f11e";
}

.fa-football::before {
  content: "\f44e";
}

.fa-football-ball::before {
  content: "\f44e";
}

.fa-school-circle-exclamation::before {
  content: "\e56c";
}

.fa-crop::before {
  content: "\f125";
}

.fa-angles-down::before {
  content: "\f103";
}

.fa-angle-double-down::before {
  content: "\f103";
}

.fa-users-rectangle::before {
  content: "\e594";
}

.fa-people-roof::before {
  content: "\e537";
}

.fa-people-line::before {
  content: "\e534";
}

.fa-beer-mug-empty::before {
  content: "\f0fc";
}

.fa-beer::before {
  content: "\f0fc";
}

.fa-diagram-predecessor::before {
  content: "\e477";
}

.fa-arrow-up-long::before {
  content: "\f176";
}

.fa-long-arrow-up::before {
  content: "\f176";
}

.fa-fire-flame-simple::before {
  content: "\f46a";
}

.fa-burn::before {
  content: "\f46a";
}

.fa-person::before {
  content: "\f183";
}

.fa-male::before {
  content: "\f183";
}

.fa-laptop::before {
  content: "\f109";
}

.fa-file-csv::before {
  content: "\f6dd";
}

.fa-menorah::before {
  content: "\f676";
}

.fa-truck-plane::before {
  content: "\e58f";
}

.fa-record-vinyl::before {
  content: "\f8d9";
}

.fa-face-grin-stars::before {
  content: "\f587";
}

.fa-grin-stars::before {
  content: "\f587";
}

.fa-bong::before {
  content: "\f55c";
}

.fa-spaghetti-monster-flying::before {
  content: "\f67b";
}

.fa-pastafarianism::before {
  content: "\f67b";
}

.fa-arrow-down-up-across-line::before {
  content: "\e4af";
}

.fa-spoon::before {
  content: "\f2e5";
}

.fa-utensil-spoon::before {
  content: "\f2e5";
}

.fa-jar-wheat::before {
  content: "\e517";
}

.fa-envelopes-bulk::before {
  content: "\f674";
}

.fa-mail-bulk::before {
  content: "\f674";
}

.fa-file-circle-exclamation::before {
  content: "\e4eb";
}

.fa-circle-h::before {
  content: "\f47e";
}

.fa-hospital-symbol::before {
  content: "\f47e";
}

.fa-pager::before {
  content: "\f815";
}

.fa-address-book::before {
  content: "\f2b9";
}

.fa-contact-book::before {
  content: "\f2b9";
}

.fa-strikethrough::before {
  content: "\f0cc";
}

.fa-k::before {
  content: "K";
}

.fa-landmark-flag::before {
  content: "\e51c";
}

.fa-pencil::before {
  content: "\f303";
}

.fa-pencil-alt::before {
  content: "\f303";
}

.fa-backward::before {
  content: "\f04a";
}

.fa-caret-right::before {
  content: "\f0da";
}

.fa-comments::before {
  content: "\f086";
}

.fa-paste::before {
  content: "\f0ea";
}

.fa-file-clipboard::before {
  content: "\f0ea";
}

.fa-code-pull-request::before {
  content: "\e13c";
}

.fa-clipboard-list::before {
  content: "\f46d";
}

.fa-truck-ramp-box::before {
  content: "\f4de";
}

.fa-truck-loading::before {
  content: "\f4de";
}

.fa-user-check::before {
  content: "\f4fc";
}

.fa-vial-virus::before {
  content: "\e597";
}

.fa-sheet-plastic::before {
  content: "\e571";
}

.fa-blog::before {
  content: "\f781";
}

.fa-user-ninja::before {
  content: "\f504";
}

.fa-person-arrow-up-from-line::before {
  content: "\e539";
}

.fa-scroll-torah::before {
  content: "\f6a0";
}

.fa-torah::before {
  content: "\f6a0";
}

.fa-broom-ball::before {
  content: "\f458";
}

.fa-quidditch::before {
  content: "\f458";
}

.fa-quidditch-broom-ball::before {
  content: "\f458";
}

.fa-toggle-off::before {
  content: "\f204";
}

.fa-box-archive::before {
  content: "\f187";
}

.fa-archive::before {
  content: "\f187";
}

.fa-person-drowning::before {
  content: "\e545";
}

.fa-arrow-down-9-1::before {
  content: "\f886";
}

.fa-sort-numeric-desc::before {
  content: "\f886";
}

.fa-sort-numeric-down-alt::before {
  content: "\f886";
}

.fa-face-grin-tongue-squint::before {
  content: "\f58a";
}

.fa-grin-tongue-squint::before {
  content: "\f58a";
}

.fa-spray-can::before {
  content: "\f5bd";
}

.fa-truck-monster::before {
  content: "\f63b";
}

.fa-w::before {
  content: "W";
}

.fa-earth-africa::before {
  content: "\f57c";
}

.fa-globe-africa::before {
  content: "\f57c";
}

.fa-rainbow::before {
  content: "\f75b";
}

.fa-circle-notch::before {
  content: "\f1ce";
}

.fa-tablet-screen-button::before {
  content: "\f3fa";
}

.fa-tablet-alt::before {
  content: "\f3fa";
}

.fa-paw::before {
  content: "\f1b0";
}

.fa-cloud::before {
  content: "\f0c2";
}

.fa-trowel-bricks::before {
  content: "\e58a";
}

.fa-face-flushed::before {
  content: "\f579";
}

.fa-flushed::before {
  content: "\f579";
}

.fa-hospital-user::before {
  content: "\f80d";
}

.fa-tent-arrow-left-right::before {
  content: "\e57f";
}

.fa-gavel::before {
  content: "\f0e3";
}

.fa-legal::before {
  content: "\f0e3";
}

.fa-binoculars::before {
  content: "\f1e5";
}

.fa-microphone-slash::before {
  content: "\f131";
}

.fa-box-tissue::before {
  content: "\e05b";
}

.fa-motorcycle::before {
  content: "\f21c";
}

.fa-bell-concierge::before {
  content: "\f562";
}

.fa-concierge-bell::before {
  content: "\f562";
}

.fa-pen-ruler::before {
  content: "\f5ae";
}

.fa-pencil-ruler::before {
  content: "\f5ae";
}

.fa-people-arrows::before {
  content: "\e068";
}

.fa-people-arrows-left-right::before {
  content: "\e068";
}

.fa-mars-and-venus-burst::before {
  content: "\e523";
}

.fa-square-caret-right::before {
  content: "\f152";
}

.fa-caret-square-right::before {
  content: "\f152";
}

.fa-scissors::before {
  content: "\f0c4";
}

.fa-cut::before {
  content: "\f0c4";
}

.fa-sun-plant-wilt::before {
  content: "\e57a";
}

.fa-toilets-portable::before {
  content: "\e584";
}

.fa-hockey-puck::before {
  content: "\f453";
}

.fa-table::before {
  content: "\f0ce";
}

.fa-magnifying-glass-arrow-right::before {
  content: "\e521";
}

.fa-tachograph-digital::before {
  content: "\f566";
}

.fa-digital-tachograph::before {
  content: "\f566";
}

.fa-users-slash::before {
  content: "\e073";
}

.fa-clover::before {
  content: "\e139";
}

.fa-reply::before {
  content: "\f3e5";
}

.fa-mail-reply::before {
  content: "\f3e5";
}

.fa-star-and-crescent::before {
  content: "\f699";
}

.fa-house-fire::before {
  content: "\e50c";
}

.fa-square-minus::before {
  content: "\f146";
}

.fa-minus-square::before {
  content: "\f146";
}

.fa-helicopter::before {
  content: "\f533";
}

.fa-compass::before {
  content: "\f14e";
}

.fa-square-caret-down::before {
  content: "\f150";
}

.fa-caret-square-down::before {
  content: "\f150";
}

.fa-file-circle-question::before {
  content: "\e4ef";
}

.fa-laptop-code::before {
  content: "\f5fc";
}

.fa-swatchbook::before {
  content: "\f5c3";
}

.fa-prescription-bottle::before {
  content: "\f485";
}

.fa-bars::before {
  content: "\f0c9";
}

.fa-navicon::before {
  content: "\f0c9";
}

.fa-people-group::before {
  content: "\e533";
}

.fa-hourglass-end::before {
  content: "\f253";
}

.fa-hourglass-3::before {
  content: "\f253";
}

.fa-heart-crack::before {
  content: "\f7a9";
}

.fa-heart-broken::before {
  content: "\f7a9";
}

.fa-square-up-right::before {
  content: "\f360";
}

.fa-external-link-square-alt::before {
  content: "\f360";
}

.fa-face-kiss-beam::before {
  content: "\f597";
}

.fa-kiss-beam::before {
  content: "\f597";
}

.fa-film::before {
  content: "\f008";
}

.fa-ruler-horizontal::before {
  content: "\f547";
}

.fa-people-robbery::before {
  content: "\e536";
}

.fa-lightbulb::before {
  content: "\f0eb";
}

.fa-caret-left::before {
  content: "\f0d9";
}

.fa-circle-exclamation::before {
  content: "\f06a";
}

.fa-exclamation-circle::before {
  content: "\f06a";
}

.fa-school-circle-xmark::before {
  content: "\e56d";
}

.fa-arrow-right-from-bracket::before {
  content: "\f08b";
}

.fa-sign-out::before {
  content: "\f08b";
}

.fa-circle-chevron-down::before {
  content: "\f13a";
}

.fa-chevron-circle-down::before {
  content: "\f13a";
}

.fa-unlock-keyhole::before {
  content: "\f13e";
}

.fa-unlock-alt::before {
  content: "\f13e";
}

.fa-cloud-showers-heavy::before {
  content: "\f740";
}

.fa-headphones-simple::before {
  content: "\f58f";
}

.fa-headphones-alt::before {
  content: "\f58f";
}

.fa-sitemap::before {
  content: "\f0e8";
}

.fa-circle-dollar-to-slot::before {
  content: "\f4b9";
}

.fa-donate::before {
  content: "\f4b9";
}

.fa-memory::before {
  content: "\f538";
}

.fa-road-spikes::before {
  content: "\e568";
}

.fa-fire-burner::before {
  content: "\e4f1";
}

.fa-flag::before {
  content: "\f024";
}

.fa-hanukiah::before {
  content: "\f6e6";
}

.fa-feather::before {
  content: "\f52d";
}

.fa-volume-low::before {
  content: "\f027";
}

.fa-volume-down::before {
  content: "\f027";
}

.fa-comment-slash::before {
  content: "\f4b3";
}

.fa-cloud-sun-rain::before {
  content: "\f743";
}

.fa-compress::before {
  content: "\f066";
}

.fa-wheat-awn::before {
  content: "\e2cd";
}

.fa-wheat-alt::before {
  content: "\e2cd";
}

.fa-ankh::before {
  content: "\f644";
}

.fa-hands-holding-child::before {
  content: "\e4fa";
}

.fa-asterisk::before {
  content: "\*";
}

.fa-square-check::before {
  content: "\f14a";
}

.fa-check-square::before {
  content: "\f14a";
}

.fa-peseta-sign::before {
  content: "\e221";
}

.fa-heading::before {
  content: "\f1dc";
}

.fa-header::before {
  content: "\f1dc";
}

.fa-ghost::before {
  content: "\f6e2";
}

.fa-list::before {
  content: "\f03a";
}

.fa-list-squares::before {
  content: "\f03a";
}

.fa-square-phone-flip::before {
  content: "\f87b";
}

.fa-phone-square-alt::before {
  content: "\f87b";
}

.fa-cart-plus::before {
  content: "\f217";
}

.fa-gamepad::before {
  content: "\f11b";
}

.fa-circle-dot::before {
  content: "\f192";
}

.fa-dot-circle::before {
  content: "\f192";
}

.fa-face-dizzy::before {
  content: "\f567";
}

.fa-dizzy::before {
  content: "\f567";
}

.fa-egg::before {
  content: "\f7fb";
}

.fa-house-medical-circle-xmark::before {
  content: "\e513";
}

.fa-campground::before {
  content: "\f6bb";
}

.fa-folder-plus::before {
  content: "\f65e";
}

.fa-futbol::before {
  content: "\f1e3";
}

.fa-futbol-ball::before {
  content: "\f1e3";
}

.fa-soccer-ball::before {
  content: "\f1e3";
}

.fa-paintbrush::before {
  content: "\f1fc";
}

.fa-paint-brush::before {
  content: "\f1fc";
}

.fa-lock::before {
  content: "\f023";
}

.fa-gas-pump::before {
  content: "\f52f";
}

.fa-hot-tub-person::before {
  content: "\f593";
}

.fa-hot-tub::before {
  content: "\f593";
}

.fa-map-location::before {
  content: "\f59f";
}

.fa-map-marked::before {
  content: "\f59f";
}

.fa-house-flood-water::before {
  content: "\e50e";
}

.fa-tree::before {
  content: "\f1bb";
}

.fa-bridge-lock::before {
  content: "\e4cc";
}

.fa-sack-dollar::before {
  content: "\f81d";
}

.fa-pen-to-square::before {
  content: "\f044";
}

.fa-edit::before {
  content: "\f044";
}

.fa-car-side::before {
  content: "\f5e4";
}

.fa-share-nodes::before {
  content: "\f1e0";
}

.fa-share-alt::before {
  content: "\f1e0";
}

.fa-heart-circle-minus::before {
  content: "\e4ff";
}

.fa-hourglass-half::before {
  content: "\f252";
}

.fa-hourglass-2::before {
  content: "\f252";
}

.fa-microscope::before {
  content: "\f610";
}

.fa-sink::before {
  content: "\e06d";
}

.fa-bag-shopping::before {
  content: "\f290";
}

.fa-shopping-bag::before {
  content: "\f290";
}

.fa-arrow-down-z-a::before {
  content: "\f881";
}

.fa-sort-alpha-desc::before {
  content: "\f881";
}

.fa-sort-alpha-down-alt::before {
  content: "\f881";
}

.fa-mitten::before {
  content: "\f7b5";
}

.fa-person-rays::before {
  content: "\e54d";
}

.fa-users::before {
  content: "\f0c0";
}

.fa-eye-slash::before {
  content: "\f070";
}

.fa-flask-vial::before {
  content: "\e4f3";
}

.fa-hand::before {
  content: "\f256";
}

.fa-hand-paper::before {
  content: "\f256";
}

.fa-om::before {
  content: "\f679";
}

.fa-worm::before {
  content: "\e599";
}

.fa-house-circle-xmark::before {
  content: "\e50b";
}

.fa-plug::before {
  content: "\f1e6";
}

.fa-chevron-up::before {
  content: "\f077";
}

.fa-hand-spock::before {
  content: "\f259";
}

.fa-stopwatch::before {
  content: "\f2f2";
}

.fa-face-kiss::before {
  content: "\f596";
}

.fa-kiss::before {
  content: "\f596";
}

.fa-bridge-circle-xmark::before {
  content: "\e4cb";
}

.fa-face-grin-tongue::before {
  content: "\f589";
}

.fa-grin-tongue::before {
  content: "\f589";
}

.fa-chess-bishop::before {
  content: "\f43a";
}

.fa-face-grin-wink::before {
  content: "\f58c";
}

.fa-grin-wink::before {
  content: "\f58c";
}

.fa-ear-deaf::before {
  content: "\f2a4";
}

.fa-deaf::before {
  content: "\f2a4";
}

.fa-deafness::before {
  content: "\f2a4";
}

.fa-hard-of-hearing::before {
  content: "\f2a4";
}

.fa-road-circle-check::before {
  content: "\e564";
}

.fa-dice-five::before {
  content: "\f523";
}

.fa-square-rss::before {
  content: "\f143";
}

.fa-rss-square::before {
  content: "\f143";
}

.fa-land-mine-on::before {
  content: "\e51b";
}

.fa-i-cursor::before {
  content: "\f246";
}

.fa-stamp::before {
  content: "\f5bf";
}

.fa-stairs::before {
  content: "\e289";
}

.fa-i::before {
  content: "I";
}

.fa-hryvnia-sign::before {
  content: "\f6f2";
}

.fa-hryvnia::before {
  content: "\f6f2";
}

.fa-pills::before {
  content: "\f484";
}

.fa-face-grin-wide::before {
  content: "\f581";
}

.fa-grin-alt::before {
  content: "\f581";
}

.fa-tooth::before {
  content: "\f5c9";
}

.fa-v::before {
  content: "V";
}

.fa-bicycle::before {
  content: "\f206";
}

.fa-staff-snake::before {
  content: "\e579";
}

.fa-rod-asclepius::before {
  content: "\e579";
}

.fa-rod-snake::before {
  content: "\e579";
}

.fa-staff-aesculapius::before {
  content: "\e579";
}

.fa-head-side-cough-slash::before {
  content: "\e062";
}

.fa-truck-medical::before {
  content: "\f0f9";
}

.fa-ambulance::before {
  content: "\f0f9";
}

.fa-wheat-awn-circle-exclamation::before {
  content: "\e598";
}

.fa-snowman::before {
  content: "\f7d0";
}

.fa-mortar-pestle::before {
  content: "\f5a7";
}

.fa-road-barrier::before {
  content: "\e562";
}

.fa-school::before {
  content: "\f549";
}

.fa-igloo::before {
  content: "\f7ae";
}

.fa-joint::before {
  content: "\f595";
}

.fa-angle-right::before {
  content: "\f105";
}

.fa-horse::before {
  content: "\f6f0";
}

.fa-q::before {
  content: "Q";
}

.fa-g::before {
  content: "G";
}

.fa-notes-medical::before {
  content: "\f481";
}

.fa-temperature-half::before {
  content: "\f2c9";
}

.fa-temperature-2::before {
  content: "\f2c9";
}

.fa-thermometer-2::before {
  content: "\f2c9";
}

.fa-thermometer-half::before {
  content: "\f2c9";
}

.fa-dong-sign::before {
  content: "\e169";
}

.fa-capsules::before {
  content: "\f46b";
}

.fa-poo-storm::before {
  content: "\f75a";
}

.fa-poo-bolt::before {
  content: "\f75a";
}

.fa-face-frown-open::before {
  content: "\f57a";
}

.fa-frown-open::before {
  content: "\f57a";
}

.fa-hand-point-up::before {
  content: "\f0a6";
}

.fa-money-bill::before {
  content: "\f0d6";
}

.fa-bookmark::before {
  content: "\f02e";
}

.fa-align-justify::before {
  content: "\f039";
}

.fa-umbrella-beach::before {
  content: "\f5ca";
}

.fa-helmet-un::before {
  content: "\e503";
}

.fa-bullseye::before {
  content: "\f140";
}

.fa-bacon::before {
  content: "\f7e5";
}

.fa-hand-point-down::before {
  content: "\f0a7";
}

.fa-arrow-up-from-bracket::before {
  content: "\e09a";
}

.fa-folder::before {
  content: "\f07b";
}

.fa-folder-blank::before {
  content: "\f07b";
}

.fa-file-waveform::before {
  content: "\f478";
}

.fa-file-medical-alt::before {
  content: "\f478";
}

.fa-radiation::before {
  content: "\f7b9";
}

.fa-chart-simple::before {
  content: "\e473";
}

.fa-mars-stroke::before {
  content: "\f229";
}

.fa-vial::before {
  content: "\f492";
}

.fa-gauge::before {
  content: "\f624";
}

.fa-dashboard::before {
  content: "\f624";
}

.fa-gauge-med::before {
  content: "\f624";
}

.fa-tachometer-alt-average::before {
  content: "\f624";
}

.fa-wand-magic-sparkles::before {
  content: "\e2ca";
}

.fa-magic-wand-sparkles::before {
  content: "\e2ca";
}

.fa-e::before {
  content: "E";
}

.fa-pen-clip::before {
  content: "\f305";
}

.fa-pen-alt::before {
  content: "\f305";
}

.fa-bridge-circle-exclamation::before {
  content: "\e4ca";
}

.fa-user::before {
  content: "\f007";
}

.fa-school-circle-check::before {
  content: "\e56b";
}

.fa-dumpster::before {
  content: "\f793";
}

.fa-van-shuttle::before {
  content: "\f5b6";
}

.fa-shuttle-van::before {
  content: "\f5b6";
}

.fa-building-user::before {
  content: "\e4da";
}

.fa-square-caret-left::before {
  content: "\f191";
}

.fa-caret-square-left::before {
  content: "\f191";
}

.fa-highlighter::before {
  content: "\f591";
}

.fa-key::before {
  content: "\f084";
}

.fa-bullhorn::before {
  content: "\f0a1";
}

.fa-globe::before {
  content: "\f0ac";
}

.fa-synagogue::before {
  content: "\f69b";
}

.fa-person-half-dress::before {
  content: "\e548";
}

.fa-road-bridge::before {
  content: "\e563";
}

.fa-location-arrow::before {
  content: "\f124";
}

.fa-c::before {
  content: "C";
}

.fa-tablet-button::before {
  content: "\f10a";
}

.fa-building-lock::before {
  content: "\e4d6";
}

.fa-pizza-slice::before {
  content: "\f818";
}

.fa-money-bill-wave::before {
  content: "\f53a";
}

.fa-chart-area::before {
  content: "\f1fe";
}

.fa-area-chart::before {
  content: "\f1fe";
}

.fa-house-flag::before {
  content: "\e50d";
}

.fa-person-circle-minus::before {
  content: "\e540";
}

.fa-ban::before {
  content: "\f05e";
}

.fa-cancel::before {
  content: "\f05e";
}

.fa-camera-rotate::before {
  content: "\e0d8";
}

.fa-spray-can-sparkles::before {
  content: "\f5d0";
}

.fa-air-freshener::before {
  content: "\f5d0";
}

.fa-star::before {
  content: "\f005";
}

.fa-repeat::before {
  content: "\f363";
}

.fa-cross::before {
  content: "\f654";
}

.fa-box::before {
  content: "\f466";
}

.fa-venus-mars::before {
  content: "\f228";
}

.fa-arrow-pointer::before {
  content: "\f245";
}

.fa-mouse-pointer::before {
  content: "\f245";
}

.fa-maximize::before {
  content: "\f31e";
}

.fa-expand-arrows-alt::before {
  content: "\f31e";
}

.fa-charging-station::before {
  content: "\f5e7";
}

.fa-shapes::before {
  content: "\f61f";
}

.fa-triangle-circle-square::before {
  content: "\f61f";
}

.fa-shuffle::before {
  content: "\f074";
}

.fa-random::before {
  content: "\f074";
}

.fa-person-running::before {
  content: "\f70c";
}

.fa-running::before {
  content: "\f70c";
}

.fa-mobile-retro::before {
  content: "\e527";
}

.fa-grip-lines-vertical::before {
  content: "\f7a5";
}

.fa-spider::before {
  content: "\f717";
}

.fa-hands-bound::before {
  content: "\e4f9";
}

.fa-file-invoice-dollar::before {
  content: "\f571";
}

.fa-plane-circle-exclamation::before {
  content: "\e556";
}

.fa-x-ray::before {
  content: "\f497";
}

.fa-spell-check::before {
  content: "\f891";
}

.fa-slash::before {
  content: "\f715";
}

.fa-computer-mouse::before {
  content: "\f8cc";
}

.fa-mouse::before {
  content: "\f8cc";
}

.fa-arrow-right-to-bracket::before {
  content: "\f090";
}

.fa-sign-in::before {
  content: "\f090";
}

.fa-shop-slash::before {
  content: "\e070";
}

.fa-store-alt-slash::before {
  content: "\e070";
}

.fa-server::before {
  content: "\f233";
}

.fa-virus-covid-slash::before {
  content: "\e4a9";
}

.fa-shop-lock::before {
  content: "\e4a5";
}

.fa-hourglass-start::before {
  content: "\f251";
}

.fa-hourglass-1::before {
  content: "\f251";
}

.fa-blender-phone::before {
  content: "\f6b6";
}

.fa-building-wheat::before {
  content: "\e4db";
}

.fa-person-breastfeeding::before {
  content: "\e53a";
}

.fa-right-to-bracket::before {
  content: "\f2f6";
}

.fa-sign-in-alt::before {
  content: "\f2f6";
}

.fa-venus::before {
  content: "\f221";
}

.fa-passport::before {
  content: "\f5ab";
}

.fa-heart-pulse::before {
  content: "\f21e";
}

.fa-heartbeat::before {
  content: "\f21e";
}

.fa-people-carry-box::before {
  content: "\f4ce";
}

.fa-people-carry::before {
  content: "\f4ce";
}

.fa-temperature-high::before {
  content: "\f769";
}

.fa-microchip::before {
  content: "\f2db";
}

.fa-crown::before {
  content: "\f521";
}

.fa-weight-hanging::before {
  content: "\f5cd";
}

.fa-xmarks-lines::before {
  content: "\e59a";
}

.fa-file-prescription::before {
  content: "\f572";
}

.fa-weight-scale::before {
  content: "\f496";
}

.fa-weight::before {
  content: "\f496";
}

.fa-user-group::before {
  content: "\f500";
}

.fa-user-friends::before {
  content: "\f500";
}

.fa-arrow-up-a-z::before {
  content: "\f15e";
}

.fa-sort-alpha-up::before {
  content: "\f15e";
}

.fa-chess-knight::before {
  content: "\f441";
}

.fa-face-laugh-squint::before {
  content: "\f59b";
}

.fa-laugh-squint::before {
  content: "\f59b";
}

.fa-wheelchair::before {
  content: "\f193";
}

.fa-circle-arrow-up::before {
  content: "\f0aa";
}

.fa-arrow-circle-up::before {
  content: "\f0aa";
}

.fa-toggle-on::before {
  content: "\f205";
}

.fa-person-walking::before {
  content: "\f554";
}

.fa-walking::before {
  content: "\f554";
}

.fa-l::before {
  content: "L";
}

.fa-fire::before {
  content: "\f06d";
}

.fa-bed-pulse::before {
  content: "\f487";
}

.fa-procedures::before {
  content: "\f487";
}

.fa-shuttle-space::before {
  content: "\f197";
}

.fa-space-shuttle::before {
  content: "\f197";
}

.fa-face-laugh::before {
  content: "\f599";
}

.fa-laugh::before {
  content: "\f599";
}

.fa-folder-open::before {
  content: "\f07c";
}

.fa-heart-circle-plus::before {
  content: "\e500";
}

.fa-code-fork::before {
  content: "\e13b";
}

.fa-city::before {
  content: "\f64f";
}

.fa-microphone-lines::before {
  content: "\f3c9";
}

.fa-microphone-alt::before {
  content: "\f3c9";
}

.fa-pepper-hot::before {
  content: "\f816";
}

.fa-unlock::before {
  content: "\f09c";
}

.fa-colon-sign::before {
  content: "\e140";
}

.fa-headset::before {
  content: "\f590";
}

.fa-store-slash::before {
  content: "\e071";
}

.fa-road-circle-xmark::before {
  content: "\e566";
}

.fa-user-minus::before {
  content: "\f503";
}

.fa-mars-stroke-up::before {
  content: "\f22a";
}

.fa-mars-stroke-v::before {
  content: "\f22a";
}

.fa-champagne-glasses::before {
  content: "\f79f";
}

.fa-glass-cheers::before {
  content: "\f79f";
}

.fa-clipboard::before {
  content: "\f328";
}

.fa-house-circle-exclamation::before {
  content: "\e50a";
}

.fa-file-arrow-up::before {
  content: "\f574";
}

.fa-file-upload::before {
  content: "\f574";
}

.fa-wifi::before {
  content: "\f1eb";
}

.fa-wifi-3::before {
  content: "\f1eb";
}

.fa-wifi-strong::before {
  content: "\f1eb";
}

.fa-bath::before {
  content: "\f2cd";
}

.fa-bathtub::before {
  content: "\f2cd";
}

.fa-underline::before {
  content: "\f0cd";
}

.fa-user-pen::before {
  content: "\f4ff";
}

.fa-user-edit::before {
  content: "\f4ff";
}

.fa-signature::before {
  content: "\f5b7";
}

.fa-stroopwafel::before {
  content: "\f551";
}

.fa-bold::before {
  content: "\f032";
}

.fa-anchor-lock::before {
  content: "\e4ad";
}

.fa-building-ngo::before {
  content: "\e4d7";
}

.fa-manat-sign::before {
  content: "\e1d5";
}

.fa-not-equal::before {
  content: "\f53e";
}

.fa-border-top-left::before {
  content: "\f853";
}

.fa-border-style::before {
  content: "\f853";
}

.fa-map-location-dot::before {
  content: "\f5a0";
}

.fa-map-marked-alt::before {
  content: "\f5a0";
}

.fa-jedi::before {
  content: "\f669";
}

.fa-square-poll-vertical::before {
  content: "\f681";
}

.fa-poll::before {
  content: "\f681";
}

.fa-mug-hot::before {
  content: "\f7b6";
}

.fa-car-battery::before {
  content: "\f5df";
}

.fa-battery-car::before {
  content: "\f5df";
}

.fa-gift::before {
  content: "\f06b";
}

.fa-dice-two::before {
  content: "\f528";
}

.fa-chess-queen::before {
  content: "\f445";
}

.fa-glasses::before {
  content: "\f530";
}

.fa-chess-board::before {
  content: "\f43c";
}

.fa-building-circle-check::before {
  content: "\e4d2";
}

.fa-person-chalkboard::before {
  content: "\e53d";
}

.fa-mars-stroke-right::before {
  content: "\f22b";
}

.fa-mars-stroke-h::before {
  content: "\f22b";
}

.fa-hand-back-fist::before {
  content: "\f255";
}

.fa-hand-rock::before {
  content: "\f255";
}

.fa-square-caret-up::before {
  content: "\f151";
}

.fa-caret-square-up::before {
  content: "\f151";
}

.fa-cloud-showers-water::before {
  content: "\e4e4";
}

.fa-chart-bar::before {
  content: "\f080";
}

.fa-bar-chart::before {
  content: "\f080";
}

.fa-hands-bubbles::before {
  content: "\e05e";
}

.fa-hands-wash::before {
  content: "\e05e";
}

.fa-less-than-equal::before {
  content: "\f537";
}

.fa-train::before {
  content: "\f238";
}

.fa-eye-low-vision::before {
  content: "\f2a8";
}

.fa-low-vision::before {
  content: "\f2a8";
}

.fa-crow::before {
  content: "\f520";
}

.fa-sailboat::before {
  content: "\e445";
}

.fa-window-restore::before {
  content: "\f2d2";
}

.fa-square-plus::before {
  content: "\f0fe";
}

.fa-plus-square::before {
  content: "\f0fe";
}

.fa-torii-gate::before {
  content: "\f6a1";
}

.fa-frog::before {
  content: "\f52e";
}

.fa-bucket::before {
  content: "\e4cf";
}

.fa-image::before {
  content: "\f03e";
}

.fa-microphone::before {
  content: "\f130";
}

.fa-cow::before {
  content: "\f6c8";
}

.fa-caret-up::before {
  content: "\f0d8";
}

.fa-screwdriver::before {
  content: "\f54a";
}

.fa-folder-closed::before {
  content: "\e185";
}

.fa-house-tsunami::before {
  content: "\e515";
}

.fa-square-nfi::before {
  content: "\e576";
}

.fa-arrow-up-from-ground-water::before {
  content: "\e4b5";
}

.fa-martini-glass::before {
  content: "\f57b";
}

.fa-glass-martini-alt::before {
  content: "\f57b";
}

.fa-rotate-left::before {
  content: "\f2ea";
}

.fa-rotate-back::before {
  content: "\f2ea";
}

.fa-rotate-backward::before {
  content: "\f2ea";
}

.fa-undo-alt::before {
  content: "\f2ea";
}

.fa-table-columns::before {
  content: "\f0db";
}

.fa-columns::before {
  content: "\f0db";
}

.fa-lemon::before {
  content: "\f094";
}

.fa-head-side-mask::before {
  content: "\e063";
}

.fa-handshake::before {
  content: "\f2b5";
}

.fa-gem::before {
  content: "\f3a5";
}

.fa-dolly::before {
  content: "\f472";
}

.fa-dolly-box::before {
  content: "\f472";
}

.fa-smoking::before {
  content: "\f48d";
}

.fa-minimize::before {
  content: "\f78c";
}

.fa-compress-arrows-alt::before {
  content: "\f78c";
}

.fa-monument::before {
  content: "\f5a6";
}

.fa-snowplow::before {
  content: "\f7d2";
}

.fa-angles-right::before {
  content: "\f101";
}

.fa-angle-double-right::before {
  content: "\f101";
}

.fa-cannabis::before {
  content: "\f55f";
}

.fa-circle-play::before {
  content: "\f144";
}

.fa-play-circle::before {
  content: "\f144";
}

.fa-tablets::before {
  content: "\f490";
}

.fa-ethernet::before {
  content: "\f796";
}

.fa-euro-sign::before {
  content: "\f153";
}

.fa-eur::before {
  content: "\f153";
}

.fa-euro::before {
  content: "\f153";
}

.fa-chair::before {
  content: "\f6c0";
}

.fa-circle-check::before {
  content: "\f058";
}

.fa-check-circle::before {
  content: "\f058";
}

.fa-circle-stop::before {
  content: "\f28d";
}

.fa-stop-circle::before {
  content: "\f28d";
}

.fa-compass-drafting::before {
  content: "\f568";
}

.fa-drafting-compass::before {
  content: "\f568";
}

.fa-plate-wheat::before {
  content: "\e55a";
}

.fa-icicles::before {
  content: "\f7ad";
}

.fa-person-shelter::before {
  content: "\e54f";
}

.fa-neuter::before {
  content: "\f22c";
}

.fa-id-badge::before {
  content: "\f2c1";
}

.fa-marker::before {
  content: "\f5a1";
}

.fa-face-laugh-beam::before {
  content: "\f59a";
}

.fa-laugh-beam::before {
  content: "\f59a";
}

.fa-helicopter-symbol::before {
  content: "\e502";
}

.fa-universal-access::before {
  content: "\f29a";
}

.fa-circle-chevron-up::before {
  content: "\f139";
}

.fa-chevron-circle-up::before {
  content: "\f139";
}

.fa-lari-sign::before {
  content: "\e1c8";
}

.fa-volcano::before {
  content: "\f770";
}

.fa-person-walking-dashed-line-arrow-right::before {
  content: "\e553";
}

.fa-sterling-sign::before {
  content: "\f154";
}

.fa-gbp::before {
  content: "\f154";
}

.fa-pound-sign::before {
  content: "\f154";
}

.fa-viruses::before {
  content: "\e076";
}

.fa-square-person-confined::before {
  content: "\e577";
}

.fa-user-tie::before {
  content: "\f508";
}

.fa-arrow-down-long::before {
  content: "\f175";
}

.fa-long-arrow-down::before {
  content: "\f175";
}

.fa-tent-arrow-down-to-line::before {
  content: "\e57e";
}

.fa-certificate::before {
  content: "\f0a3";
}

.fa-reply-all::before {
  content: "\f122";
}

.fa-mail-reply-all::before {
  content: "\f122";
}

.fa-suitcase::before {
  content: "\f0f2";
}

.fa-person-skating::before {
  content: "\f7c5";
}

.fa-skating::before {
  content: "\f7c5";
}

.fa-filter-circle-dollar::before {
  content: "\f662";
}

.fa-funnel-dollar::before {
  content: "\f662";
}

.fa-camera-retro::before {
  content: "\f083";
}

.fa-circle-arrow-down::before {
  content: "\f0ab";
}

.fa-arrow-circle-down::before {
  content: "\f0ab";
}

.fa-file-import::before {
  content: "\f56f";
}

.fa-arrow-right-to-file::before {
  content: "\f56f";
}

.fa-square-arrow-up-right::before {
  content: "\f14c";
}

.fa-external-link-square::before {
  content: "\f14c";
}

.fa-box-open::before {
  content: "\f49e";
}

.fa-scroll::before {
  content: "\f70e";
}

.fa-spa::before {
  content: "\f5bb";
}

.fa-location-pin-lock::before {
  content: "\e51f";
}

.fa-pause::before {
  content: "\f04c";
}

.fa-hill-avalanche::before {
  content: "\e507";
}

.fa-temperature-empty::before {
  content: "\f2cb";
}

.fa-temperature-0::before {
  content: "\f2cb";
}

.fa-thermometer-0::before {
  content: "\f2cb";
}

.fa-thermometer-empty::before {
  content: "\f2cb";
}

.fa-bomb::before {
  content: "\f1e2";
}

.fa-registered::before {
  content: "\f25d";
}

.fa-address-card::before {
  content: "\f2bb";
}

.fa-contact-card::before {
  content: "\f2bb";
}

.fa-vcard::before {
  content: "\f2bb";
}

.fa-scale-unbalanced-flip::before {
  content: "\f516";
}

.fa-balance-scale-right::before {
  content: "\f516";
}

.fa-subscript::before {
  content: "\f12c";
}

.fa-diamond-turn-right::before {
  content: "\f5eb";
}

.fa-directions::before {
  content: "\f5eb";
}

.fa-burst::before {
  content: "\e4dc";
}

.fa-house-laptop::before {
  content: "\e066";
}

.fa-laptop-house::before {
  content: "\e066";
}

.fa-face-tired::before {
  content: "\f5c8";
}

.fa-tired::before {
  content: "\f5c8";
}

.fa-money-bills::before {
  content: "\e1f3";
}

.fa-smog::before {
  content: "\f75f";
}

.fa-crutch::before {
  content: "\f7f7";
}

.fa-cloud-arrow-up::before {
  content: "\f0ee";
}

.fa-cloud-upload::before {
  content: "\f0ee";
}

.fa-cloud-upload-alt::before {
  content: "\f0ee";
}

.fa-palette::before {
  content: "\f53f";
}

.fa-arrows-turn-right::before {
  content: "\e4c0";
}

.fa-vest::before {
  content: "\e085";
}

.fa-ferry::before {
  content: "\e4ea";
}

.fa-arrows-down-to-people::before {
  content: "\e4b9";
}

.fa-seedling::before {
  content: "\f4d8";
}

.fa-sprout::before {
  content: "\f4d8";
}

.fa-left-right::before {
  content: "\f337";
}

.fa-arrows-alt-h::before {
  content: "\f337";
}

.fa-boxes-packing::before {
  content: "\e4c7";
}

.fa-circle-arrow-left::before {
  content: "\f0a8";
}

.fa-arrow-circle-left::before {
  content: "\f0a8";
}

.fa-group-arrows-rotate::before {
  content: "\e4f6";
}

.fa-bowl-food::before {
  content: "\e4c6";
}

.fa-candy-cane::before {
  content: "\f786";
}

.fa-arrow-down-wide-short::before {
  content: "\f160";
}

.fa-sort-amount-asc::before {
  content: "\f160";
}

.fa-sort-amount-down::before {
  content: "\f160";
}

.fa-cloud-bolt::before {
  content: "\f76c";
}

.fa-thunderstorm::before {
  content: "\f76c";
}

.fa-text-slash::before {
  content: "\f87d";
}

.fa-remove-format::before {
  content: "\f87d";
}

.fa-face-smile-wink::before {
  content: "\f4da";
}

.fa-smile-wink::before {
  content: "\f4da";
}

.fa-file-word::before {
  content: "\f1c2";
}

.fa-file-powerpoint::before {
  content: "\f1c4";
}

.fa-arrows-left-right::before {
  content: "\f07e";
}

.fa-arrows-h::before {
  content: "\f07e";
}

.fa-house-lock::before {
  content: "\e510";
}

.fa-cloud-arrow-down::before {
  content: "\f0ed";
}

.fa-cloud-download::before {
  content: "\f0ed";
}

.fa-cloud-download-alt::before {
  content: "\f0ed";
}

.fa-children::before {
  content: "\e4e1";
}

.fa-chalkboard::before {
  content: "\f51b";
}

.fa-blackboard::before {
  content: "\f51b";
}

.fa-user-large-slash::before {
  content: "\f4fa";
}

.fa-user-alt-slash::before {
  content: "\f4fa";
}

.fa-envelope-open::before {
  content: "\f2b6";
}

.fa-handshake-simple-slash::before {
  content: "\e05f";
}

.fa-handshake-alt-slash::before {
  content: "\e05f";
}

.fa-mattress-pillow::before {
  content: "\e525";
}

.fa-guarani-sign::before {
  content: "\e19a";
}

.fa-arrows-rotate::before {
  content: "\f021";
}

.fa-refresh::before {
  content: "\f021";
}

.fa-sync::before {
  content: "\f021";
}

.fa-fire-extinguisher::before {
  content: "\f134";
}

.fa-cruzeiro-sign::before {
  content: "\e152";
}

.fa-greater-than-equal::before {
  content: "\f532";
}

.fa-shield-halved::before {
  content: "\f3ed";
}

.fa-shield-alt::before {
  content: "\f3ed";
}

.fa-book-atlas::before {
  content: "\f558";
}

.fa-atlas::before {
  content: "\f558";
}

.fa-virus::before {
  content: "\e074";
}

.fa-envelope-circle-check::before {
  content: "\e4e8";
}

.fa-layer-group::before {
  content: "\f5fd";
}

.fa-arrows-to-dot::before {
  content: "\e4be";
}

.fa-archway::before {
  content: "\f557";
}

.fa-heart-circle-check::before {
  content: "\e4fd";
}

.fa-house-chimney-crack::before {
  content: "\f6f1";
}

.fa-house-damage::before {
  content: "\f6f1";
}

.fa-file-zipper::before {
  content: "\f1c6";
}

.fa-file-archive::before {
  content: "\f1c6";
}

.fa-square::before {
  content: "\f0c8";
}

.fa-martini-glass-empty::before {
  content: "\f000";
}

.fa-glass-martini::before {
  content: "\f000";
}

.fa-couch::before {
  content: "\f4b8";
}

.fa-cedi-sign::before {
  content: "\e0df";
}

.fa-italic::before {
  content: "\f033";
}

.fa-church::before {
  content: "\f51d";
}

.fa-comments-dollar::before {
  content: "\f653";
}

.fa-democrat::before {
  content: "\f747";
}

.fa-z::before {
  content: "Z";
}

.fa-person-skiing::before {
  content: "\f7c9";
}

.fa-skiing::before {
  content: "\f7c9";
}

.fa-road-lock::before {
  content: "\e567";
}

.fa-a::before {
  content: "A";
}

.fa-temperature-arrow-down::before {
  content: "\e03f";
}

.fa-temperature-down::before {
  content: "\e03f";
}

.fa-feather-pointed::before {
  content: "\f56b";
}

.fa-feather-alt::before {
  content: "\f56b";
}

.fa-p::before {
  content: "P";
}

.fa-snowflake::before {
  content: "\f2dc";
}

.fa-newspaper::before {
  content: "\f1ea";
}

.fa-rectangle-ad::before {
  content: "\f641";
}

.fa-ad::before {
  content: "\f641";
}

.fa-circle-arrow-right::before {
  content: "\f0a9";
}

.fa-arrow-circle-right::before {
  content: "\f0a9";
}

.fa-filter-circle-xmark::before {
  content: "\e17b";
}

.fa-locust::before {
  content: "\e520";
}

.fa-sort::before {
  content: "\f0dc";
}

.fa-unsorted::before {
  content: "\f0dc";
}

.fa-list-ol::before {
  content: "\f0cb";
}

.fa-list-1-2::before {
  content: "\f0cb";
}

.fa-list-numeric::before {
  content: "\f0cb";
}

.fa-person-dress-burst::before {
  content: "\e544";
}

.fa-money-check-dollar::before {
  content: "\f53d";
}

.fa-money-check-alt::before {
  content: "\f53d";
}

.fa-vector-square::before {
  content: "\f5cb";
}

.fa-bread-slice::before {
  content: "\f7ec";
}

.fa-language::before {
  content: "\f1ab";
}

.fa-face-kiss-wink-heart::before {
  content: "\f598";
}

.fa-kiss-wink-heart::before {
  content: "\f598";
}

.fa-filter::before {
  content: "\f0b0";
}

.fa-question::before {
  content: "\?";
}

.fa-file-signature::before {
  content: "\f573";
}

.fa-up-down-left-right::before {
  content: "\f0b2";
}

.fa-arrows-alt::before {
  content: "\f0b2";
}

.fa-house-chimney-user::before {
  content: "\e065";
}

.fa-hand-holding-heart::before {
  content: "\f4be";
}

.fa-puzzle-piece::before {
  content: "\f12e";
}

.fa-money-check::before {
  content: "\f53c";
}

.fa-star-half-stroke::before {
  content: "\f5c0";
}

.fa-star-half-alt::before {
  content: "\f5c0";
}

.fa-code::before {
  content: "\f121";
}

.fa-whiskey-glass::before {
  content: "\f7a0";
}

.fa-glass-whiskey::before {
  content: "\f7a0";
}

.fa-building-circle-exclamation::before {
  content: "\e4d3";
}

.fa-magnifying-glass-chart::before {
  content: "\e522";
}

.fa-arrow-up-right-from-square::before {
  content: "\f08e";
}

.fa-external-link::before {
  content: "\f08e";
}

.fa-cubes-stacked::before {
  content: "\e4e6";
}

.fa-won-sign::before {
  content: "\f159";
}

.fa-krw::before {
  content: "\f159";
}

.fa-won::before {
  content: "\f159";
}

.fa-virus-covid::before {
  content: "\e4a8";
}

.fa-austral-sign::before {
  content: "\e0a9";
}

.fa-f::before {
  content: "F";
}

.fa-leaf::before {
  content: "\f06c";
}

.fa-road::before {
  content: "\f018";
}

.fa-taxi::before {
  content: "\f1ba";
}

.fa-cab::before {
  content: "\f1ba";
}

.fa-person-circle-plus::before {
  content: "\e541";
}

.fa-chart-pie::before {
  content: "\f200";
}

.fa-pie-chart::before {
  content: "\f200";
}

.fa-bolt-lightning::before {
  content: "\e0b7";
}

.fa-sack-xmark::before {
  content: "\e56a";
}

.fa-file-excel::before {
  content: "\f1c3";
}

.fa-file-contract::before {
  content: "\f56c";
}

.fa-fish-fins::before {
  content: "\e4f2";
}

.fa-building-flag::before {
  content: "\e4d5";
}

.fa-face-grin-beam::before {
  content: "\f582";
}

.fa-grin-beam::before {
  content: "\f582";
}

.fa-object-ungroup::before {
  content: "\f248";
}

.fa-poop::before {
  content: "\f619";
}

.fa-location-pin::before {
  content: "\f041";
}

.fa-map-marker::before {
  content: "\f041";
}

.fa-kaaba::before {
  content: "\f66b";
}

.fa-toilet-paper::before {
  content: "\f71e";
}

.fa-helmet-safety::before {
  content: "\f807";
}

.fa-hard-hat::before {
  content: "\f807";
}

.fa-hat-hard::before {
  content: "\f807";
}

.fa-eject::before {
  content: "\f052";
}

.fa-circle-right::before {
  content: "\f35a";
}

.fa-arrow-alt-circle-right::before {
  content: "\f35a";
}

.fa-plane-circle-check::before {
  content: "\e555";
}

.fa-face-rolling-eyes::before {
  content: "\f5a5";
}

.fa-meh-rolling-eyes::before {
  content: "\f5a5";
}

.fa-object-group::before {
  content: "\f247";
}

.fa-chart-line::before {
  content: "\f201";
}

.fa-line-chart::before {
  content: "\f201";
}

.fa-mask-ventilator::before {
  content: "\e524";
}

.fa-arrow-right::before {
  content: "\f061";
}

.fa-signs-post::before {
  content: "\f277";
}

.fa-map-signs::before {
  content: "\f277";
}

.fa-cash-register::before {
  content: "\f788";
}

.fa-person-circle-question::before {
  content: "\e542";
}

.fa-h::before {
  content: "H";
}

.fa-tarp::before {
  content: "\e57b";
}

.fa-screwdriver-wrench::before {
  content: "\f7d9";
}

.fa-tools::before {
  content: "\f7d9";
}

.fa-arrows-to-eye::before {
  content: "\e4bf";
}

.fa-plug-circle-bolt::before {
  content: "\e55b";
}

.fa-heart::before {
  content: "\f004";
}

.fa-mars-and-venus::before {
  content: "\f224";
}

.fa-house-user::before {
  content: "\e1b0";
}

.fa-home-user::before {
  content: "\e1b0";
}

.fa-dumpster-fire::before {
  content: "\f794";
}

.fa-house-crack::before {
  content: "\e3b1";
}

.fa-martini-glass-citrus::before {
  content: "\f561";
}

.fa-cocktail::before {
  content: "\f561";
}

.fa-face-surprise::before {
  content: "\f5c2";
}

.fa-surprise::before {
  content: "\f5c2";
}

.fa-bottle-water::before {
  content: "\e4c5";
}

.fa-circle-pause::before {
  content: "\f28b";
}

.fa-pause-circle::before {
  content: "\f28b";
}

.fa-toilet-paper-slash::before {
  content: "\e072";
}

.fa-apple-whole::before {
  content: "\f5d1";
}

.fa-apple-alt::before {
  content: "\f5d1";
}

.fa-kitchen-set::before {
  content: "\e51a";
}

.fa-r::before {
  content: "R";
}

.fa-temperature-quarter::before {
  content: "\f2ca";
}

.fa-temperature-1::before {
  content: "\f2ca";
}

.fa-thermometer-1::before {
  content: "\f2ca";
}

.fa-thermometer-quarter::before {
  content: "\f2ca";
}

.fa-cube::before {
  content: "\f1b2";
}

.fa-bitcoin-sign::before {
  content: "\e0b4";
}

.fa-shield-dog::before {
  content: "\e573";
}

.fa-solar-panel::before {
  content: "\f5ba";
}

.fa-lock-open::before {
  content: "\f3c1";
}

.fa-elevator::before {
  content: "\e16d";
}

.fa-money-bill-transfer::before {
  content: "\e528";
}

.fa-money-bill-trend-up::before {
  content: "\e529";
}

.fa-house-flood-water-circle-arrow-right::before {
  content: "\e50f";
}

.fa-square-poll-horizontal::before {
  content: "\f682";
}

.fa-poll-h::before {
  content: "\f682";
}

.fa-circle::before {
  content: "\f111";
}

.fa-backward-fast::before {
  content: "\f049";
}

.fa-fast-backward::before {
  content: "\f049";
}

.fa-recycle::before {
  content: "\f1b8";
}

.fa-user-astronaut::before {
  content: "\f4fb";
}

.fa-plane-slash::before {
  content: "\e069";
}

.fa-trademark::before {
  content: "\f25c";
}

.fa-basketball::before {
  content: "\f434";
}

.fa-basketball-ball::before {
  content: "\f434";
}

.fa-satellite-dish::before {
  content: "\f7c0";
}

.fa-circle-up::before {
  content: "\f35b";
}

.fa-arrow-alt-circle-up::before {
  content: "\f35b";
}

.fa-mobile-screen-button::before {
  content: "\f3cd";
}

.fa-mobile-alt::before {
  content: "\f3cd";
}

.fa-volume-high::before {
  content: "\f028";
}

.fa-volume-up::before {
  content: "\f028";
}

.fa-users-rays::before {
  content: "\e593";
}

.fa-wallet::before {
  content: "\f555";
}

.fa-clipboard-check::before {
  content: "\f46c";
}

.fa-file-audio::before {
  content: "\f1c7";
}

.fa-burger::before {
  content: "\f805";
}

.fa-hamburger::before {
  content: "\f805";
}

.fa-wrench::before {
  content: "\f0ad";
}

.fa-bugs::before {
  content: "\e4d0";
}

.fa-rupee-sign::before {
  content: "\f156";
}

.fa-rupee::before {
  content: "\f156";
}

.fa-file-image::before {
  content: "\f1c5";
}

.fa-circle-question::before {
  content: "\f059";
}

.fa-question-circle::before {
  content: "\f059";
}

.fa-plane-departure::before {
  content: "\f5b0";
}

.fa-handshake-slash::before {
  content: "\e060";
}

.fa-book-bookmark::before {
  content: "\e0bb";
}

.fa-code-branch::before {
  content: "\f126";
}

.fa-hat-cowboy::before {
  content: "\f8c0";
}

.fa-bridge::before {
  content: "\e4c8";
}

.fa-phone-flip::before {
  content: "\f879";
}

.fa-phone-alt::before {
  content: "\f879";
}

.fa-truck-front::before {
  content: "\e2b7";
}

.fa-cat::before {
  content: "\f6be";
}

.fa-anchor-circle-exclamation::before {
  content: "\e4ab";
}

.fa-truck-field::before {
  content: "\e58d";
}

.fa-route::before {
  content: "\f4d7";
}

.fa-clipboard-question::before {
  content: "\e4e3";
}

.fa-panorama::before {
  content: "\e209";
}

.fa-comment-medical::before {
  content: "\f7f5";
}

.fa-teeth-open::before {
  content: "\f62f";
}

.fa-file-circle-minus::before {
  content: "\e4ed";
}

.fa-tags::before {
  content: "\f02c";
}

.fa-wine-glass::before {
  content: "\f4e3";
}

.fa-forward-fast::before {
  content: "\f050";
}

.fa-fast-forward::before {
  content: "\f050";
}

.fa-face-meh-blank::before {
  content: "\f5a4";
}

.fa-meh-blank::before {
  content: "\f5a4";
}

.fa-square-parking::before {
  content: "\f540";
}

.fa-parking::before {
  content: "\f540";
}

.fa-house-signal::before {
  content: "\e012";
}

.fa-bars-progress::before {
  content: "\f828";
}

.fa-tasks-alt::before {
  content: "\f828";
}

.fa-faucet-drip::before {
  content: "\e006";
}

.fa-cart-flatbed::before {
  content: "\f474";
}

.fa-dolly-flatbed::before {
  content: "\f474";
}

.fa-ban-smoking::before {
  content: "\f54d";
}

.fa-smoking-ban::before {
  content: "\f54d";
}

.fa-terminal::before {
  content: "\f120";
}

.fa-mobile-button::before {
  content: "\f10b";
}

.fa-house-medical-flag::before {
  content: "\e514";
}

.fa-basket-shopping::before {
  content: "\f291";
}

.fa-shopping-basket::before {
  content: "\f291";
}

.fa-tape::before {
  content: "\f4db";
}

.fa-bus-simple::before {
  content: "\f55e";
}

.fa-bus-alt::before {
  content: "\f55e";
}

.fa-eye::before {
  content: "\f06e";
}

.fa-face-sad-cry::before {
  content: "\f5b3";
}

.fa-sad-cry::before {
  content: "\f5b3";
}

.fa-audio-description::before {
  content: "\f29e";
}

.fa-person-military-to-person::before {
  content: "\e54c";
}

.fa-file-shield::before {
  content: "\e4f0";
}

.fa-user-slash::before {
  content: "\f506";
}

.fa-pen::before {
  content: "\f304";
}

.fa-tower-observation::before {
  content: "\e586";
}

.fa-file-code::before {
  content: "\f1c9";
}

.fa-signal::before {
  content: "\f012";
}

.fa-signal-5::before {
  content: "\f012";
}

.fa-signal-perfect::before {
  content: "\f012";
}

.fa-bus::before {
  content: "\f207";
}

.fa-heart-circle-xmark::before {
  content: "\e501";
}

.fa-house-chimney::before {
  content: "\e3af";
}

.fa-home-lg::before {
  content: "\e3af";
}

.fa-window-maximize::before {
  content: "\f2d0";
}

.fa-face-frown::before {
  content: "\f119";
}

.fa-frown::before {
  content: "\f119";
}

.fa-prescription::before {
  content: "\f5b1";
}

.fa-shop::before {
  content: "\f54f";
}

.fa-store-alt::before {
  content: "\f54f";
}

.fa-floppy-disk::before {
  content: "\f0c7";
}

.fa-save::before {
  content: "\f0c7";
}

.fa-vihara::before {
  content: "\f6a7";
}

.fa-scale-unbalanced::before {
  content: "\f515";
}

.fa-balance-scale-left::before {
  content: "\f515";
}

.fa-sort-up::before {
  content: "\f0de";
}

.fa-sort-asc::before {
  content: "\f0de";
}

.fa-comment-dots::before {
  content: "\f4ad";
}

.fa-commenting::before {
  content: "\f4ad";
}

.fa-plant-wilt::before {
  content: "\e5aa";
}

.fa-diamond::before {
  content: "\f219";
}

.fa-face-grin-squint::before {
  content: "\f585";
}

.fa-grin-squint::before {
  content: "\f585";
}

.fa-hand-holding-dollar::before {
  content: "\f4c0";
}

.fa-hand-holding-usd::before {
  content: "\f4c0";
}

.fa-bacterium::before {
  content: "\e05a";
}

.fa-hand-pointer::before {
  content: "\f25a";
}

.fa-drum-steelpan::before {
  content: "\f56a";
}

.fa-hand-scissors::before {
  content: "\f257";
}

.fa-hands-praying::before {
  content: "\f684";
}

.fa-praying-hands::before {
  content: "\f684";
}

.fa-arrow-rotate-right::before {
  content: "\f01e";
}

.fa-arrow-right-rotate::before {
  content: "\f01e";
}

.fa-arrow-rotate-forward::before {
  content: "\f01e";
}

.fa-redo::before {
  content: "\f01e";
}

.fa-biohazard::before {
  content: "\f780";
}

.fa-location-crosshairs::before {
  content: "\f601";
}

.fa-location::before {
  content: "\f601";
}

.fa-mars-double::before {
  content: "\f227";
}

.fa-child-dress::before {
  content: "\e59c";
}

.fa-users-between-lines::before {
  content: "\e591";
}

.fa-lungs-virus::before {
  content: "\e067";
}

.fa-face-grin-tears::before {
  content: "\f588";
}

.fa-grin-tears::before {
  content: "\f588";
}

.fa-phone::before {
  content: "\f095";
}

.fa-calendar-xmark::before {
  content: "\f273";
}

.fa-calendar-times::before {
  content: "\f273";
}

.fa-child-reaching::before {
  content: "\e59d";
}

.fa-head-side-virus::before {
  content: "\e064";
}

.fa-user-gear::before {
  content: "\f4fe";
}

.fa-user-cog::before {
  content: "\f4fe";
}

.fa-arrow-up-1-9::before {
  content: "\f163";
}

.fa-sort-numeric-up::before {
  content: "\f163";
}

.fa-door-closed::before {
  content: "\f52a";
}

.fa-shield-virus::before {
  content: "\e06c";
}

.fa-dice-six::before {
  content: "\f526";
}

.fa-mosquito-net::before {
  content: "\e52c";
}

.fa-bridge-water::before {
  content: "\e4ce";
}

.fa-person-booth::before {
  content: "\f756";
}

.fa-text-width::before {
  content: "\f035";
}

.fa-hat-wizard::before {
  content: "\f6e8";
}

.fa-pen-fancy::before {
  content: "\f5ac";
}

.fa-person-digging::before {
  content: "\f85e";
}

.fa-digging::before {
  content: "\f85e";
}

.fa-trash::before {
  content: "\f1f8";
}

.fa-gauge-simple::before {
  content: "\f629";
}

.fa-gauge-simple-med::before {
  content: "\f629";
}

.fa-tachometer-average::before {
  content: "\f629";
}

.fa-book-medical::before {
  content: "\f7e6";
}

.fa-poo::before {
  content: "\f2fe";
}

.fa-quote-right::before {
  content: "\f10e";
}

.fa-quote-right-alt::before {
  content: "\f10e";
}

.fa-shirt::before {
  content: "\f553";
}

.fa-t-shirt::before {
  content: "\f553";
}

.fa-tshirt::before {
  content: "\f553";
}

.fa-cubes::before {
  content: "\f1b3";
}

.fa-divide::before {
  content: "\f529";
}

.fa-tenge-sign::before {
  content: "\f7d7";
}

.fa-tenge::before {
  content: "\f7d7";
}

.fa-headphones::before {
  content: "\f025";
}

.fa-hands-holding::before {
  content: "\f4c2";
}

.fa-hands-clapping::before {
  content: "\e1a8";
}

.fa-republican::before {
  content: "\f75e";
}

.fa-arrow-left::before {
  content: "\f060";
}

.fa-person-circle-xmark::before {
  content: "\e543";
}

.fa-ruler::before {
  content: "\f545";
}

.fa-align-left::before {
  content: "\f036";
}

.fa-dice-d6::before {
  content: "\f6d1";
}

.fa-restroom::before {
  content: "\f7bd";
}

.fa-j::before {
  content: "J";
}

.fa-users-viewfinder::before {
  content: "\e595";
}

.fa-file-video::before {
  content: "\f1c8";
}

.fa-up-right-from-square::before {
  content: "\f35d";
}

.fa-external-link-alt::before {
  content: "\f35d";
}

.fa-table-cells::before {
  content: "\f00a";
}

.fa-th::before {
  content: "\f00a";
}

.fa-file-pdf::before {
  content: "\f1c1";
}

.fa-book-bible::before {
  content: "\f647";
}

.fa-bible::before {
  content: "\f647";
}

.fa-o::before {
  content: "O";
}

.fa-suitcase-medical::before {
  content: "\f0fa";
}

.fa-medkit::before {
  content: "\f0fa";
}

.fa-user-secret::before {
  content: "\f21b";
}

.fa-otter::before {
  content: "\f700";
}

.fa-person-dress::before {
  content: "\f182";
}

.fa-female::before {
  content: "\f182";
}

.fa-comment-dollar::before {
  content: "\f651";
}

.fa-business-time::before {
  content: "\f64a";
}

.fa-briefcase-clock::before {
  content: "\f64a";
}

.fa-table-cells-large::before {
  content: "\f009";
}

.fa-th-large::before {
  content: "\f009";
}

.fa-book-tanakh::before {
  content: "\f827";
}

.fa-tanakh::before {
  content: "\f827";
}

.fa-phone-volume::before {
  content: "\f2a0";
}

.fa-volume-control-phone::before {
  content: "\f2a0";
}

.fa-hat-cowboy-side::before {
  content: "\f8c1";
}

.fa-clipboard-user::before {
  content: "\f7f3";
}

.fa-child::before {
  content: "\f1ae";
}

.fa-lira-sign::before {
  content: "\f195";
}

.fa-satellite::before {
  content: "\f7bf";
}

.fa-plane-lock::before {
  content: "\e558";
}

.fa-tag::before {
  content: "\f02b";
}

.fa-comment::before {
  content: "\f075";
}

.fa-cake-candles::before {
  content: "\f1fd";
}

.fa-birthday-cake::before {
  content: "\f1fd";
}

.fa-cake::before {
  content: "\f1fd";
}

.fa-envelope::before {
  content: "\f0e0";
}

.fa-angles-up::before {
  content: "\f102";
}

.fa-angle-double-up::before {
  content: "\f102";
}

.fa-paperclip::before {
  content: "\f0c6";
}

.fa-arrow-right-to-city::before {
  content: "\e4b3";
}

.fa-ribbon::before {
  content: "\f4d6";
}

.fa-lungs::before {
  content: "\f604";
}

.fa-arrow-up-9-1::before {
  content: "\f887";
}

.fa-sort-numeric-up-alt::before {
  content: "\f887";
}

.fa-litecoin-sign::before {
  content: "\e1d3";
}

.fa-border-none::before {
  content: "\f850";
}

.fa-circle-nodes::before {
  content: "\e4e2";
}

.fa-parachute-box::before {
  content: "\f4cd";
}

.fa-indent::before {
  content: "\f03c";
}

.fa-truck-field-un::before {
  content: "\e58e";
}

.fa-hourglass::before {
  content: "\f254";
}

.fa-hourglass-empty::before {
  content: "\f254";
}

.fa-mountain::before {
  content: "\f6fc";
}

.fa-user-doctor::before {
  content: "\f0f0";
}

.fa-user-md::before {
  content: "\f0f0";
}

.fa-circle-info::before {
  content: "\f05a";
}

.fa-info-circle::before {
  content: "\f05a";
}

.fa-cloud-meatball::before {
  content: "\f73b";
}

.fa-camera::before {
  content: "\f030";
}

.fa-camera-alt::before {
  content: "\f030";
}

.fa-square-virus::before {
  content: "\e578";
}

.fa-meteor::before {
  content: "\f753";
}

.fa-car-on::before {
  content: "\e4dd";
}

.fa-sleigh::before {
  content: "\f7cc";
}

.fa-arrow-down-1-9::before {
  content: "\f162";
}

.fa-sort-numeric-asc::before {
  content: "\f162";
}

.fa-sort-numeric-down::before {
  content: "\f162";
}

.fa-hand-holding-droplet::before {
  content: "\f4c1";
}

.fa-hand-holding-water::before {
  content: "\f4c1";
}

.fa-water::before {
  content: "\f773";
}

.fa-calendar-check::before {
  content: "\f274";
}

.fa-braille::before {
  content: "\f2a1";
}

.fa-prescription-bottle-medical::before {
  content: "\f486";
}

.fa-prescription-bottle-alt::before {
  content: "\f486";
}

.fa-landmark::before {
  content: "\f66f";
}

.fa-truck::before {
  content: "\f0d1";
}

.fa-crosshairs::before {
  content: "\f05b";
}

.fa-person-cane::before {
  content: "\e53c";
}

.fa-tent::before {
  content: "\e57d";
}

.fa-vest-patches::before {
  content: "\e086";
}

.fa-check-double::before {
  content: "\f560";
}

.fa-arrow-down-a-z::before {
  content: "\f15d";
}

.fa-sort-alpha-asc::before {
  content: "\f15d";
}

.fa-sort-alpha-down::before {
  content: "\f15d";
}

.fa-money-bill-wheat::before {
  content: "\e52a";
}

.fa-cookie::before {
  content: "\f563";
}

.fa-arrow-rotate-left::before {
  content: "\f0e2";
}

.fa-arrow-left-rotate::before {
  content: "\f0e2";
}

.fa-arrow-rotate-back::before {
  content: "\f0e2";
}

.fa-arrow-rotate-backward::before {
  content: "\f0e2";
}

.fa-undo::before {
  content: "\f0e2";
}

.fa-hard-drive::before {
  content: "\f0a0";
}

.fa-hdd::before {
  content: "\f0a0";
}

.fa-face-grin-squint-tears::before {
  content: "\f586";
}

.fa-grin-squint-tears::before {
  content: "\f586";
}

.fa-dumbbell::before {
  content: "\f44b";
}

.fa-rectangle-list::before {
  content: "\f022";
}

.fa-list-alt::before {
  content: "\f022";
}

.fa-tarp-droplet::before {
  content: "\e57c";
}

.fa-house-medical-circle-check::before {
  content: "\e511";
}

.fa-person-skiing-nordic::before {
  content: "\f7ca";
}

.fa-skiing-nordic::before {
  content: "\f7ca";
}

.fa-calendar-plus::before {
  content: "\f271";
}

.fa-plane-arrival::before {
  content: "\f5af";
}

.fa-circle-left::before {
  content: "\f359";
}

.fa-arrow-alt-circle-left::before {
  content: "\f359";
}

.fa-train-subway::before {
  content: "\f239";
}

.fa-subway::before {
  content: "\f239";
}

.fa-chart-gantt::before {
  content: "\e0e4";
}

.fa-indian-rupee-sign::before {
  content: "\e1bc";
}

.fa-indian-rupee::before {
  content: "\e1bc";
}

.fa-inr::before {
  content: "\e1bc";
}

.fa-crop-simple::before {
  content: "\f565";
}

.fa-crop-alt::before {
  content: "\f565";
}

.fa-money-bill-1::before {
  content: "\f3d1";
}

.fa-money-bill-alt::before {
  content: "\f3d1";
}

.fa-left-long::before {
  content: "\f30a";
}

.fa-long-arrow-alt-left::before {
  content: "\f30a";
}

.fa-dna::before {
  content: "\f471";
}

.fa-virus-slash::before {
  content: "\e075";
}

.fa-minus::before {
  content: "\f068";
}

.fa-subtract::before {
  content: "\f068";
}

.fa-child-rifle::before {
  content: "\e4e0";
}

.fa-chess::before {
  content: "\f439";
}

.fa-arrow-left-long::before {
  content: "\f177";
}

.fa-long-arrow-left::before {
  content: "\f177";
}

.fa-plug-circle-check::before {
  content: "\e55c";
}

.fa-street-view::before {
  content: "\f21d";
}

.fa-franc-sign::before {
  content: "\e18f";
}

.fa-volume-off::before {
  content: "\f026";
}

.fa-hands-asl-interpreting::before {
  content: "\f2a3";
}

.fa-american-sign-language-interpreting::before {
  content: "\f2a3";
}

.fa-asl-interpreting::before {
  content: "\f2a3";
}

.fa-hands-american-sign-language-interpreting::before {
  content: "\f2a3";
}

.fa-gear::before {
  content: "\f013";
}

.fa-cog::before {
  content: "\f013";
}

.fa-droplet-slash::before {
  content: "\f5c7";
}

.fa-tint-slash::before {
  content: "\f5c7";
}

.fa-mosque::before {
  content: "\f678";
}

.fa-mosquito::before {
  content: "\e52b";
}

.fa-star-of-david::before {
  content: "\f69a";
}

.fa-person-military-rifle::before {
  content: "\e54b";
}

.fa-cart-shopping::before {
  content: "\f07a";
}

.fa-shopping-cart::before {
  content: "\f07a";
}

.fa-vials::before {
  content: "\f493";
}

.fa-plug-circle-plus::before {
  content: "\e55f";
}

.fa-place-of-worship::before {
  content: "\f67f";
}

.fa-grip-vertical::before {
  content: "\f58e";
}

.fa-arrow-turn-up::before {
  content: "\f148";
}

.fa-level-up::before {
  content: "\f148";
}

.fa-u::before {
  content: "U";
}

.fa-square-root-variable::before {
  content: "\f698";
}

.fa-square-root-alt::before {
  content: "\f698";
}

.fa-clock::before {
  content: "\f017";
}

.fa-clock-four::before {
  content: "\f017";
}

.fa-backward-step::before {
  content: "\f048";
}

.fa-step-backward::before {
  content: "\f048";
}

.fa-pallet::before {
  content: "\f482";
}

.fa-faucet::before {
  content: "\e005";
}

.fa-baseball-bat-ball::before {
  content: "\f432";
}

.fa-s::before {
  content: "S";
}

.fa-timeline::before {
  content: "\e29c";
}

.fa-keyboard::before {
  content: "\f11c";
}

.fa-caret-down::before {
  content: "\f0d7";
}

.fa-house-chimney-medical::before {
  content: "\f7f2";
}

.fa-clinic-medical::before {
  content: "\f7f2";
}

.fa-temperature-three-quarters::before {
  content: "\f2c8";
}

.fa-temperature-3::before {
  content: "\f2c8";
}

.fa-thermometer-3::before {
  content: "\f2c8";
}

.fa-thermometer-three-quarters::before {
  content: "\f2c8";
}

.fa-mobile-screen::before {
  content: "\f3cf";
}

.fa-mobile-android-alt::before {
  content: "\f3cf";
}

.fa-plane-up::before {
  content: "\e22d";
}

.fa-piggy-bank::before {
  content: "\f4d3";
}

.fa-battery-half::before {
  content: "\f242";
}

.fa-battery-3::before {
  content: "\f242";
}

.fa-mountain-city::before {
  content: "\e52e";
}

.fa-coins::before {
  content: "\f51e";
}

.fa-khanda::before {
  content: "\f66d";
}

.fa-sliders::before {
  content: "\f1de";
}

.fa-sliders-h::before {
  content: "\f1de";
}

.fa-folder-tree::before {
  content: "\f802";
}

.fa-network-wired::before {
  content: "\f6ff";
}

.fa-map-pin::before {
  content: "\f276";
}

.fa-hamsa::before {
  content: "\f665";
}

.fa-cent-sign::before {
  content: "\e3f5";
}

.fa-flask::before {
  content: "\f0c3";
}

.fa-person-pregnant::before {
  content: "\e31e";
}

.fa-wand-sparkles::before {
  content: "\f72b";
}

.fa-ellipsis-vertical::before {
  content: "\f142";
}

.fa-ellipsis-v::before {
  content: "\f142";
}

.fa-ticket::before {
  content: "\f145";
}

.fa-power-off::before {
  content: "\f011";
}

.fa-right-long::before {
  content: "\f30b";
}

.fa-long-arrow-alt-right::before {
  content: "\f30b";
}

.fa-flag-usa::before {
  content: "\f74d";
}

.fa-laptop-file::before {
  content: "\e51d";
}

.fa-tty::before {
  content: "\f1e4";
}

.fa-teletype::before {
  content: "\f1e4";
}

.fa-diagram-next::before {
  content: "\e476";
}

.fa-person-rifle::before {
  content: "\e54e";
}

.fa-house-medical-circle-exclamation::before {
  content: "\e512";
}

.fa-closed-captioning::before {
  content: "\f20a";
}

.fa-person-hiking::before {
  content: "\f6ec";
}

.fa-hiking::before {
  content: "\f6ec";
}

.fa-venus-double::before {
  content: "\f226";
}

.fa-images::before {
  content: "\f302";
}

.fa-calculator::before {
  content: "\f1ec";
}

.fa-people-pulling::before {
  content: "\e535";
}

.fa-n::before {
  content: "N";
}

.fa-cable-car::before {
  content: "\f7da";
}

.fa-tram::before {
  content: "\f7da";
}

.fa-cloud-rain::before {
  content: "\f73d";
}

.fa-building-circle-xmark::before {
  content: "\e4d4";
}

.fa-ship::before {
  content: "\f21a";
}

.fa-arrows-down-to-line::before {
  content: "\e4b8";
}

.fa-download::before {
  content: "\f019";
}

.fa-face-grin::before {
  content: "\f580";
}

.fa-grin::before {
  content: "\f580";
}

.fa-delete-left::before {
  content: "\f55a";
}

.fa-backspace::before {
  content: "\f55a";
}

.fa-eye-dropper::before {
  content: "\f1fb";
}

.fa-eye-dropper-empty::before {
  content: "\f1fb";
}

.fa-eyedropper::before {
  content: "\f1fb";
}

.fa-file-circle-check::before {
  content: "\e5a0";
}

.fa-forward::before {
  content: "\f04e";
}

.fa-mobile::before {
  content: "\f3ce";
}

.fa-mobile-android::before {
  content: "\f3ce";
}

.fa-mobile-phone::before {
  content: "\f3ce";
}

.fa-face-meh::before {
  content: "\f11a";
}

.fa-meh::before {
  content: "\f11a";
}

.fa-align-center::before {
  content: "\f037";
}

.fa-book-skull::before {
  content: "\f6b7";
}

.fa-book-dead::before {
  content: "\f6b7";
}

.fa-id-card::before {
  content: "\f2c2";
}

.fa-drivers-license::before {
  content: "\f2c2";
}

.fa-outdent::before {
  content: "\f03b";
}

.fa-dedent::before {
  content: "\f03b";
}

.fa-heart-circle-exclamation::before {
  content: "\e4fe";
}

.fa-house::before {
  content: "\f015";
}

.fa-home::before {
  content: "\f015";
}

.fa-home-alt::before {
  content: "\f015";
}

.fa-home-lg-alt::before {
  content: "\f015";
}

.fa-calendar-week::before {
  content: "\f784";
}

.fa-laptop-medical::before {
  content: "\f812";
}

.fa-b::before {
  content: "B";
}

.fa-file-medical::before {
  content: "\f477";
}

.fa-dice-one::before {
  content: "\f525";
}

.fa-kiwi-bird::before {
  content: "\f535";
}

.fa-arrow-right-arrow-left::before {
  content: "\f0ec";
}

.fa-exchange::before {
  content: "\f0ec";
}

.fa-rotate-right::before {
  content: "\f2f9";
}

.fa-redo-alt::before {
  content: "\f2f9";
}

.fa-rotate-forward::before {
  content: "\f2f9";
}

.fa-utensils::before {
  content: "\f2e7";
}

.fa-cutlery::before {
  content: "\f2e7";
}

.fa-arrow-up-wide-short::before {
  content: "\f161";
}

.fa-sort-amount-up::before {
  content: "\f161";
}

.fa-mill-sign::before {
  content: "\e1ed";
}

.fa-bowl-rice::before {
  content: "\e2eb";
}

.fa-skull::before {
  content: "\f54c";
}

.fa-tower-broadcast::before {
  content: "\f519";
}

.fa-broadcast-tower::before {
  content: "\f519";
}

.fa-truck-pickup::before {
  content: "\f63c";
}

.fa-up-long::before {
  content: "\f30c";
}

.fa-long-arrow-alt-up::before {
  content: "\f30c";
}

.fa-stop::before {
  content: "\f04d";
}

.fa-code-merge::before {
  content: "\f387";
}

.fa-upload::before {
  content: "\f093";
}

.fa-hurricane::before {
  content: "\f751";
}

.fa-mound::before {
  content: "\e52d";
}

.fa-toilet-portable::before {
  content: "\e583";
}

.fa-compact-disc::before {
  content: "\f51f";
}

.fa-file-arrow-down::before {
  content: "\f56d";
}

.fa-file-download::before {
  content: "\f56d";
}

.fa-caravan::before {
  content: "\f8ff";
}

.fa-shield-cat::before {
  content: "\e572";
}

.fa-bolt::before {
  content: "\f0e7";
}

.fa-zap::before {
  content: "\f0e7";
}

.fa-glass-water::before {
  content: "\e4f4";
}

.fa-oil-well::before {
  content: "\e532";
}

.fa-vault::before {
  content: "\e2c5";
}

.fa-mars::before {
  content: "\f222";
}

.fa-toilet::before {
  content: "\f7d8";
}

.fa-plane-circle-xmark::before {
  content: "\e557";
}

.fa-yen-sign::before {
  content: "\f157";
}

.fa-cny::before {
  content: "\f157";
}

.fa-jpy::before {
  content: "\f157";
}

.fa-rmb::before {
  content: "\f157";
}

.fa-yen::before {
  content: "\f157";
}

.fa-ruble-sign::before {
  content: "\f158";
}

.fa-rouble::before {
  content: "\f158";
}

.fa-rub::before {
  content: "\f158";
}

.fa-ruble::before {
  content: "\f158";
}

.fa-sun::before {
  content: "\f185";
}

.fa-guitar::before {
  content: "\f7a6";
}

.fa-face-laugh-wink::before {
  content: "\f59c";
}

.fa-laugh-wink::before {
  content: "\f59c";
}

.fa-horse-head::before {
  content: "\f7ab";
}

.fa-bore-hole::before {
  content: "\e4c3";
}

.fa-industry::before {
  content: "\f275";
}

.fa-circle-down::before {
  content: "\f358";
}

.fa-arrow-alt-circle-down::before {
  content: "\f358";
}

.fa-arrows-turn-to-dots::before {
  content: "\e4c1";
}

.fa-florin-sign::before {
  content: "\e184";
}

.fa-arrow-down-short-wide::before {
  content: "\f884";
}

.fa-sort-amount-desc::before {
  content: "\f884";
}

.fa-sort-amount-down-alt::before {
  content: "\f884";
}

.fa-less-than::before {
  content: "\<";
}

.fa-angle-down::before {
  content: "\f107";
}

.fa-car-tunnel::before {
  content: "\e4de";
}

.fa-head-side-cough::before {
  content: "\e061";
}

.fa-grip-lines::before {
  content: "\f7a4";
}

.fa-thumbs-down::before {
  content: "\f165";
}

.fa-user-lock::before {
  content: "\f502";
}

.fa-arrow-right-long::before {
  content: "\f178";
}

.fa-long-arrow-right::before {
  content: "\f178";
}

.fa-anchor-circle-xmark::before {
  content: "\e4ac";
}

.fa-ellipsis::before {
  content: "\f141";
}

.fa-ellipsis-h::before {
  content: "\f141";
}

.fa-chess-pawn::before {
  content: "\f443";
}

.fa-kit-medical::before {
  content: "\f479";
}

.fa-first-aid::before {
  content: "\f479";
}

.fa-person-through-window::before {
  content: "\e5a9";
}

.fa-toolbox::before {
  content: "\f552";
}

.fa-hands-holding-circle::before {
  content: "\e4fb";
}

.fa-bug::before {
  content: "\f188";
}

.fa-credit-card::before {
  content: "\f09d";
}

.fa-credit-card-alt::before {
  content: "\f09d";
}

.fa-car::before {
  content: "\f1b9";
}

.fa-automobile::before {
  content: "\f1b9";
}

.fa-hand-holding-hand::before {
  content: "\e4f7";
}

.fa-book-open-reader::before {
  content: "\f5da";
}

.fa-book-reader::before {
  content: "\f5da";
}

.fa-mountain-sun::before {
  content: "\e52f";
}

.fa-arrows-left-right-to-line::before {
  content: "\e4ba";
}

.fa-dice-d20::before {
  content: "\f6cf";
}

.fa-truck-droplet::before {
  content: "\e58c";
}

.fa-file-circle-xmark::before {
  content: "\e5a1";
}

.fa-temperature-arrow-up::before {
  content: "\e040";
}

.fa-temperature-up::before {
  content: "\e040";
}

.fa-medal::before {
  content: "\f5a2";
}

.fa-bed::before {
  content: "\f236";
}

.fa-square-h::before {
  content: "\f0fd";
}

.fa-h-square::before {
  content: "\f0fd";
}

.fa-podcast::before {
  content: "\f2ce";
}

.fa-temperature-full::before {
  content: "\f2c7";
}

.fa-temperature-4::before {
  content: "\f2c7";
}

.fa-thermometer-4::before {
  content: "\f2c7";
}

.fa-thermometer-full::before {
  content: "\f2c7";
}

.fa-bell::before {
  content: "\f0f3";
}

.fa-superscript::before {
  content: "\f12b";
}

.fa-plug-circle-xmark::before {
  content: "\e560";
}

.fa-star-of-life::before {
  content: "\f621";
}

.fa-phone-slash::before {
  content: "\f3dd";
}

.fa-paint-roller::before {
  content: "\f5aa";
}

.fa-handshake-angle::before {
  content: "\f4c4";
}

.fa-hands-helping::before {
  content: "\f4c4";
}

.fa-location-dot::before {
  content: "\f3c5";
}

.fa-map-marker-alt::before {
  content: "\f3c5";
}

.fa-file::before {
  content: "\f15b";
}

.fa-greater-than::before {
  content: "\>";
}

.fa-person-swimming::before {
  content: "\f5c4";
}

.fa-swimmer::before {
  content: "\f5c4";
}

.fa-arrow-down::before {
  content: "\f063";
}

.fa-droplet::before {
  content: "\f043";
}

.fa-tint::before {
  content: "\f043";
}

.fa-eraser::before {
  content: "\f12d";
}

.fa-earth-americas::before {
  content: "\f57d";
}

.fa-earth::before {
  content: "\f57d";
}

.fa-earth-america::before {
  content: "\f57d";
}

.fa-globe-americas::before {
  content: "\f57d";
}

.fa-person-burst::before {
  content: "\e53b";
}

.fa-dove::before {
  content: "\f4ba";
}

.fa-battery-empty::before {
  content: "\f244";
}

.fa-battery-0::before {
  content: "\f244";
}

.fa-socks::before {
  content: "\f696";
}

.fa-inbox::before {
  content: "\f01c";
}

.fa-section::before {
  content: "\e447";
}

.fa-gauge-high::before {
  content: "\f625";
}

.fa-tachometer-alt::before {
  content: "\f625";
}

.fa-tachometer-alt-fast::before {
  content: "\f625";
}

.fa-envelope-open-text::before {
  content: "\f658";
}

.fa-hospital::before {
  content: "\f0f8";
}

.fa-hospital-alt::before {
  content: "\f0f8";
}

.fa-hospital-wide::before {
  content: "\f0f8";
}

.fa-wine-bottle::before {
  content: "\f72f";
}

.fa-chess-rook::before {
  content: "\f447";
}

.fa-bars-staggered::before {
  content: "\f550";
}

.fa-reorder::before {
  content: "\f550";
}

.fa-stream::before {
  content: "\f550";
}

.fa-dharmachakra::before {
  content: "\f655";
}

.fa-hotdog::before {
  content: "\f80f";
}

.fa-person-walking-with-cane::before {
  content: "\f29d";
}

.fa-blind::before {
  content: "\f29d";
}

.fa-drum::before {
  content: "\f569";
}

.fa-ice-cream::before {
  content: "\f810";
}

.fa-heart-circle-bolt::before {
  content: "\e4fc";
}

.fa-fax::before {
  content: "\f1ac";
}

.fa-paragraph::before {
  content: "\f1dd";
}

.fa-check-to-slot::before {
  content: "\f772";
}

.fa-vote-yea::before {
  content: "\f772";
}

.fa-star-half::before {
  content: "\f089";
}

.fa-boxes-stacked::before {
  content: "\f468";
}

.fa-boxes::before {
  content: "\f468";
}

.fa-boxes-alt::before {
  content: "\f468";
}

.fa-link::before {
  content: "\f0c1";
}

.fa-chain::before {
  content: "\f0c1";
}

.fa-ear-listen::before {
  content: "\f2a2";
}

.fa-assistive-listening-systems::before {
  content: "\f2a2";
}

.fa-tree-city::before {
  content: "\e587";
}

.fa-play::before {
  content: "\f04b";
}

.fa-font::before {
  content: "\f031";
}

.fa-rupiah-sign::before {
  content: "\e23d";
}

.fa-magnifying-glass::before {
  content: "\f002";
}

.fa-search::before {
  content: "\f002";
}

.fa-table-tennis-paddle-ball::before {
  content: "\f45d";
}

.fa-ping-pong-paddle-ball::before {
  content: "\f45d";
}

.fa-table-tennis::before {
  content: "\f45d";
}

.fa-person-dots-from-line::before {
  content: "\f470";
}

.fa-diagnoses::before {
  content: "\f470";
}

.fa-trash-can-arrow-up::before {
  content: "\f82a";
}

.fa-trash-restore-alt::before {
  content: "\f82a";
}

.fa-naira-sign::before {
  content: "\e1f6";
}

.fa-cart-arrow-down::before {
  content: "\f218";
}

.fa-walkie-talkie::before {
  content: "\f8ef";
}

.fa-file-pen::before {
  content: "\f31c";
}

.fa-file-edit::before {
  content: "\f31c";
}

.fa-receipt::before {
  content: "\f543";
}

.fa-square-pen::before {
  content: "\f14b";
}

.fa-pen-square::before {
  content: "\f14b";
}

.fa-pencil-square::before {
  content: "\f14b";
}

.fa-suitcase-rolling::before {
  content: "\f5c1";
}

.fa-person-circle-exclamation::before {
  content: "\e53f";
}

.fa-chevron-down::before {
  content: "\f078";
}

.fa-battery-full::before {
  content: "\f240";
}

.fa-battery::before {
  content: "\f240";
}

.fa-battery-5::before {
  content: "\f240";
}

.fa-skull-crossbones::before {
  content: "\f714";
}

.fa-code-compare::before {
  content: "\e13a";
}

.fa-list-ul::before {
  content: "\f0ca";
}

.fa-list-dots::before {
  content: "\f0ca";
}

.fa-school-lock::before {
  content: "\e56f";
}

.fa-tower-cell::before {
  content: "\e585";
}

.fa-down-long::before {
  content: "\f309";
}

.fa-long-arrow-alt-down::before {
  content: "\f309";
}

.fa-ranking-star::before {
  content: "\e561";
}

.fa-chess-king::before {
  content: "\f43f";
}

.fa-person-harassing::before {
  content: "\e549";
}

.fa-brazilian-real-sign::before {
  content: "\e46c";
}

.fa-landmark-dome::before {
  content: "\f752";
}

.fa-landmark-alt::before {
  content: "\f752";
}

.fa-arrow-up::before {
  content: "\f062";
}

.fa-tv::before {
  content: "\f26c";
}

.fa-television::before {
  content: "\f26c";
}

.fa-tv-alt::before {
  content: "\f26c";
}

.fa-shrimp::before {
  content: "\e448";
}

.fa-list-check::before {
  content: "\f0ae";
}

.fa-tasks::before {
  content: "\f0ae";
}

.fa-jug-detergent::before {
  content: "\e519";
}

.fa-circle-user::before {
  content: "\f2bd";
}

.fa-user-circle::before {
  content: "\f2bd";
}

.fa-user-shield::before {
  content: "\f505";
}

.fa-wind::before {
  content: "\f72e";
}

.fa-car-burst::before {
  content: "\f5e1";
}

.fa-car-crash::before {
  content: "\f5e1";
}

.fa-y::before {
  content: "Y";
}

.fa-person-snowboarding::before {
  content: "\f7ce";
}

.fa-snowboarding::before {
  content: "\f7ce";
}

.fa-truck-fast::before {
  content: "\f48b";
}

.fa-shipping-fast::before {
  content: "\f48b";
}

.fa-fish::before {
  content: "\f578";
}

.fa-user-graduate::before {
  content: "\f501";
}

.fa-circle-half-stroke::before {
  content: "\f042";
}

.fa-adjust::before {
  content: "\f042";
}

.fa-clapperboard::before {
  content: "\e131";
}

.fa-circle-radiation::before {
  content: "\f7ba";
}

.fa-radiation-alt::before {
  content: "\f7ba";
}

.fa-baseball::before {
  content: "\f433";
}

.fa-baseball-ball::before {
  content: "\f433";
}

.fa-jet-fighter-up::before {
  content: "\e518";
}

.fa-diagram-project::before {
  content: "\f542";
}

.fa-project-diagram::before {
  content: "\f542";
}

.fa-copy::before {
  content: "\f0c5";
}

.fa-volume-xmark::before {
  content: "\f6a9";
}

.fa-volume-mute::before {
  content: "\f6a9";
}

.fa-volume-times::before {
  content: "\f6a9";
}

.fa-hand-sparkles::before {
  content: "\e05d";
}

.fa-grip::before {
  content: "\f58d";
}

.fa-grip-horizontal::before {
  content: "\f58d";
}

.fa-share-from-square::before {
  content: "\f14d";
}

.fa-share-square::before {
  content: "\f14d";
}

.fa-gun::before {
  content: "\e19b";
}

.fa-square-phone::before {
  content: "\f098";
}

.fa-phone-square::before {
  content: "\f098";
}

.fa-plus::before {
  content: "\+";
}

.fa-add::before {
  content: "\+";
}

.fa-expand::before {
  content: "\f065";
}

.fa-computer::before {
  content: "\e4e5";
}

.fa-xmark::before {
  content: "\f00d";
}

.fa-close::before {
  content: "\f00d";
}

.fa-multiply::before {
  content: "\f00d";
}

.fa-remove::before {
  content: "\f00d";
}

.fa-times::before {
  content: "\f00d";
}

.fa-arrows-up-down-left-right::before {
  content: "\f047";
}

.fa-arrows::before {
  content: "\f047";
}

.fa-chalkboard-user::before {
  content: "\f51c";
}

.fa-chalkboard-teacher::before {
  content: "\f51c";
}

.fa-peso-sign::before {
  content: "\e222";
}

.fa-building-shield::before {
  content: "\e4d8";
}

.fa-baby::before {
  content: "\f77c";
}

.fa-users-line::before {
  content: "\e592";
}

.fa-quote-left::before {
  content: "\f10d";
}

.fa-quote-left-alt::before {
  content: "\f10d";
}

.fa-tractor::before {
  content: "\f722";
}

.fa-trash-arrow-up::before {
  content: "\f829";
}

.fa-trash-restore::before {
  content: "\f829";
}

.fa-arrow-down-up-lock::before {
  content: "\e4b0";
}

.fa-lines-leaning::before {
  content: "\e51e";
}

.fa-ruler-combined::before {
  content: "\f546";
}

.fa-copyright::before {
  content: "\f1f9";
}

.fa-equals::before {
  content: "\=";
}

.fa-blender::before {
  content: "\f517";
}

.fa-teeth::before {
  content: "\f62e";
}

.fa-shekel-sign::before {
  content: "\f20b";
}

.fa-ils::before {
  content: "\f20b";
}

.fa-shekel::before {
  content: "\f20b";
}

.fa-sheqel::before {
  content: "\f20b";
}

.fa-sheqel-sign::before {
  content: "\f20b";
}

.fa-map::before {
  content: "\f279";
}

.fa-rocket::before {
  content: "\f135";
}

.fa-photo-film::before {
  content: "\f87c";
}

.fa-photo-video::before {
  content: "\f87c";
}

.fa-folder-minus::before {
  content: "\f65d";
}

.fa-store::before {
  content: "\f54e";
}

.fa-arrow-trend-up::before {
  content: "\e098";
}

.fa-plug-circle-minus::before {
  content: "\e55e";
}

.fa-sign-hanging::before {
  content: "\f4d9";
}

.fa-sign::before {
  content: "\f4d9";
}

.fa-bezier-curve::before {
  content: "\f55b";
}

.fa-bell-slash::before {
  content: "\f1f6";
}

.fa-tablet::before {
  content: "\f3fb";
}

.fa-tablet-android::before {
  content: "\f3fb";
}

.fa-school-flag::before {
  content: "\e56e";
}

.fa-fill::before {
  content: "\f575";
}

.fa-angle-up::before {
  content: "\f106";
}

.fa-drumstick-bite::before {
  content: "\f6d7";
}

.fa-holly-berry::before {
  content: "\f7aa";
}

.fa-chevron-left::before {
  content: "\f053";
}

.fa-bacteria::before {
  content: "\e059";
}

.fa-hand-lizard::before {
  content: "\f258";
}

.fa-disease::before {
  content: "\f7fa";
}

.fa-briefcase-medical::before {
  content: "\f469";
}

.fa-genderless::before {
  content: "\f22d";
}

.fa-chevron-right::before {
  content: "\f054";
}

.fa-retweet::before {
  content: "\f079";
}

.fa-car-rear::before {
  content: "\f5de";
}

.fa-car-alt::before {
  content: "\f5de";
}

.fa-pump-soap::before {
  content: "\e06b";
}

.fa-video-slash::before {
  content: "\f4e2";
}

.fa-battery-quarter::before {
  content: "\f243";
}

.fa-battery-2::before {
  content: "\f243";
}

.fa-radio::before {
  content: "\f8d7";
}

.fa-baby-carriage::before {
  content: "\f77d";
}

.fa-carriage-baby::before {
  content: "\f77d";
}

.fa-traffic-light::before {
  content: "\f637";
}

.fa-thermometer::before {
  content: "\f491";
}

.fa-vr-cardboard::before {
  content: "\f729";
}

.fa-hand-middle-finger::before {
  content: "\f806";
}

.fa-percent::before {
  content: "\%";
}

.fa-percentage::before {
  content: "\%";
}

.fa-truck-moving::before {
  content: "\f4df";
}

.fa-glass-water-droplet::before {
  content: "\e4f5";
}

.fa-display::before {
  content: "\e163";
}

.fa-face-smile::before {
  content: "\f118";
}

.fa-smile::before {
  content: "\f118";
}

.fa-thumbtack::before {
  content: "\f08d";
}

.fa-thumb-tack::before {
  content: "\f08d";
}

.fa-trophy::before {
  content: "\f091";
}

.fa-person-praying::before {
  content: "\f683";
}

.fa-pray::before {
  content: "\f683";
}

.fa-hammer::before {
  content: "\f6e3";
}

.fa-hand-peace::before {
  content: "\f25b";
}

.fa-rotate::before {
  content: "\f2f1";
}

.fa-sync-alt::before {
  content: "\f2f1";
}

.fa-spinner::before {
  content: "\f110";
}

.fa-robot::before {
  content: "\f544";
}

.fa-peace::before {
  content: "\f67c";
}

.fa-gears::before {
  content: "\f085";
}

.fa-cogs::before {
  content: "\f085";
}

.fa-warehouse::before {
  content: "\f494";
}

.fa-arrow-up-right-dots::before {
  content: "\e4b7";
}

.fa-splotch::before {
  content: "\f5bc";
}

.fa-face-grin-hearts::before {
  content: "\f584";
}

.fa-grin-hearts::before {
  content: "\f584";
}

.fa-dice-four::before {
  content: "\f524";
}

.fa-sim-card::before {
  content: "\f7c4";
}

.fa-transgender::before {
  content: "\f225";
}

.fa-transgender-alt::before {
  content: "\f225";
}

.fa-mercury::before {
  content: "\f223";
}

.fa-arrow-turn-down::before {
  content: "\f149";
}

.fa-level-down::before {
  content: "\f149";
}

.fa-person-falling-burst::before {
  content: "\e547";
}

.fa-award::before {
  content: "\f559";
}

.fa-ticket-simple::before {
  content: "\f3ff";
}

.fa-ticket-alt::before {
  content: "\f3ff";
}

.fa-building::before {
  content: "\f1ad";
}

.fa-angles-left::before {
  content: "\f100";
}

.fa-angle-double-left::before {
  content: "\f100";
}

.fa-qrcode::before {
  content: "\f029";
}

.fa-clock-rotate-left::before {
  content: "\f1da";
}

.fa-history::before {
  content: "\f1da";
}

.fa-face-grin-beam-sweat::before {
  content: "\f583";
}

.fa-grin-beam-sweat::before {
  content: "\f583";
}

.fa-file-export::before {
  content: "\f56e";
}

.fa-arrow-right-from-file::before {
  content: "\f56e";
}

.fa-shield::before {
  content: "\f132";
}

.fa-shield-blank::before {
  content: "\f132";
}

.fa-arrow-up-short-wide::before {
  content: "\f885";
}

.fa-sort-amount-up-alt::before {
  content: "\f885";
}

.fa-house-medical::before {
  content: "\e3b2";
}

.fa-golf-ball-tee::before {
  content: "\f450";
}

.fa-golf-ball::before {
  content: "\f450";
}

.fa-circle-chevron-left::before {
  content: "\f137";
}

.fa-chevron-circle-left::before {
  content: "\f137";
}

.fa-house-chimney-window::before {
  content: "\e00d";
}

.fa-pen-nib::before {
  content: "\f5ad";
}

.fa-tent-arrow-turn-left::before {
  content: "\e580";
}

.fa-tents::before {
  content: "\e582";
}

.fa-wand-magic::before {
  content: "\f0d0";
}

.fa-magic::before {
  content: "\f0d0";
}

.fa-dog::before {
  content: "\f6d3";
}

.fa-carrot::before {
  content: "\f787";
}

.fa-moon::before {
  content: "\f186";
}

.fa-wine-glass-empty::before {
  content: "\f5ce";
}

.fa-wine-glass-alt::before {
  content: "\f5ce";
}

.fa-cheese::before {
  content: "\f7ef";
}

.fa-yin-yang::before {
  content: "\f6ad";
}

.fa-music::before {
  content: "\f001";
}

.fa-code-commit::before {
  content: "\f386";
}

.fa-temperature-low::before {
  content: "\f76b";
}

.fa-person-biking::before {
  content: "\f84a";
}

.fa-biking::before {
  content: "\f84a";
}

.fa-broom::before {
  content: "\f51a";
}

.fa-shield-heart::before {
  content: "\e574";
}

.fa-gopuram::before {
  content: "\f664";
}

.fa-earth-oceania::before {
  content: "\e47b";
}

.fa-globe-oceania::before {
  content: "\e47b";
}

.fa-square-xmark::before {
  content: "\f2d3";
}

.fa-times-square::before {
  content: "\f2d3";
}

.fa-xmark-square::before {
  content: "\f2d3";
}

.fa-hashtag::before {
  content: "\#";
}

.fa-up-right-and-down-left-from-center::before {
  content: "\f424";
}

.fa-expand-alt::before {
  content: "\f424";
}

.fa-oil-can::before {
  content: "\f613";
}

.fa-t::before {
  content: "T";
}

.fa-hippo::before {
  content: "\f6ed";
}

.fa-chart-column::before {
  content: "\e0e3";
}

.fa-infinity::before {
  content: "\f534";
}

.fa-vial-circle-check::before {
  content: "\e596";
}

.fa-person-arrow-down-to-line::before {
  content: "\e538";
}

.fa-voicemail::before {
  content: "\f897";
}

.fa-fan::before {
  content: "\f863";
}

.fa-person-walking-luggage::before {
  content: "\e554";
}

.fa-up-down::before {
  content: "\f338";
}

.fa-arrows-alt-v::before {
  content: "\f338";
}

.fa-cloud-moon-rain::before {
  content: "\f73c";
}

.fa-calendar::before {
  content: "\f133";
}

.fa-trailer::before {
  content: "\e041";
}

.fa-bahai::before {
  content: "\f666";
}

.fa-haykal::before {
  content: "\f666";
}

.fa-sd-card::before {
  content: "\f7c2";
}

.fa-dragon::before {
  content: "\f6d5";
}

.fa-shoe-prints::before {
  content: "\f54b";
}

.fa-circle-plus::before {
  content: "\f055";
}

.fa-plus-circle::before {
  content: "\f055";
}

.fa-face-grin-tongue-wink::before {
  content: "\f58b";
}

.fa-grin-tongue-wink::before {
  content: "\f58b";
}

.fa-hand-holding::before {
  content: "\f4bd";
}

.fa-plug-circle-exclamation::before {
  content: "\e55d";
}

.fa-link-slash::before {
  content: "\f127";
}

.fa-chain-broken::before {
  content: "\f127";
}

.fa-chain-slash::before {
  content: "\f127";
}

.fa-unlink::before {
  content: "\f127";
}

.fa-clone::before {
  content: "\f24d";
}

.fa-person-walking-arrow-loop-left::before {
  content: "\e551";
}

.fa-arrow-up-z-a::before {
  content: "\f882";
}

.fa-sort-alpha-up-alt::before {
  content: "\f882";
}

.fa-fire-flame-curved::before {
  content: "\f7e4";
}

.fa-fire-alt::before {
  content: "\f7e4";
}

.fa-tornado::before {
  content: "\f76f";
}

.fa-file-circle-plus::before {
  content: "\e494";
}

.fa-book-quran::before {
  content: "\f687";
}

.fa-quran::before {
  content: "\f687";
}

.fa-anchor::before {
  content: "\f13d";
}

.fa-border-all::before {
  content: "\f84c";
}

.fa-face-angry::before {
  content: "\f556";
}

.fa-angry::before {
  content: "\f556";
}

.fa-cookie-bite::before {
  content: "\f564";
}

.fa-arrow-trend-down::before {
  content: "\e097";
}

.fa-rss::before {
  content: "\f09e";
}

.fa-feed::before {
  content: "\f09e";
}

.fa-draw-polygon::before {
  content: "\f5ee";
}

.fa-scale-balanced::before {
  content: "\f24e";
}

.fa-balance-scale::before {
  content: "\f24e";
}

.fa-gauge-simple-high::before {
  content: "\f62a";
}

.fa-tachometer::before {
  content: "\f62a";
}

.fa-tachometer-fast::before {
  content: "\f62a";
}

.fa-shower::before {
  content: "\f2cc";
}

.fa-desktop::before {
  content: "\f390";
}

.fa-desktop-alt::before {
  content: "\f390";
}

.fa-m::before {
  content: "M";
}

.fa-table-list::before {
  content: "\f00b";
}

.fa-th-list::before {
  content: "\f00b";
}

.fa-comment-sms::before {
  content: "\f7cd";
}

.fa-sms::before {
  content: "\f7cd";
}

.fa-book::before {
  content: "\f02d";
}

.fa-user-plus::before {
  content: "\f234";
}

.fa-check::before {
  content: "\f00c";
}

.fa-battery-three-quarters::before {
  content: "\f241";
}

.fa-battery-4::before {
  content: "\f241";
}

.fa-house-circle-check::before {
  content: "\e509";
}

.fa-angle-left::before {
  content: "\f104";
}

.fa-diagram-successor::before {
  content: "\e47a";
}

.fa-truck-arrow-right::before {
  content: "\e58b";
}

.fa-arrows-split-up-and-left::before {
  content: "\e4bc";
}

.fa-hand-fist::before {
  content: "\f6de";
}

.fa-fist-raised::before {
  content: "\f6de";
}

.fa-cloud-moon::before {
  content: "\f6c3";
}

.fa-briefcase::before {
  content: "\f0b1";
}

.fa-person-falling::before {
  content: "\e546";
}

.fa-image-portrait::before {
  content: "\f3e0";
}

.fa-portrait::before {
  content: "\f3e0";
}

.fa-user-tag::before {
  content: "\f507";
}

.fa-rug::before {
  content: "\e569";
}

.fa-earth-europe::before {
  content: "\f7a2";
}

.fa-globe-europe::before {
  content: "\f7a2";
}

.fa-cart-flatbed-suitcase::before {
  content: "\f59d";
}

.fa-luggage-cart::before {
  content: "\f59d";
}

.fa-rectangle-xmark::before {
  content: "\f410";
}

.fa-rectangle-times::before {
  content: "\f410";
}

.fa-times-rectangle::before {
  content: "\f410";
}

.fa-window-close::before {
  content: "\f410";
}

.fa-baht-sign::before {
  content: "\e0ac";
}

.fa-book-open::before {
  content: "\f518";
}

.fa-book-journal-whills::before {
  content: "\f66a";
}

.fa-journal-whills::before {
  content: "\f66a";
}

.fa-handcuffs::before {
  content: "\e4f8";
}

.fa-triangle-exclamation::before {
  content: "\f071";
}

.fa-exclamation-triangle::before {
  content: "\f071";
}

.fa-warning::before {
  content: "\f071";
}

.fa-database::before {
  content: "\f1c0";
}

.fa-share::before {
  content: "\f064";
}

.fa-arrow-turn-right::before {
  content: "\f064";
}

.fa-mail-forward::before {
  content: "\f064";
}

.fa-bottle-droplet::before {
  content: "\e4c4";
}

.fa-mask-face::before {
  content: "\e1d7";
}

.fa-hill-rockslide::before {
  content: "\e508";
}

.fa-right-left::before {
  content: "\f362";
}

.fa-exchange-alt::before {
  content: "\f362";
}

.fa-paper-plane::before {
  content: "\f1d8";
}

.fa-road-circle-exclamation::before {
  content: "\e565";
}

.fa-dungeon::before {
  content: "\f6d9";
}

.fa-align-right::before {
  content: "\f038";
}

.fa-money-bill-1-wave::before {
  content: "\f53b";
}

.fa-money-bill-wave-alt::before {
  content: "\f53b";
}

.fa-life-ring::before {
  content: "\f1cd";
}

.fa-hands::before {
  content: "\f2a7";
}

.fa-sign-language::before {
  content: "\f2a7";
}

.fa-signing::before {
  content: "\f2a7";
}

.fa-calendar-day::before {
  content: "\f783";
}

.fa-water-ladder::before {
  content: "\f5c5";
}

.fa-ladder-water::before {
  content: "\f5c5";
}

.fa-swimming-pool::before {
  content: "\f5c5";
}

.fa-arrows-up-down::before {
  content: "\f07d";
}

.fa-arrows-v::before {
  content: "\f07d";
}

.fa-face-grimace::before {
  content: "\f57f";
}

.fa-grimace::before {
  content: "\f57f";
}

.fa-wheelchair-move::before {
  content: "\e2ce";
}

.fa-wheelchair-alt::before {
  content: "\e2ce";
}

.fa-turn-down::before {
  content: "\f3be";
}

.fa-level-down-alt::before {
  content: "\f3be";
}

.fa-person-walking-arrow-right::before {
  content: "\e552";
}

.fa-square-envelope::before {
  content: "\f199";
}

.fa-envelope-square::before {
  content: "\f199";
}

.fa-dice::before {
  content: "\f522";
}

.fa-bowling-ball::before {
  content: "\f436";
}

.fa-brain::before {
  content: "\f5dc";
}

.fa-bandage::before {
  content: "\f462";
}

.fa-band-aid::before {
  content: "\f462";
}

.fa-calendar-minus::before {
  content: "\f272";
}

.fa-circle-xmark::before {
  content: "\f057";
}

.fa-times-circle::before {
  content: "\f057";
}

.fa-xmark-circle::before {
  content: "\f057";
}

.fa-gifts::before {
  content: "\f79c";
}

.fa-hotel::before {
  content: "\f594";
}

.fa-earth-asia::before {
  content: "\f57e";
}

.fa-globe-asia::before {
  content: "\f57e";
}

.fa-id-card-clip::before {
  content: "\f47f";
}

.fa-id-card-alt::before {
  content: "\f47f";
}

.fa-magnifying-glass-plus::before {
  content: "\f00e";
}

.fa-search-plus::before {
  content: "\f00e";
}

.fa-thumbs-up::before {
  content: "\f164";
}

.fa-user-clock::before {
  content: "\f4fd";
}

.fa-hand-dots::before {
  content: "\f461";
}

.fa-allergies::before {
  content: "\f461";
}

.fa-file-invoice::before {
  content: "\f570";
}

.fa-window-minimize::before {
  content: "\f2d1";
}

.fa-mug-saucer::before {
  content: "\f0f4";
}

.fa-coffee::before {
  content: "\f0f4";
}

.fa-brush::before {
  content: "\f55d";
}

.fa-mask::before {
  content: "\f6fa";
}

.fa-magnifying-glass-minus::before {
  content: "\f010";
}

.fa-search-minus::before {
  content: "\f010";
}

.fa-ruler-vertical::before {
  content: "\f548";
}

.fa-user-large::before {
  content: "\f406";
}

.fa-user-alt::before {
  content: "\f406";
}

.fa-train-tram::before {
  content: "\e5b4";
}

.fa-user-nurse::before {
  content: "\f82f";
}

.fa-syringe::before {
  content: "\f48e";
}

.fa-cloud-sun::before {
  content: "\f6c4";
}

.fa-stopwatch-20::before {
  content: "\e06f";
}

.fa-square-full::before {
  content: "\f45c";
}

.fa-magnet::before {
  content: "\f076";
}

.fa-jar::before {
  content: "\e516";
}

.fa-note-sticky::before {
  content: "\f249";
}

.fa-sticky-note::before {
  content: "\f249";
}

.fa-bug-slash::before {
  content: "\e490";
}

.fa-arrow-up-from-water-pump::before {
  content: "\e4b6";
}

.fa-bone::before {
  content: "\f5d7";
}

.fa-user-injured::before {
  content: "\f728";
}

.fa-face-sad-tear::before {
  content: "\f5b4";
}

.fa-sad-tear::before {
  content: "\f5b4";
}

.fa-plane::before {
  content: "\f072";
}

.fa-tent-arrows-down::before {
  content: "\e581";
}

.fa-exclamation::before {
  content: "\!";
}

.fa-arrows-spin::before {
  content: "\e4bb";
}

.fa-print::before {
  content: "\f02f";
}

.fa-turkish-lira-sign::before {
  content: "\e2bb";
}

.fa-try::before {
  content: "\e2bb";
}

.fa-turkish-lira::before {
  content: "\e2bb";
}

.fa-dollar-sign::before {
  content: "\$";
}

.fa-dollar::before {
  content: "\$";
}

.fa-usd::before {
  content: "\$";
}

.fa-x::before {
  content: "X";
}

.fa-magnifying-glass-dollar::before {
  content: "\f688";
}

.fa-search-dollar::before {
  content: "\f688";
}

.fa-users-gear::before {
  content: "\f509";
}

.fa-users-cog::before {
  content: "\f509";
}

.fa-person-military-pointing::before {
  content: "\e54a";
}

.fa-building-columns::before {
  content: "\f19c";
}

.fa-bank::before {
  content: "\f19c";
}

.fa-institution::before {
  content: "\f19c";
}

.fa-museum::before {
  content: "\f19c";
}

.fa-university::before {
  content: "\f19c";
}

.fa-umbrella::before {
  content: "\f0e9";
}

.fa-trowel::before {
  content: "\e589";
}

.fa-d::before {
  content: "D";
}

.fa-stapler::before {
  content: "\e5af";
}

.fa-masks-theater::before {
  content: "\f630";
}

.fa-theater-masks::before {
  content: "\f630";
}

.fa-kip-sign::before {
  content: "\e1c4";
}

.fa-hand-point-left::before {
  content: "\f0a5";
}

.fa-handshake-simple::before {
  content: "\f4c6";
}

.fa-handshake-alt::before {
  content: "\f4c6";
}

.fa-jet-fighter::before {
  content: "\f0fb";
}

.fa-fighter-jet::before {
  content: "\f0fb";
}

.fa-square-share-nodes::before {
  content: "\f1e1";
}

.fa-share-alt-square::before {
  content: "\f1e1";
}

.fa-barcode::before {
  content: "\f02a";
}

.fa-plus-minus::before {
  content: "\e43c";
}

.fa-video::before {
  content: "\f03d";
}

.fa-video-camera::before {
  content: "\f03d";
}

.fa-graduation-cap::before {
  content: "\f19d";
}

.fa-mortar-board::before {
  content: "\f19d";
}

.fa-hand-holding-medical::before {
  content: "\e05c";
}

.fa-person-circle-check::before {
  content: "\e53e";
}

.fa-turn-up::before {
  content: "\f3bf";
}

.fa-level-up-alt::before {
  content: "\f3bf";
}

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

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

/*!
 * Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2022 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-classic: "Font Awesome 6 Free";
  --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
}

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("./webfonts/fa-solid-900.woff2") format("woff2"), url("./webfonts/fa-solid-900.ttf") format("truetype");
}
.fas,
.fa-solid,
div.discount-scale ul li::before {
  font-weight: 900;
}

a:link {
  color: #e18c0b;
}

h4, .h4 {
  color: #e18c0b;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 19px;
  margin: 2rem 0 1rem;
  padding: 0px 0px 5px 0px;
  border-bottom: 1px solid #ddd;
}

.price .cur {
  padding-left: 0.1rem;
}
.price .cur, .price .decimal {
  font-size: 0.6em;
  vertical-align: super;
}

.content_navbar .wishlist > a::before, .content_navbar .cart > a::before, .content_navbar .checkout a::before, .content_navbar .imprint a::before, .content_navbar .contact a::before, .content_navbar .sidebar_btn a::before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  padding-right: 0.3em;
  font-size: 1rem;
}

/* -----------------------------------------------------------------------------------------
    01. Fonts
    02. Globals (body, tables, p, etc. )
    03. Header
    04. Headlines
    05. Links
    06. Inputs, Selects, Textarea
    07. Footer, Copyright, Parse Time
    08. Content
    09. HR pseudos
    10. Breadcrumbs
    11. New Boxes
    12. Categories box
    13. Highlightbox
    14. Product-Navigator 
    15. Error, info & success messages
    16. Checkout
    17. Color Defination from language-Files, main.php, ot-Module
    18. Listing globals
    19. Productlist boxes
    20. Productlist rows
    21. Categories listing & subcats
    22. Pagination
    23. Filter manufacturer
    24. Content sites (AGB, Datenschutz, etc.)
    25. Products table for order_details, account_history_info, checkout_confirmation
    26. Product details
    27. Graduated prices
    28. Addtobasket
    29. Product_details reviews
    30. Product_options
    31. Product_details media
    32. Popup content
    33. print content (popup print_product_info, popup print_order.html)
    34. Reviews
    35. Upcoming_products
    36. Coupon box - error message
    37. Downloads
    38. Offline & Admin-login
    39. Toggle shopping cart box
    40. Carousel Bestseller box
    41. Janolaw.de (BASIC Template for AGB Hosting Content)
    42. Sitemap 
    43. Product_reviews_info
    44. Last viewed in account
    45. Account cart and click buttons
    46. Miscellaneous
    47. CSS Buttons
    48. CSS Write reviews
    49. Custom checkbox & radio 
    50. New address book handling

   ---------------------------------------------------------------------------------------*/
/* 1. START fonts */
/*
  font-family: 'Poppins', sans-serif;
  font-weights: 300,400,500,600,700

  Color 1 - magenta
  color: #$wvd-primary-color;

  Color 2 - magenta dunkel
  color: #7c2759;

  Color 3 - magenta hell
  color: #eee5ea;

  Color 4 - rot
  color: #e74c3c;
*/
/* Fonts */
/* poppins-300 - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("fonts/poppins-v6-latin-300.eot");
  src: local("Poppins Light"), local("Poppins-Light"), url("fonts/poppins-v6-latin-300.eot?#iefix") format("embedded-opentype"), url("fonts/poppins-v6-latin-300.woff2") format("woff2"), url("fonts/poppins-v6-latin-300.woff") format("woff"), url("fonts/poppins-v6-latin-300.ttf") format("truetype"), url("fonts/poppins-v6-latin-300.svg#Poppins") format("svg");
}
/* poppins-regular - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/poppins-v6-latin-regular.eot");
  src: local("Poppins Regular"), local("Poppins-Regular"), url("fonts/poppins-v6-latin-regular.eot?#iefix") format("embedded-opentype"), url("fonts/poppins-v6-latin-regular.woff2") format("woff2"), url("fonts/poppins-v6-latin-regular.woff") format("woff"), url("fonts/poppins-v6-latin-regular.ttf") format("truetype"), url("fonts/poppins-v6-latin-regular.svg#Poppins") format("svg");
}
/* poppins-500 - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/poppins-v6-latin-500.eot");
  src: local("Poppins Medium"), local("Poppins-Medium"), url("fonts/poppins-v6-latin-500.eot?#iefix") format("embedded-opentype"), url("fonts/poppins-v6-latin-500.woff2") format("woff2"), url("fonts/poppins-v6-latin-500.woff") format("woff"), url("fonts/poppins-v6-latin-500.ttf") format("truetype"), url("fonts/poppins-v6-latin-500.svg#Poppins") format("svg");
}
/* poppins-600 - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/poppins-v6-latin-600.eot");
  src: local("Poppins SemiBold"), local("Poppins-SemiBold"), url("fonts/poppins-v6-latin-600.eot?#iefix") format("embedded-opentype"), url("fonts/poppins-v6-latin-600.woff2") format("woff2"), url("fonts/poppins-v6-latin-600.woff") format("woff"), url("fonts/poppins-v6-latin-600.ttf") format("truetype"), url("fonts/poppins-v6-latin-600.svg#Poppins") format("svg");
}
/* poppins-700 - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/poppins-v6-latin-700.eot");
  src: local("Poppins Bold"), local("Poppins-Bold"), url("fonts/poppins-v6-latin-700.eot?#iefix") format("embedded-opentype"), url("fonts/poppins-v6-latin-700.woff2") format("woff2"), url("fonts/poppins-v6-latin-700.woff") format("woff"), url("fonts/poppins-v6-latin-700.ttf") format("truetype"), url("fonts/poppins-v6-latin-700.svg#Poppins") format("svg");
}
/* END fonts */
/* 2. START globals */
* {
  margin: 0;
  padding: 0;
}

/* prevent flicker in responsive tabs */
#horizontalAccordion {
  display: none;
}

#horizontalAccordion ul.resp-tabs-list {
  display: none !important;
}

#horizontalTab ul.resp-tabs-list {
  list-style-type: none;
}

#horizontalTab ul.resp-tabs-list li {
  display: inline-block;
}

/* prevent zoom of fields on iphone */
@supports (-webkit-overflow-scrolling: touch) {
  input[type=text], input[type=password], input[type=email], input[type=tel] {
    font-size: 16px !important;
  }
  select {
    font-size: 16px !important;
  }
  textarea {
    font-size: 16px !important;
    line-height: 20px !important;
  }
  .SumoSelect > .CaptionCont {
    font-size: 16px !important;
    line-height: 18px !important;
  }
}
/* Disable font boosting on mobile browsers */
body * {
  -moz-text-size-adjust: none; /* Firefox Mobile */
  -webkit-text-size-adjust: 100%; /* Safari */
  -ms-text-size-adjust: 100%; /* Windows Mobile */
  max-height: 1000000px; /* Chrome for Android */
}

body {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 13px;
  background-color: #fff;
  color: #555;
}

strong, b {
  font-weight: 700;
}

.clearfix, .clear, .clearer {
  line-height: 0px;
  height: 0px;
  clear: both;
}

.cf:before, .cf:after {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  zoom: 1;
}

.mini {
  font-size: 11px;
  font-weight: normal;
}

.midi {
  font-size: 12px;
  font-weight: normal;
}

.lineheight16 {
  line-height: 16px;
}

.lineheight18 {
  line-height: 18px;
}

a.black {
  color: #333 !important;
}

a.black:hover {
  color: #e18c0b !important;
  text-decoration: none !important;
}

.twoColums {
  float: left;
  width: 100%;
  margin: 0 0 20px 0;
}

.twoColums.last {
  margin: 0 0 20px 0;
}

.twoColums.stickyright {
  float: right;
}

.twoColumsInner {
  float: left;
  width: 100%;
  margin: 0 0 20px 0;
}

.twoColumsInner.last {
  margin: 0 0 20px 0;
}

@media only screen and (min-width: 759px) {
  .twoColums {
    width: 48%;
    margin: 0px 4% 20px 0px;
  }
  .twoColums.last {
    margin: 0px 0px 20px 0px;
  }
  .twoColumsInner {
    width: 48%;
    margin: 0px 4% 20px 0px;
  }
  .twoColumsInner.last {
    margin: 0px 0px 20px 0px;
  }
}
.twoColums_small {
  float: left;
  width: 47%;
  margin: 0 6% 0px 0;
}

.twoColums_small.last {
  margin: 0 0 0 0;
}

.button_left,
.button_left_cart {
  float: left;
  display: inline-block;
  max-width: 48%;
  margin: 10px 0px 0px 0px;
  min-height: 32px;
  line-height: 32px;
}

.button_left_cart {
  max-width: 130px;
}

@media only screen and (min-width: 759px) {
  .button_left_cart {
    max-width: 48%;
  }
}
.button_right,
.button_right_cart {
  float: right;
  display: inline-block;
  max-width: 48%;
  margin: 10px 0px 0px 0px;
  text-align: right;
  min-height: 32px;
  line-height: 32px;
}

.button_right_cart {
  max-width: 170px;
}

@media only screen and (min-width: 759px) {
  .button_right_cart {
    max-width: 48%;
  }
}
.button_left_error {
  float: left;
  display: inline-block;
  max-width: 48%;
  margin: -10px 0 0 0;
  min-height: 32px;
  line-height: 32px;
}

@media only screen and (min-width: 759px) {
  .button_left_error {
    margin: 22px 0 0 0;
  }
}
.button_right_checkout {
  float: right;
  text-align: right;
  display: inline-block;
  margin: 10px 0px 0px 0px;
  min-width: 200px;
  width: 100%;
}

@media only screen and (min-width: 500px) {
  .button_right_checkout {
    width: auto;
  }
}
.button_right_checkout_small {
  float: right;
  margin: 4px 0px 0px 20px;
}

.button_left img,
.button_left input,
.button_left_error input,
.button_right img,
.button_right input,
.button_left_cart img,
.button_left_cart input,
.button_right_cart img,
.button_right_cart input,
.button_right_checkout input {
  vertical-align: bottom;
}

.button_left_cart img {
  margin: 0px 5px 5px 0px;
}

@media only screen and (min-width: 759px) {
  .button_left_cart img {
    margin: 0px 5px 0px 0px;
  }
}
.paypal_button {
  margin: 0 0 5px 0;
  display: inline-block;
}

@media only screen and (min-width: 759px) {
  .paypal_button {
    margin: 0px 2px 0px 0px;
  }
}
.paypal_button img {
  height: 32px;
}

.paypal_button2 {
  margin: 5px 0px 0px 0px;
  display: block;
}

.paypal_button2 img {
  height: 32px;
}

.express_button {
  margin: 0 0 5px 0;
  display: inline-block;
}

@media only screen and (min-width: 759px) {
  .express_button {
    margin: 0 0 0 0;
  }
}
.paypal_button img {
  height: 32px;
}

.button_row_checkout {
  box-sizing: border-box;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

@media only screen and (min-width: 500px) {
  .button_row_checkout {
    -webkit-flex-direction: row;
    flex-direction: row;
  }
}
.button_row_checkout_left {
  margin: 10px 0px 0px 0px;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  box-sizing: border-box;
}

.button_row_checkout_right {
  margin: 10px 0px 0px 0px;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  box-sizing: border-box;
  text-align: right;
}

.text_left {
  float: left;
  width: 48%;
  margin: 10px 0px 0px 0px;
  min-height: 28px;
  font-size: 10px;
  line-height: 14px;
}

p {
  margin: 8px 0 8px 0;
}

p.onlytop {
  margin: 8px 0 0 0;
}

p.nomargin {
  margin: 0 0 0 0;
}

p.textright {
  text-align: right;
}

table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}

table td {
  padding: 4px 0px;
}

.td_full {
  width: 100%;
}

/* Start sidebar */
#sidebar_marker {
  display: none;
  width: 0px;
  height: 0px;
  line-height: 0px;
  font-size: 5px;
  background-position: 300px; /* Verschiebung des Contents bei mobile-Menu open*/
}

#sidebar_filler {
  background: #434343;
}

.sidebar_layer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9000;
  background: transparent url(css/images/overlay.png) repeat scroll 0px 0px;
  display: none;
  opacity: 0.9;
}

.sidebar_closer {
  position: fixed;
  top: 0px;
  left: 0px;
  font-size: 24px;
  line-height: 24px;
  color: #e18c0b;
  cursor: pointer;
  padding: 10px;
  background: #fafafa;
  width: 100%;
  max-width: 300px;
  box-sizing: border-box;
  text-align: right;
  z-index: 9002;
  display: none;
}

.sidebar_moremargin {
  top: 36px;
}

.box_sidebar {
  display: none;
}

.sidebar_inactive {
  cursor: pointer;
}

.sidebar_active {
  cursor: pointer;
}

.box_header.sidebar_inactive .fas {
  display: inline-block;
}

.box_header.sidebar_active .fas {
  display: inline-block;
  vertical-align: 0px;
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media only screen and (min-width: 992px) {
  .box_header.sidebar_inactive .fas {
    display: none;
  }
  .box_header.sidebar_active .fas {
    display: none;
  }
  .sidebar_inactive {
    cursor: default;
  }
  .sidebar_active {
    cursor: default;
  }
}
#layout_navbar {
  z-index: 1000;
}

#layout_logo {
  z-index: 1000;
}

#layout_content {
  z-index: 1000;
}

#layout_footer {
  z-index: 1000;
}

@media only screen and (min-width: 992px) {
  #layout_navbar {
    z-index: initial;
  }
  #layout_logo {
    z-index: initial;
  }
  #layout_content {
    z-index: initial;
  }
  #layout_footer {
    z-index: initial;
  }
  #sidebar_marker {
    font-size: 0px;
  }
  .box_sidebar {
    display: block;
  }
}
/* END globals */
/* 3. START header */
#layout_wrap {
  width: 100%;
  padding: 0px 0px;
  margin: 0px 0px;
}

#layout_navbar {
  background-color: #f5f5f5;
  padding: 3px 0px;
}

.layout_navbar_inner {
  width: 100%;
  max-width: 1140px;
  padding: 1px 10px 0px 10px;
  margin: 0px auto;
  box-sizing: border-box;
}

ul.topnavigation {
  list-style-type: none;
  width: 100%;
}

ul.topnavigation li {
  float: right;
  margin: 10px 0px;
  color: #666;
  font-size: 21px;
  line-height: 25px;
  padding: 0 10px 0 10px;
}

ul.topnavigation li.tn_group {
  display: none;
  float: left;
  padding: 0px;
}

ul.topnavigation li.tn_lang img {
  margin: 0px 0px 0px 5px;
}

ul.topnavigation li a {
  color: #666;
  font-weight: 400;
  text-decoration: none;
}

ul.topnavigation li a:hover {
  color: #e18c0b;
  text-decoration: none;
}

ul.topnavigation li .fas,
ul.topnavigation li .far {
  vertical-align: 0px;
  padding-right: 6px;
}

.tn_nomobile {
  display: none;
}

@media only screen and (min-width: 600px) {
  .tn_nomobile {
    display: initial;
  }
  ul.topnavigation li {
    padding: 0px 0px 0px 30px;
    line-height: 16px;
    font-size: 12px;
  }
}
@media only screen and (min-width: 920px) {
  ul.topnavigation li.tn_group {
    display: initial;
  }
}
#layout_logo {
  background-color: #ffffff;
  padding: 10px 10px;
  width: 100%;
  max-width: 1140px;
  margin: 0px auto;
  box-sizing: border-box;
}

@media only screen and (min-width: 992px) {
  #layout_logo {
    padding: 20px 10px;
  }
}
#logo {
  float: none;
  width: 100%;
  max-width: 235px;
  height: 75px;
  margin: 0px auto;
  background-size: 200% 150%;
  background-image: repeating-linear-gradient(-45deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 25%, rgb(231, 231, 231) 30%, rgb(255, 255, 255) 40%);
  animation: diagonal alternate 3s infinite;
}

@keyframes diagonal {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
#logo img {
  vertical-align: bottom;
  width: 235px;
  height: 67px;
}

#logo a {
  display: block;
  outline: none;
  text-decoration: none;
}

#logo a:hover {
  outline: none;
  text-decoration: none;
}

#search {
  float: none;
  position: relative;
  width: 100%;
  margin: 10px 0 10px 0;
}

@media only screen and (min-width: 600px) {
  #logo {
    float: left;
    width: 265px;
    max-width: initial;
    height: 75px;
  }
  #logo img {
    width: 265px;
    height: 75px;
  }
  #search {
    float: right;
    width: 48%;
    margin: 22px 0 0px 0;
  }
}
@media only screen and (min-width: 760px) {
  #search {
    width: 400px;
  }
}
.search_inner {
  box-sizing: border-box;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.search_inner .search_cat {
  position: relative;
  z-index: 1200;
  width: 80px;
}

.search_inner .search_cat select {
  height: 35px !important;
  padding-left: 8px !important;
}

.search_inner .search_cat .SumoSelect > .CaptionCont {
  background-color: #eeeeee !important;
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  height: 35px;
  border-right: 1px solid #eeeeee !important;
}

.search_inner .search_cat .SumoSelect:hover > .CaptionCont {
  border-right: 1px solid #eeeeee !important;
}

.search_inner .search_cat .SumoSelect:focus > .CaptionCont {
  border-right: 1px solid #659eC9 !important;
}

.search_inner .SumoSelect > .CaptionCont > span {
  padding-right: 20px;
}

.search_inner .search_cat .SumoSelect > .optWrapper {
  width: auto !important;
  max-width: 300px !important;
}

.search_inner .search_cat .SumoSelect > .optWrapper > .options li.opt {
  padding: 5px 6px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
}

.search_inner .search_input {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.search_inner.search_cat_mode .search_input input {
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}

#search .search_inner input[type=text] {
  padding-right: 10px;
  padding-left: 10px;
}

#search .search_inner ::-webkit-input-placeholder {
  color: #555;
}

#search .search_inner ::-moz-placeholder {
  color: #555;
}

#search .search_inner :-ms-input-placeholder {
  color: #555;
}

#search .search_inner :-moz-placeholder {
  color: #555;
}

#search .search_inner input[type=image] {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 76px;
  height: 32px;
}

/* END header */
/* 4. START headlines */
h1, .h1 {
  color: #555;
  font-weight: 300;
  font-size: 24px;
  line-height: 28px;
  margin: 25px 0 15px 0;
  padding: 0 0 5px;
  border-bottom: 0px solid transparent;
}

h1.checkout, .checkout.h1 {
  margin: 30px 0 15px 0;
}

.headline_right {
  display: block;
  float: right;
  padding: 5px 0 0;
  width: 100%;
  font-size: 14px;
}

@media only screen and (min-width: 690px) {
  .headline_right {
    width: initial;
    padding: 0;
  }
}
.headline_big {
  color: #555;
  font-weight: 300;
  font-size: 24px;
  line-height: 28px;
  margin: 25px 0 15px 0;
  padding: 0 0 5px;
  border-bottom: 0px solid transparent;
}

h2, .h2 {
  font-weight: bold;
  color: #555;
  font-size: 14px;
  margin: 20px 0px 8px 0px;
  padding: 0px;
  width: auto;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}

h3, .h3 {
  color: #555;
  font-weight: bold;
  font-size: 12px;
}

h4.detailbox, .detailbox.h4 {
  color: #222;
  font-size: 13px;
  margin: 40px 0px 10px 0px;
}

.pd_tabs h4.detailbox, .pd_tabs .detailbox.h4 {
  color: #222;
  font-size: 13px;
  margin: 15px 0px 10px 0px;
}

.pd_accordion h4.detailbox, .pd_accordion .detailbox.h4 {
  color: #222;
  font-size: 13px;
  margin: 15px 0px 10px 0px;
}

/* END headlines */
/* 5. START Links global */
a, a:link, a:visited, a:active, a:hover {
  background: transparent;
  text-decoration: none;
  outline: none;
  cursor: pointer;
}

a:visited {
  color: #e18c0b;
  outline: none;
}

a:hover, a:active {
  color: #e18c0b;
  outline: none;
}

a:hover {
  color: #555;
  text-decoration: underline;
  outline: none;
}

a img {
  border: none;
  outline: none;
}

.lazyload,
.lazyloading {
  opacity: 0;
}

.lazyloaded {
  opacity: 1;
  -webkit-transition: opacity 1s ease;
  -moz-transition: opacity 1s ease;
  -o-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

/* END Links global */
/* 6. START inputs */
textarea {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  background-color: #fafafa;
  border-color: #dddddd;
  color: #666;
  border-style: solid;
  border-width: 1px;
  vertical-align: middle;
  padding: 7px 5px;
  border-radius: 2px;
  box-sizing: border-box;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  background-color: #fafafa;
  border-color: #dddddd;
  color: #666;
  border-style: solid;
  border-width: 1px;
  vertical-align: middle;
  padding: 7px 5px 7px 2px;
  border-radius: 2px;
  box-sizing: border-box;
  width: 100%;
  height: 35px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=radio], input[type=checkbox] {
  margin: 0 3px;
}

.stern input[type=text], .stern input[type=password], .stern input[type=email], .stern input[type=tel], .stern select, .stern textarea {
  width: 95%;
}

/* gv_send */
textarea#message {
  height: 120px;
}

/* contact */
textarea#message_body {
  resize: vertical;
  height: 120px;
}

/* write_review */
textarea#review {
  height: 80px;
}

td.checkbox {
  vertical-align: top;
  padding-top: 7px;
  padding-right: 5px;
}

.fieldtext, .fieldtext_stern {
  font-size: 10px;
  line-height: 14px;
  font-weight: 600;
  padding: 0px 0px 2px 0px;
  display: block;
}

.pflicht {
  font-size: 10px;
  line-height: 10px;
  vertical-align: baseline;
  text-transform: none;
  font-weight: 400;
}

.adv_search_checkbox input {
  vertical-align: -1px;
}

/* END inputs */
/* 7. START Footer */
#layout_footer {
  background: #363839;
  min-height: 280px;
  margin: 40px 0 0 0;
  padding: 0 0 20px 0;
}

.layout_footer_inner {
  width: 100%;
  max-width: 1140px;
  padding: 20px 10px 0px 10px;
  margin: 0px auto;
  box-sizing: border-box;
}

.footer_box_row {
  margin: 0px -10px;
}

.footer_box {
  float: left;
  padding: 0 0 0 0;
  width: 100%;
  margin: 0 0 20px 0;
  box-sizing: border-box;
}

@media only screen and (min-width: 500px) {
  .footer_box {
    width: 50%;
  }
  .footer_box:nth-child(3n) {
    clear: both;
  }
}
@media only screen and (min-width: 920px) {
  .footer_box {
    width: 25%;
  }
  .footer_box:nth-child(3n) {
    clear: none;
  }
}
.footer_box_inner {
  padding: 0px 10px;
}

.box3 {
  margin: 0px 0px 20px 0px;
}

.box3_header {
  color: #aaa;
  font-size: 13px;
  font-weight: 600;
  height: 40px;
  line-height: 39px;
}

.box3_line {
  height: 1px;
  border-top: 1px solid #444;
  margin: 0px 0px 10px 0px;
}

.box3_image {
  margin: 20px 0px 20px 0px;
}

.box3_image img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  max-width: 265px;
}

ul.footerlist, ul.footerlist ul {
  list-style-type: none;
}

ul.footerlist li .fas {
  float: left;
  padding: 3px 10px 0px 0px;
  margin-bottom: 4px;
}

ul.footerlist li a {
  color: #aaa;
  padding: 8px 0;
  display: block;
  font-size: 11px;
  line-height: 15px;
  border-bottom: 1px solid #444;
}

ul.footerlist li li a {
  padding-left: 15px;
}

ul.footerlist li a:hover {
  color: #eee;
  text-decoration: none;
}

ul.footerlist li li a:hover {
  color: #eee;
  text-decoration: none;
}

p.box3_sub {
  margin: 10px 0px 2px 0px;
  font-size: 9px;
  line-height: 15px;
  color: #aaa;
  word-break: break-all;
}

.newsletter_form {
  margin: 3px 0 0 0;
  position: relative;
  overflow: hidden;
}

.newsletter_form input[type=text],
.newsletter_form input[type=email] {
  padding-right: 60px;
}

.newsletter_form input[type=image] {
  position: absolute;
  right: 0px;
  top: 0px;
}

.mod_copyright {
  padding: 20px 0px 20px 0px;
  font-size: 10px;
  line-height: 16px;
  font-weight: 400;
  text-align: center;
  color: #aaa;
}

span.cop_magenta {
  color: #B0347E;
}

span.cop_grey {
  color: #aaa;
}

.copyright {
  margin: 0 auto;
  text-align: center;
  color: #aaa;
  font-size: 10px;
  line-height: 16px;
  font-weight: 400;
  padding: 0 0 10px 0;
  margin: -40px 0 0 0;
  width: 100%;
}

.copyright a {
  text-decoration: none;
}

/* ParseTime */
.parseTime {
  margin: 0 auto;
  text-align: center;
  color: #ccc;
  font-size: 10px;
  padding: 0 0 0px 0;
  margin: -10px 0 0 0;
}

.boxfield_lang {
  width: 212px;
}

.boxfield_kurz {
  float: left;
  width: 136px;
}

.box_button {
  float: right;
  width: 76px;
}

.box_footer_button {
  float: right;
  width: 90px;
}

.boxfield_newsletter {
  float: left;
  width: 138px;
}

/* END Footer */
/* 8. START content*/
#layout_content {
  width: 100%;
  max-width: 1140px;
  padding: 0px 10px;
  min-height: 600px;
  margin: 0px auto;
  box-sizing: border-box;
}

#col_left_overlay {
  display: none;
  z-index: 9001;
  position: absolute;
  top: 0px;
  background: transparent;
  width: 100%;
  height: 100%;
  left: -300px;
  padding-top: 45px;
  vertical-align: -3px;
}

#col_left {
  display: block;
  padding: 10px 10px 300px 10px;
  background: #fafafa;
  width: 280px;
}

#col_right {
  float: none;
  margin-left: 0px;
}

#col_right .col_right_inner {
  padding: 0px 0px 0px 0px;
  background: transparent;
  margin-left: 0px;
}

@media only screen and (min-width: 992px) {
  #col_left_overlay {
    display: block;
    max-width: 265px;
    position: static;
    height: auto;
    left: 0px;
    padding-top: 0px;
    vertical-align: 0px;
  }
  #col_left {
    position: static;
    float: left;
    width: 100%;
    max-width: 265px;
    padding: 0px 0px 0px 0px;
  }
  #col_left .col_left_inner {
    padding: 0px 0px 0px 0px;
    background: transparent;
  }
  #col_right {
    float: right;
    width: 100%;
    min-height: 520px;
    margin-left: -265px;
  }
  #col_right .col_right_inner {
    margin-left: 285px;
  }
}
#col_full {
  width: 100%;
}

#content_navbar {
  background-color: #eee;
  height: 43px;
}

ul.contentnavigation {
  height: 43px;
  width: 100%;
  list-style-type: none;
  position: relative;
}

ul.contentnavigation > li {
  float: left;
  padding: 0px 10px 0px 10px;
  line-height: 45px;
  color: #666;
  font-size: 13px;
  height: 43px;
}

ul.contentnavigation li.cn_nomobile {
  display: none;
}

@media only screen and (min-width: 850px) {
  ul.contentnavigation li.cn_nomobile {
    display: inline-block;
  }
}
ul.contentnavigation li a {
  color: #666;
  font-weight: normal;
  text-decoration: none;
}

ul.contentnavigation li a:hover {
  color: #7c2759;
  text-decoration: none;
}

ul.contentnavigation li .fas,
ul.contentnavigation li .far {
  display: inline-block;
  padding-right: 6px;
  font-size: 14px;
}

ul.contentnavigation li .fa-angle-right {
  vertical-align: -1px;
}

ul.contentnavigation li.cart {
  float: right;
  border: none;
  padding: 1px 10px 0px 10px;
  margin: 0px;
  line-height: 43px;
  height: 43px;
  position: static;
  box-sizing: border-box;
}

@media only screen and (min-width: 600px) {
  ul.contentnavigation li.cart {
    position: relative;
  }
}
ul.contentnavigation li.wishlist {
  float: right;
  border: none;
  padding: 1px 10px 0px 10px;
  margin: 0px;
  line-height: 43px;
  height: 43px;
  position: static;
  box-sizing: border-box;
}

@media only screen and (min-width: 600px) {
  ul.contentnavigation li.wishlist {
    position: relative;
  }
}
ul.contentnavigation li.cart a {
  display: block;
  font-size: 13px;
  line-height: 43px;
}

ul.contentnavigation li.cart a:hover {
  display: block;
  color: #7c2759;
  text-decoration: none;
}

ul.contentnavigation li.cart .cart_01 {
  float: left;
  display: inline-block;
}

ul.contentnavigation li.cart .cart_01 .fas {
  display: inline-block;
  float: left;
  line-height: 43px;
  font-size: 21px;
  padding-right: 4px;
}

@media only screen and (min-width: 600px) {
  ul.contentnavigation li.cart .cart_01 .fas {
    font-size: 14px;
    padding-right: 7px;
  }
}
ul.contentnavigation li.cart .cart_02 {
  float: left;
  display: none;
}

ul.contentnavigation li.cart .cart_02 .fas {
  display: inline-block;
  padding-left: 6px;
}

ul.contentnavigation li.cart .cart_03 {
  float: left;
  display: inline-block;
  font-weight: bold;
  padding: 0px 4px 0px 6px;
}

ul.contentnavigation li.cart .cart_04 {
  float: left;
  display: none;
}

ul.contentnavigation li.cart .cart_05 {
  display: inline-block;
  padding: 0px 3px;
}

.cn_nomobile_text {
  display: none;
}

@media only screen and (min-width: 601px) {
  .cn_nomobile_text {
    display: initial;
  }
  .cart_02 {
    display: inline-block !important;
  }
  .cart_04 {
    display: inline-block !important;
  }
  .cart_05 {
    display: none !important;
  }
  .wish_02 {
    display: inline-block !important;
  }
  .wish_04 {
    display: inline-block !important;
  }
  .wish_05 {
    display: none !important;
  }
}
ul.contentnavigation li.sidebar_btn {
  display: block;
  margin: 0px 0px;
  line-height: 45px;
  height: 43px;
  font-size: 23px;
}

ul.contentnavigation li.sidebar_btn a {
  font-weight: 700 !important;
  text-transform: uppercase;
  vertical-align: -1px;
}

ul.contentnavigation li.sidebar_btn a .fas {
  font-size: 25px;
  vertical-align: 0;
}

@media only screen and (min-width: 600px) {
  ul.contentnavigation li.sidebar_btn {
    line-height: 45px;
    font-size: 14px;
  }
  ul.contentnavigation li.sidebar_btn a {
    vertical-align: 0px;
  }
  ul.contentnavigation li.sidebar_btn a .fas {
    font-size: 14px;
  }
}
@media only screen and (min-width: 992px) {
  ul.contentnavigation li.sidebar_btn {
    display: none;
  }
}
/* END content */
/* 9. START pseudo hr's */
div.hr_1 {
  height: 1px;
  line-height: 1px;
  margin: 0;
  padding: 0;
  display: block;
  border-bottom: solid 1px #ddd;
  background-color: transparent;
}

div.hr_5 {
  height: 1px;
  line-height: 1px;
  margin: 5px 0px;
  padding: 0;
  display: block;
  border-bottom: solid 1px #ddd;
  background-color: transparent;
}

div.hr_10 {
  height: 1px;
  line-height: 1px;
  margin: 10px 0px;
  padding: 0;
  display: block;
  border-bottom: solid 1px #ddd;
  background-color: transparent;
}

div.hr_15 {
  height: 1px;
  line-height: 1px;
  margin: 15px 0px;
  padding: 0;
  display: block;
  border-bottom: solid 1px #ddd;
  background-color: transparent;
}

/* 9. END pseudo hr's */
/* 11. START New boxes */
.box1 {
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
  padding: 0px 10px 0px 10px;
}

.box_sidebar {
  padding: 0px 0px 10px 0px;
}

.box_select {
  padding: 10px 0 0 0;
}

.box_select_inner {
  padding: 5px 5px;
  background: #fff;
  overflow-y: auto;
}

.box_select a {
  display: block;
  border-bottom: 1px solid #ddd;
  padding: 4px 0px;
}

.box_select a:hover {
  text-decoration: none;
}

.box2 {
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
  padding: 0px 10px 0px 10px;
}

.box_header {
  color: #434343;
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  font-weight: 600;
}

.box_header .fas {
  display: none;
  font-size: 14px;
  line-height: 30px;
  margin-right: 6px;
  vertical-align: 0px;
  color: #e18c0b;
}

.box_line {
  height: 1px;
  background-color: transparent;
  border-top: 1px solid #ddd;
}

.box_line.abstand {
  margin: 10px 0px;
}

.box_sub {
  margin: 6px 0px 0px 0px;
  font-size: 11px;
  font-weight: 400;
  color: #666;
}

.box_sub a {
  color: #222222;
  text-decoration: none;
}

.box_sub a:hover {
  color: #7c2759;
  text-decoration: none;
}

.box_sub_button {
  margin: 12px 0px 0px 0px;
  font-size: 12px;
  color: #767676;
  line-height: 32px;
}

.box_sub_button a {
  float: left;
  display: inline-block;
}

.box_sub_button input[type=image] {
  float: right;
  width: 76px;
}

.show_title {
  float: left;
  display: inline-block;
}

a.show_all {
  float: right;
  display: inline-block;
  text-align: right;
  color: #222222;
  text-decoration: none;
  font-size: 12px;
  font-weight: normal;
  padding-top: 3px;
}

a.show_all:hover {
  color: #e18c0b;
  text-decoration: none;
}

a.show_all .arrow {
  color: #e18c0b !important;
  font-weight: bold;
}

.box_title {
  font-weight: 500;
  margin: 10px 0px 10px 0px;
  line-height: 17px;
  text-decoration: none;
}

.box_title strong {
  font-weight: 500;
}

.box_title a {
  color: #e18c0b;
}

.box_title a:hover {
  color: #444;
  text-decoration: none;
}

.box_image {
  text-align: center;
  margin: 0px auto 10px auto;
  width: 160px;
  background-color: #ffffff;
  border: 1px solid #ddd;
  position: relative;
  overflow: hidden;
}

.box_image:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.box_image img {
  margin: auto;
  position: absolute;
  font-size: 0px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  max-width: 20%;
  max-height: 20%;
  -webkit-transform: scale(4.4);
  -moz-transform: scale(4.4);
  -ms-transform: scale(4.4);
  -o-transform: scale(4.4);
  transform: scale(4.4);
}

.box_price {
  text-align: right;
  padding: 0px 10px 0 0;
  font-size: 14px;
  line-height: 24px;
  color: #434343;
  font-weight: 700;
}

.box_price .no_price {
  font-size: 9px;
  line-height: 12px;
  font-weight: normal;
  display: block;
  padding: 0 0 0 5px;
  color: #999;
}

.box_price .new_price {
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-weight: normal;
  color: #e74c3c;
}

.box_price .special_price {
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  color: #e74c3c;
}

.box_price .small_price {
  font-size: 10px;
  font-weight: 500;
  line-height: 10px;
}

.box_price .old_price {
  display: block;
  font-size: 12px;
  line-height: 18px;
  font-weight: normal;
  color: #666;
}

.box_price .save_price {
  font-size: 9px;
  font-weight: normal;
  line-height: 15px;
}

.box_price .item_price {
  display: block;
  font-weight: 400;
  font-size: 9px !important;
  line-height: 11px;
  color: #666;
  padding: 0 0 4px 0;
}

.box_price .item_price .small_price {
  font-size: 9px !important;
  line-height: 11px;
}

.box_price .uvp_price {
  display: block;
}

.box_price .graduated_price {
  display: block;
}

.box_vpe {
  text-align: right;
  padding: 0px 10px 4px 0;
  font-weight: 400;
  font-size: 9px;
  line-height: 11px;
  color: #666;
}

.box_tax {
  text-align: right;
  padding: 0px 10px 0 0;
  font-size: 9px;
  color: #666;
  line-height: 11px;
}

.box_tax a {
  color: #666;
  text-decoration: underline;
}

.box_tax a:hover {
  color: #666;
  text-decoration: underline;
}

.box_text {
  font-size: 12px;
  line-height: 16px;
  word-wrap: break-word;
}

.box_reviews_icons {
  display: block;
  font-size: 15px;
  line-height: 15px;
  color: #ccc;
  padding: 10px 0px 0 0;
  text-align: center;
}

.box_reviews_icons .fas {
  padding: 0 1px 0 0;
}

.box_reviews_icons .full {
  color: #f1c40f;
}

.quickie_form {
  position: relative;
}

.quickie_form input[type=text] {
  padding-right: 60px;
}

.quickie_form input[type=image] {
  position: absolute;
  right: 0px;
  top: 0px;
}

ul.orderhistory_list {
  margin: 4px 0 0 0;
  list-style-type: none;
}

ul.orderhistory_list li {
  position: relative;
  display: block;
  padding: 5px 30px 5px 0px;
  border-bottom: 1px solid #ddd;
  line-height: 17px;
}

ul.orderhistory_list li .cart_icon {
  position: absolute;
  top: 0px;
  right: 1px;
  width: 27px;
  height: 27px;
  display: block;
  overflow: hidden;
}

ul.orderhistory_list li .cart_icon a {
  color: #999;
}

ul.orderhistory_list li .cart_icon a:hover {
  color: #e18c0b;
}

ul.orderhistory_list li a:hover {
  text-decoration: none;
}

ul.orderhistory_list li .cart_icon .cssButton {
  padding: 5px 0px;
  line-height: 19px;
}

/* 11. END New boxes */
/* 12. START categories */
/*.box_category {
  background-color:#fff;
  margin-bottom:20px;
}
.box_category_header {
  background-color:#363839;
  color:#aaa;
  font-size:16px;
  font-weight:600;
  height:40px;
  line-height:40px;
  padding: 0px 10px;
  margin: 0px 0px;
}
.box_category_line {
  height:1px;
  background-color:#363839;
  margin: 0px 0px;
  border-top: 1px solid #444;  
}
ul#categorymenu {

}
ul#categorymenu li {
  list-style-type:none;
}
ul#categorymenu li a {
  text-decoration:none;
  display:block;
}  
ul#categorymenu li a:hover {
  text-decoration:none;
}*/
/* 1st TIER */
/*ul#categorymenu li.level1 a {
  color:#fff;
  font-size:14px;
  line-height:18px;
  font-weight:400;
  padding:8px 10px 8px 10px;
  background:#363839;
  border-bottom: 1px solid #444;
}
ul#categorymenu li.level1 a:hover {
  opacity:0.8;
}
ul#categorymenu li.activeparent1 a  { color:#7c2759; background:#eee5ea; border-bottom: 1px solid #aaa; }
ul#categorymenu li.active1 a  {	color:#7c2759; background: #eee5ea; border-bottom: 1px solid #aaa;}
*/
/* 2nd TIER */
/*ul#categorymenu li.level2 a {
  color:#434343;
  font-weight:400;
  background:url(img/dotted1.gif) no-repeat 10px 11px #d7d7d7;
  padding:7px 0 7px 20px;
  border-bottom: 1px solid #aaa;
  font-size:13px;
  line-height:17px;
}
ul#categorymenu li.level2 a:hover {
  opacity:0.8;
}
ul#categorymenu li.activeparent2 a  { color:#7c2759; background:url(img/dotted1.gif) no-repeat 10px 11px #eee5ea; }
ul#categorymenu li.a  {color:#7c2759; background:url(img/dotted1.gif) no-repeat 10px 11px #eee5ea; }*/
/* 3rd TIER */
/*ul#categorymenu li.level3 a {
  color:#333;
  background:url(img/dotted1.gif) no-repeat 22px 10px #c7c7c7;
  padding:5px 0 5px 32px;
  border-bottom: 1px solid #aaa;
  font-size:13px;
  line-height:17px;
}
ul#categorymenu li.level3 a:hover {
  opacity:0.8;
}
ul#categorymenu li.activeparent3 a  { color:#7c2759; background:url(img/dotted1.gif) no-repeat 22px 10px #eee5ea; }
ul#categorymenu li.active3 a  {color:#7c2759; background:url(img/dotted1.gif) no-repeat 22px 10px #eee5ea; }
*/
/* 4th TIER */
/*ul#categorymenu li.level4 a {
  color:#333;
  background:url(img/dotted1.gif) no-repeat 34px 10px #c7c7c7;
  padding:5px 0 5px 46px;
  border-bottom: 1px solid #aaa;
  font-size:13px;
  line-height:17px;
}
ul#categorymenu li.level4 a:hover {
  opacity:0.8;
}
ul#categorymenu li.activeparent4 a  { color:#7c2759; background:url(img/dotted1.gif) no-repeat 34px 10px #eee5ea; }
ul#categorymenu li.active4 a  {color:#7c2759; background:url(img/dotted1.gif) no-repeat 34px 10px #eee5ea; }
*/
/* 5th TIER */
/*ul#categorymenu li.level5 a {
  color:#333;
  background:url(img/dotted1.gif) no-repeat 46px 10px #c7c7c7;
  padding:5px 0 5px 58px;
  border-bottom: 1px solid #aaa;
  font-size:13px;
  line-height:17px;
}
ul#categorymenu li.level5 a:hover {
  opacity:0.8;
}
ul#categorymenu li.activeparent5 a  { color:#7c2759; background:url(img/dotted1.gif) no-repeat 46px 10px #eee5ea; }
ul#categorymenu li.active5 a  {color:#7c2759; background:url(img/dotted1.gif) no-repeat 46px 10px #eee5ea; }
/* 12. END categories */
/* 13. START Highlightbox */
div.highlightbox {
  padding: 15px 0;
  background: #fff;
  border: 0px solid #fff;
}

div.highlightbox.plainleft {
  padding: 15px 0px 15px 0px;
  background-color: transparent;
  border: none;
}

div.highlightbox.plainright {
  padding: 15px 0px 15px 0px;
  background-color: transparent;
  border: none;
}

div.highlightbox.plainfull {
  padding: 15px 0px 15px 0px;
  background-color: transparent;
  border: none;
}

div.highlightbox.grey {
  padding: 15px 10px;
  background: #f5f5f5;
  border: 1px solid #ddd;
}

div.highlightbox.checkoutborder {
  background: #fff;
  border: solid #e18c0b 2px;
  padding: 15px 10px !important;
}

.margintop {
  margin-top: 38px;
}

div.highlightbox ul {
  margin-left: 15px;
  padding: 0;
  display: block;
  list-style-type: square;
  line-height: 19px;
}

div.highlightbox ul.accountlist {
  margin-left: 15px;
  padding: 0;
  display: block;
  list-style-type: square;
  line-height: 23px;
}

.homesite {
  padding: 0 0 20px 0;
}

.homesite p:first-child {
  margin-top: -2px;
}

.homesite ul {
  margin-left: 16px;
  padding: 0;
  display: block;
}

.homesite img {
  max-width: 100% !important;
  height: auto !important;
}

table.table_gift tr td.gift_field {
  padding-right: 10px;
}

table.table_gift tr td.gift_button {
  width: 130px;
  padding-top: 20px;
}

table.table_gift tr td.gift_button input {
  float: right;
  margin-top: 16px;
}

/* 13. END Highlightbox */
/* 14. START product_navigator */
.productnavigator {
  margin: 30px 0px 0px 0px;
  background-color: #f5f5f5;
  padding: 10px 5px;
  font-size: 12px;
  line-height: 20px;
  color: #666;
}

.productnavigator .detail_back {
  display: none;
  float: left;
}

@media only screen and (min-width: 690px) {
  .productnavigator .detail_back {
    display: inline-block;
  }
}
.productnavigator .detail_next_previous {
  display: inline-block;
  float: right;
  text-align: right;
  white-space: nowrap;
}

.productnavigator .inactive {
  color: #aaa;
}

.productnavigator a {
  color: #666;
}

.productnavigator a:hover {
  color: #666;
  text-decoration: underline;
}

/* 14. END product_navigator */
/* 15. START error, info & success messages */
.errormessage {
  border: solid #fbe5e2 1px;
  padding: 10px;
  font-size: 12px !important;
  line-height: 16px;
  font-weight: 400;
  color: #e74c3c;
  background-color: #fbe5e2;
  margin-bottom: 10px;
}

.errormessage a {
  color: #e74c3c;
  font-weight: 600;
  text-decoration: underline;
}

.errormessage.shopsystem {
  margin-top: 36px;
  margin-bottom: -36px;
}

.errormessage p {
  margin: 4px 0px;
}

.errormessage ul li {
  margin-left: 10px;
}

.messageStackError {
  color: #e74c3c !important;
  font-size: 12px !important;
}

td.messageStackError {
  padding: 2px 0px;
}

.markProductOutOfStock {
  color: #e74c3c !important;
  padding-left: 5px;
}

.markProductOutOfStock span {
  color: #e74c3c !important;
}

/* SUCCESS MESSAGE */
.messageStackSuccess {
  color: #333 !important;
}

.inputRequirement {
  font-size: 10px;
  line-height: 20px;
  vertical-align: top;
}

.inputRequirement_textarea {
  font-size: 10px;
  vertical-align: top;
  line-height: 30px;
}

/* INFO MESSAGES */
.infomessage {
  border: 1px solid #d4edda;
  padding: 10px;
  background-color: #d4edda;
  margin-bottom: 10px;
  font-size: 12px !important;
  line-height: 16px;
  font-weight: 400;
  color: #155724;
}

.infomessage p {
  margin: 4px 0px;
}

.infomessage a {
  color: #333;
  text-decoration: none;
}

.infomessage a:hover {
  color: #155724;
  text-decoration: none;
}

/* 15. END error, info & success messages */
/* 16. START checkout */
ul#checkoutnavigation {
  margin: 10px -10px 0px -10px;
}

ul#checkoutnavigation li {
  list-style-type: none;
  float: none;
  width: 100%;
  padding: 5px 10px;
  box-sizing: border-box;
}

ul#checkoutnavigation li .active {
  padding: 10px 10px;
  display: block;
  background-color: #e18c0b;
  border: 1px solid #e18c0b;
  color: #FFFFFF;
}

ul#checkoutnavigation li .active .title {
  display: block;
  font-size: 15px;
  line-height: 19px;
  font-weight: 700;
  box-sizing: border-box;
}

ul#checkoutnavigation li .active .description {
  display: none;
  font-size: 12px;
  line-height: 16px;
  padding-top: 5px;
  min-height: 32px;
}

ul#checkoutnavigation li .inactive {
  padding: 10px 10px;
  display: block;
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
  color: #aaa;
}

ul#checkoutnavigation li .inactive .title {
  display: block;
  font-size: 15px;
  line-height: 19px;
  font-weight: 700;
  box-sizing: border-box;
}

ul#checkoutnavigation li .inactive .description {
  display: none;
  font-size: 12px;
  line-height: 16px;
  padding-top: 5px;
  min-height: 32px;
}

ul#checkoutnavigation.cn_no_shipping li {
  width: 100%;
}

ul#checkoutnavigation.cn_no_shipping li .active .description {
  min-height: 20px;
}

ul#checkoutnavigation.cn_no_shipping li .inactive .description {
  min-height: 20px;
}

@media only screen and (min-width: 400px) {
  ul#checkoutnavigation li {
    float: left;
    width: 50%;
  }
  ul#checkoutnavigation li .inactive .title {
    font-size: 13px;
  }
  ul#checkoutnavigation li .active .title {
    font-size: 13px;
  }
}
@media only screen and (min-width: 600px) {
  ul#checkoutnavigation.cn_no_shipping li {
    width: 33.3333%;
  }
}
@media only screen and (min-width: 759px) {
  ul#checkoutnavigation li {
    float: left;
    width: 25%;
  }
}
@media only screen and (min-width: 920px) {
  ul#checkoutnavigation li .description {
    display: block !important;
  }
}
ol#address_block {
  margin: 15px 0px 0px 20px;
}

ol#address_block li {
  border-top: 1px solid #ddd;
  margin-top: 10px;
  padding-top: 10px;
}

ol#address_block li label {
  font-weight: bold;
}

ol#address_block li .address {
  display: inline-block;
  padding: 5px 0px 0px 17px;
}

.checkoutcomment textarea {
  height: 142px;
}

div.agbframe {
  background-color: #fff;
  border-color: #ddd;
  color: #999999;
  border-style: solid;
  border-width: 1px;
  vertical-align: middle;
  padding: 5px 5px 5px 5px;
  border-radius: 2px;
  font-size: 12px;
  line-height: 18px;
  height: 120px;
  overflow: auto;
  text-align: left;
}

.checkoutagb {
  margin-bottom: 10px;
}

.checkoutconditions {
  padding: 10px 10px 0px 10px;
  font-size: 12px;
  text-align: left;
  line-height: 20px;
}

.checkoutconditions input#conditions {
  position: relative;
  bottom: -2px;
  margin-right: 4px;
}

table.paymentmoduledata {
  font-size: 12px;
  line-height: 15px;
}

table.paymentmoduledata tr td.title {
  vertical-align: top;
  padding-top: 8px;
}

table.paymentmoduledata tr td.field {
  vertical-align: top;
  padding-left: 12px;
}

table.paymentinfotable tr td {
  padding: 2px 20px 2px 0px;
}

table.paymentinfotable.paypallink span.cssButton, table.paymentinfotable.paypalpluslink span.cssButton {
  max-width: 165px;
  margin: 10px 0 0 0;
}

/* Accordion in checkout */
.checkout_accordion .errormessage {
  margin: 10px 0 0 0;
}

.checkout_accordion .infomessage {
  margin: 10px 0 0 0;
}

.shipping_costs, .payment_costs {
  float: right;
  margin-right: 10px;
}

.dutyinfo {
  font-size: 12px;
  padding: 5px;
  margin-top: 8px;
}

.button_right_checkout .checkoutconditions input[type=checkbox] {
  vertical-align: middle;
  bottom: inherit !important;
}

/* END checkout */
/* 17. START Color Defination from language-Files, main.php, ot-Module  */
.color_ot_total {
  color: #e74c3c;
}

.color_error_message {
  color: #e74c3c;
}

a.color_more {
  color: #e18c0b !important;
}

a.color_more:hover {
  color: #e18c0b !important;
  text-decoration: underline !important;
}

.color_edit_info {
  color: #e18c0b;
}

/* END Color Defination from language-Files, main.php, ot-Module  */
/* 21. START categories listing & subcats */
/*.cat_description {
  padding: 0px 0px 25px 0px; 
}
.cat_description ul {
  margin-left:15px;
}
.cat_description ol {
  margin-left:28px;
}
.cat_image {
  float:left;
  margin: 6px 25px 10px 0px;
  max-width:100%;
  position:relative;
}
.ci_nomargin {
  margin-right: 0px !important;
}


.subcats {
  margin: 0 -5px 25px -5px;
}
.subcatlist {
  float:left;
  width:50%;
  height:auto;
  padding: 0px 5px;
  margin: 0px 0px 10px 0px;
  box-sizing: border-box;
}
.subcatlist_inner {
  border: 1px solid #eee;
}
.subcat_image {
  display:block;
  vertical-align:middle;
  text-align:center;
  height:auto;
  overflow:hidden;
}
.subcat_image_inner {
  display:block;
  vertical-align:middle;
  text-align:center;
  position:relative;
}
.subcat_image_inner:before {
  content: "";
  display:block;
  padding-top: 52%;
}
.subcat_image img {
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  max-width: 20%;
  max-height: 20%;
  -webkit-transform: scale(4.4);
  -moz-transform: scale(4.4);
  -ms-transform: scale(4.4);
  -o-transform: scale(4.4);
  transform: scale(4.4);
}
.subcat_title {
  display:table;
  padding:5px 5px;
  color:#444;
  background:#f5f5f5;
  font-size:12px;
  height:38px;
  width:100%;
  line-height:14px;
  text-align:center;
  font-weight:bold;
  box-sizing: border-box;
}
.subcat_title_inner {
  display:table-cell;
  vertical-align:middle;
  text-align:center;
  word-break:break-all;
}
.subcat_desc {
  display:inline-block;
  padding:5px;
  font-size:12px;
  line-height:16px;
}
.subcatlist a {
  color:#444;
  display:block;
}
.subcatlist a:hover {
  text-decoration:none;
}
.subcatlist a:hover  .subcat_title {
  color:#7c2759 !important;
  text-decoration:none !important;
  background:#eee;
}

@media only screen and (min-width: 600px) {
  .subcatlist { width:33.3333%; }
}
@media only screen and (min-width: 690px) {
  .subcatlist { width:25%; }
}
@media only screen and (min-width: 992px) {
  .subcat_image_inner:before { padding-top: 65%; }
}
*/
.manu_description {
  padding: 0px 0px 25px 0px;
}

.manu_description ul {
  margin-left: 15px;
}

.manu_description ol {
  margin-left: 28px;
}

.manu_image {
  float: left;
  margin: 6px 25px 10px 0px;
  max-width: 100%;
  position: relative;
}

.mi_nomargin {
  margin-right: 0px !important;
  max-width: 100%;
}

/* END categories listing & subcats */
/* 22. START pagination */
.pagination_bar {
  padding: 0px 0px 0px 0px;
  margin: 20px 0 20px 0;
}

.pagination_text {
  float: left;
  display: none;
  font-size: 12px;
  line-height: 24px;
  vertical-align: middle;
  color: #444;
}

.pagination_list {
  display: inline-block;
  float: right;
  font-size: 12px;
  line-height: 24px;
}

.pagination_list ul {
  list-style-type: none;
  margin: 0;
}

.pagination_list ul li {
  float: left;
  font-size: 12px;
  line-height: 24px;
  text-align: center;
  padding: 0;
}

.pagination_list ul li.plain {
  padding: 0 4px;
}

.pagination_list ul li a {
  display: inline-block;
  min-width: 16px;
  padding: 0 5px;
  margin: 0 0 0 3px;
  color: #666;
  text-decoration: none;
  background-color: #eee;
}

.pagination_list ul li a:hover {
  color: #fff;
  background-color: #4d4d4d;
}

.pagination_list ul li.current {
  display: inline-block;
  min-width: 16px;
  padding: 0 5px;
  margin: 0 0 0 3px;
  color: #fff;
  font-weight: 700;
  background-color: #e18c0b;
}

@media only screen and (min-width: 920px) {
  .pagination_text {
    display: inline-block;
  }
}
/* END pagination */
/* 23. START filter manufacturer */
.filter_bar {
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
  margin-bottom: 15px;
  padding: 0px 5px;
}

.sort_bar {
  margin: 0px 0 0 0;
}

.sort_bar_row {
  margin: 0px -5px 0px -5px;
}

.sort_bar_item {
  float: left;
  width: 50%;
  padding: 5px 5px;
  box-sizing: border-box;
}

.sort_bar_item.right {
  float: right;
}

.sort_bar_item.right a {
  float: right;
  display: block;
  padding: 0px 5px;
  line-height: 32px;
  font-size: 18px;
  height: 32px;
}

.sort_bar_item.right .fas {
  vertical-align: -2px;
}

a.view_list {
  color: #b3b3b3;
}

a.view_list:hover, a.view_list.active {
  color: #6c6c6c;
  text-decoration: none;
}

a.view_box {
  color: #b3b3b3;
}

a.view_box:hover, a.view_box.active {
  color: #6c6c6c;
  text-decoration: none;
}

.tags_bar {
  margin: 5px 0 0 0;
}

.tags_bar_headline {
  font-size: 10px;
  line-height: 12px;
  font-weight: bold;
  padding: 0px 0px 0px 2px;
}

a.tags_bar_reset {
  float: right;
  font-size: 10px;
  line-height: 12px;
}

.tags_bar_row {
  margin: 0px -5px 0px -5px;
}

.tags_bar_item {
  float: left;
  width: 50%;
  padding: 5px 5px;
  box-sizing: border-box;
}

.filter_bar .CaptionCont.SelectBox.Selected {
  color: #e18c0b !important;
  background: #eee5ea !important;
}

@media only screen and (min-width: 600px) {
  .sort_bar_item {
    width: 25%;
  }
  .tags_bar_item {
    width: 25%;
  }
}
/* END filter manufacturer */
/* 24. START content sites (AGB, Datenschutz, etc.) */
.content_site {
  padding: 0 0 20px 0;
}

.content_site ul {
  margin-left: 16px;
}

.content_site ol {
  margin-left: 28px;
}

.content_site img {
  max-width: 100% !important;
  height: auto !important;
}

/* END content sites (AGB, Datenschutz, etc.) */
/* 25. START products_table for order_details, account_history_info, checkout_confirmation */
ul.orderlist {
  list-style-type: none;
  margin: 0 0 0 0 !important;
}

ul.orderlist li {
  list-style-type: none;
  line-height: 19px;
}

ul.orderlist li .orderlist_row {
  vertical-align: top;
  padding: 10px 10px;
}

ul.orderlist li .orderlist_header {
  padding: 10px 10px 10px 10px;
  font-size: 10px !important;
  line-height: 18px;
  color: #666666;
  font-weight: 700 !important;
  background: transparent;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}

.highlightbox.checkoutborder ul.orderlist li .orderlist_header {
  border-top: 0px !important;
  padding-top: 0px !important;
  margin-top: -4px;
}

ul.orderlist.account_history li .orderlist_header {
  border-top: 0px !important;
  padding-top: 0px !important;
  margin-top: -4px;
}

ul.orderlist li .orderlist_header span.ol_productsname {
  font-size: 10px !important;
  line-height: 18px;
  font-weight: bold !important;
}

ul.orderlist li .orderlist_header span.ol_singleprice {
  font-weight: bold !important;
}

ul.orderlist li .orderlist_header span.ol_totalprice {
  font-weight: bold !important;
}

ul.orderlist li .orderlist_header span.ol_price_row {
  float: right;
  display: inline-block;
}

.ol_row1 {
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.ol_row2 {
  background: #fff;
  border-bottom: 1px solid #ddd;
}

span.ol_quantity {
  float: left;
  display: inline-block;
  padding-right: 10px;
}

@media only screen and (min-width: 759px) {
  span.ol_quantity {
    padding-right: 0px;
  }
}
span.ol_quantity2 {
  float: left;
  display: inline-block;
  padding-top: 5px;
}

span.ol_image {
  float: left;
  display: none;
  text-align: center;
}

@media only screen and (min-width: 759px) {
  span.ol_image {
    display: inline-block;
  }
}
span.ol_image img {
  max-width: 80px;
  max-height: 80px;
  margin: 0px auto;
  text-align: center;
}

span.ol_productsname {
  float: left;
  display: inline-block;
  font-size: 13px;
  line-height: 19px;
}

span.ol_productsname a {
  font-size: 13px;
  font-weight: normal;
  line-height: 19px;
  padding: 0;
}

span.ol_productsname a:hover {
  text-decoration: none;
}

span.ol_price_row {
  float: right;
  display: inline-block;
  margin-top: 10px;
}

@media only screen and (min-width: 759px) {
  span.ol_price_row {
    margin-top: 0;
  }
}
span.ol_delete {
  float: right;
  text-align: center;
  display: inline-block;
}

span.ol_singleprice {
  float: right;
  text-align: right;
}

span.ol_totalprice {
  float: right;
  text-align: right;
}

.ol_width1 {
  width: 5%;
  min-width: 40px;
}

.ol_width2 {
  width: 12%;
  min-width: 100px;
}

.ol_width3 {
  width: 75%;
}

@media screen and (min-width: 500px) {
  .ol_width3 {
    width: 80%;
  }
}
@media only screen and (min-width: 759px) {
  .ol_width3 {
    width: 40%;
  }
}
.ol_width4 {
  width: 37%;
  min-width: 230px;
  border-top: 1px dotted #eee;
  padding-top: 10px;
}

@media screen and (min-width: 500px) {
  .ol_width4 {
    border-top: none;
    padding-top: 0;
  }
}
.ol_width4_header {
  width: 37%;
  min-width: 230px;
  display: none !important;
}

@media only screen and (min-width: 759px) {
  .ol_width4_header {
    display: inline-block !important;
  }
}
.ol_width5 {
  width: 35%;
}

.ol_width6 {
  width: 35%;
}

.ol_width7 {
  width: 30%;
}

.ol_distance {
  display: block;
  padding-top: 5px;
}

.ol_model {
  font-size: 12px;
  line-height: 18px;
  font-weight: normal;
  margin: 2px 0 0 0;
}

.ol_shipping {
  font-size: 12px;
  line-height: 18px;
  font-weight: normal;
}

.ol_short_desc {
  font-size: 12px;
  line-height: 18px;
}

.ol_tags_row {
  margin: 0 0 10px 0;
}

.ol_tags_item {
  font-size: 12px;
  line-height: 18px;
  font-weight: normal;
  margin: 2px 0 0 0;
}

ul.attributes_list {
  list-style-type: none;
  margin: 5px 0px 5px 0px !important;
}

ul.attributes_list li {
  border: none !important;
  font-size: 12px;
  line-height: 20px;
}

.ord_wishlist {
  display: block;
  padding: 10px 0 0px 0;
  font-size: 11px;
  color: #999;
}

.ord_wishlist a {
  color: #999 !important;
  text-transform: none !important;
  font-size: 11px !important;
  font-weight: bold !important;
}

.ord_wishlist a:hover {
  text-decoration: none;
}

.ord_wishlist .fas {
  padding-right: 4px;
}

.total_table_right {
  padding: 10px 0 0 0;
  float: right;
}

table.total_table {
  font-size: 13px;
  line-height: 19px;
}

table.total_table tr td {
  padding: 2px 5px;
  vertical-align: top;
}

.ord_width_total {
  width: 105px;
}

.ord_subtotal {
  margin: 0px 0 0px 0;
  float: right;
  width: 100%;
  text-align: right;
  line-height: 21px;
  padding: 0px 0px 0px 0px;
}

@media only screen and (min-width: 759px) {
  .ord_subtotal {
    width: 60%;
  }
}
@media only screen and (min-width: 992px) {
  .ord_subtotal {
    width: 48%;
  }
}
.ord_subtotal .shipping_container {
  margin: 4px 0px;
}

.ord_subtotal select {
  max-width: 180px;
  margin-left: 5px;
}

.ord_subtotal .SumoSelect {
  max-width: 180px;
  margin-left: 5px;
  text-align: left;
}

.ord_subtotal .shipping_hinweis {
  font-size: 12px;
  line-height: 16px;
  margin: 0px 0px 4px 0px;
}

.ord_table_right {
  text-align: right;
}

.ord_width100 {
  width: 100px;
}

ul.ord_total_list {
  margin: 0px !important;
  list-style-type: none !important;
}

ul.ord_total_list li {
  padding: 10px 10px;
  line-height: 19px;
}

.otl_row1 {
  border-bottom: 1px solid #ddd;
  background: #fafafa;
}

.otl_row2 {
  background: #f5f5f5;
  padding: 10px 10px 4px 10px !important;
}

.otl_row3 {
  background: #f5f5f5;
  padding: 5px 10px 10px 10px !important;
  color: #999;
}

.otl_row4 {
  border-top: 1px solid #ddd;
  background: #d4edda;
  padding: 15px 10px !important;
}

.otl_row2 .otl_col1 {
  line-height: 35px;
}

.otl_col1 {
  width: 50%;
  float: left;
  text-align: left;
}

.otl_col2 {
  width: 50%;
  float: left;
  text-align: right;
}

.otl_col3 {
  width: 76%;
  float: left;
  text-align: left;
}

.otl_col4 {
  width: 24%;
  float: left;
  text-align: right;
  white-space: nowrap;
}

@media screen and (min-width: 500px) {
  .otl_col3 {
    width: 80%;
  }
  .otl_col4 {
    width: 20%;
  }
}
.express_info_cart {
  display: block;
  text-align: right;
  line-height: 12px;
  font-size: 10px;
  padding: 2px 2px 5px 0;
}

.express_info_cart a {
  color: #555;
}

.express_info_cart a:hover {
  color: #555;
  text-decoration: underline;
}

/* ENDE Warenkorb als Liste */
/* END products_table for order_details, account_history_info, checkout_confirmation */
/* 26. START Product details */
.product_headline {
  margin: 25px 0 15px 0;
  border: #ddd solid;
  border-width: 0 0 0 0;
  padding: 0 0 5px 0;
}

.product_headline h1, .product_headline .h1 {
  margin: 0px 0 0px 0;
  padding: 0 0 0px;
  border-width: 0 0 0 0;
}

.pd_manu_image {
  float: right;
  display: inline-block;
  height: 30px;
  margin: 0px 0 3px 20px;
}

.pd_manu_image img {
  max-height: 30px;
  width: auto;
}

#product_details {
  position: relative;
  padding: 0 0 20px 0;
}

.pd_summarybox_inner {
  background-color: #F2F2F2;
  border: 1px solid #E6E6E6;
  box-sizing: border-box;
  padding: 5px;
}

.pd_big_image {
  position: relative;
  width: 100%;
  margin: 0px 0px 0px 0px;
  border: 1px solid #eee;
  box-sizing: border-box;
  text-align: center;
}

.pd_big_image:before {
  content: "";
  padding-top: 100%;
  display: block;
  overflow: hidden;
}

.pd_big_image img {
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  max-width: 25%;
  max-height: 25%;
  font-size: 0;
  -webkit-transform: scale(4);
  -moz-transform: scale(4);
  -ms-transform: scale(4);
  -o-transform: scale(4);
  transform: scale(4);
}

.pd_fsk18 {
  background: transparent url(img/fsk18.png) no-repeat top center;
  height: 44px;
  position: absolute;
  width: 44px;
  top: 0px;
  left: 0px;
}

.zoomtext {
  line-height: 14px;
  font-size: 10px;
  padding: 10px 0px;
}

.pd_small_image_row {
  margin: 0px -5px 0px -5px;
}

.pd_small_image {
  float: left;
  position: relative;
  width: 33.3333%;
  padding: 0px 5px;
  margin: 0px 0px 10px 0px;
  box-sizing: border-box;
}

.pd_small_image_inner {
  border: 1px solid #eee;
  text-align: center;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.pd_small_image_inner:before {
  content: "";
  display: block;
  padding-top: 100%;
  overflow: hidden;
}

.pd_small_image_inner img {
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  max-width: 20%;
  max-height: 20%;
  -webkit-transform: scale(4.4);
  -moz-transform: scale(4.4);
  -ms-transform: scale(4.4);
  -o-transform: scale(4.4);
  transform: scale(4.4);
}

.pd_small_image_tab_row {
  margin: 0px -5px 0px -5px;
}

.pd_small_image_tab {
  float: left;
  position: relative;
  width: 33.3333%;
  padding: 0px 5px;
  margin: 0px 0px 10px 0px;
  box-sizing: border-box;
}

@media screen and (min-width: 400px) {
  .pd_small_image_tab {
    width: 25%;
  }
}
@media screen and (min-width: 500px) {
  .pd_small_image_tab {
    width: 20%;
  }
}
.pd_small_image_tab_inner {
  border: 1px solid #eee;
  text-align: center;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.pd_small_image_tab_inner:before {
  content: "";
  display: block;
  padding-top: 100%;
  overflow: hidden;
}

.pd_small_image_tab img {
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  max-width: 20%;
  max-height: 20%;
  -webkit-transform: scale(4.8);
  -moz-transform: scale(4.8);
  -ms-transform: scale(4.8);
  -o-transform: scale(4.8);
  transform: scale(4.8);
}

.pd_inforow {
  font-weight: 400;
  padding: 7px 0px 7px 0px;
  font-size: 10px;
  line-height: 14px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.pd_inforow strong {
  font-weight: 600;
}

.pd_inforow.red {
  color: #e74c3c;
}

.pd_inforow_message {
  margin: 10px 0 0 0;
  color: #e74c3c;
  padding: 7px 0px 7px 0px;
  font-size: 10px;
  line-height: 14px;
  text-align: left;
  border-top: 1px solid #eee;
}

.pd_inforow .pd_shipping_image {
  display: inline-block;
  padding: 0 5px 0 0;
}

.pd_price .no_price {
  font-size: 10px;
  line-height: 14px;
  font-weight: normal;
  display: block;
  padding: 4px 0 4px 0;
  color: #999;
}

.pd_price .special_price {
  display: block;
  font-size: 22px;
  line-height: 28px;
  font-weight: normal;
  color: #e74c3c;
}

.pd_price .small_price {
  font-size: 10px;
  font-weight: 500;
  line-height: 10px;
}

.pd_price .item_price {
  padding: 0 0 4px 0;
  display: block;
  font-size: 10px;
  line-height: 12px;
  font-weight: 500;
  color: #666;
}

.pd_price .uvp_price {
  display: block;
  font-size: 22px;
  line-height: 28px;
  color: #434343;
}

.pd_price .graduated_price {
  display: block;
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
  color: #e74c3c;
}

.pd_vpe {
  text-align: right;
  padding: 0 0 4px 0;
  font-size: 10px;
  line-height: 12px;
  font-weight: 500;
  color: #666;
}

.pd_fsk_padding {
  padding-left: 50px;
}

ul.pd_iconlist li.express {
  position: relative;
}

ul.pd_iconlist li.express:before {
  font-family: "Font Awesome 6 Free";
  content: "\f218";
  font-weight: 900;
  font-size: 13px;
  position: absolute;
  top: 6px;
  left: 2px;
  color: #858585;
}

.dateadded {
  font-size: 10px;
}

.dateadded_border {
  margin-top: 20px;
  font-size: 10px;
  border-top: none;
}

.pd_description ul {
  margin: 8px 0px 8px 15px;
}

.pd_description ol {
  margin: 8px 0px 8px 15px;
}

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

.pd_description iframe {
  max-width: 100%;
}

.pd_inforow .pd_rating_icons {
  display: inline-block;
  font-size: 11px;
  line-height: 15px;
  color: #ccc;
  padding: 0px 3px 0 0;
}

.pd_inforow .pd_rating_icons .fas {
  padding: 0 1px 0 0;
}

.pd_inforow .pd_rating_icons .full {
  color: #f1c40f;
}

.pd_tabs {
  background: #ddd;
}

.pd_tabs .resp-tabs-container {
  border-top: 1px solid #ddd;
}

.pd_tabs h2.resp-accordion, .pd_tabs .resp-accordion.h2 {
  display: block;
  background: #eee;
}

.pd_tabs ul.resp-tabs-list {
  display: none;
}

@media only screen and (min-width: 690px) {
  .pd_tabs {
    background: #fff;
  }
  .pd_tabs .resp-tabs-container {
    border-top: none;
  }
  .pd_tabs h2.resp-accordion, .pd_tabs .resp-accordion.h2 {
    display: none;
  }
  .pd_tabs ul.resp-tabs-list {
    display: block;
  }
}
/* END Product details */
/* 27. START graduated prices */
.graduated_prices {
  margin: 15px 0px 0px 0px;
}

.gp_headline {
  font-size: 10px;
  line-height: 12px;
  font-weight: 700;
  padding: 0 0 4px 0;
}

.gp_box {
  float: left;
  width: 33.3333%;
  margin: 0px 0px -1px 0px;
  border: solid #ddd;
  border-width: 1px 0px 1px 1px;
  box-sizing: border-box;
}

.gp_box.vpe {
  width: 50%;
}

.gp_box.last {
  border-right: 1px solid #ddd;
}

.gp_title {
  display: block;
  background: #fafafa;
  font-size: 10px;
  font-weight: 600;
  text-align: left;
  padding: 1px 3px;
  white-space: nowrap;
  border-bottom: 1px solid #ddd;
}

.gp_price {
  display: block;
  background: #fff;
  font-size: 10px;
  font-weight: normal;
  text-align: left;
  padding: 1px 3px;
}

.gp_vpe {
  display: block;
  background: #fff;
  font-size: 10px;
  font-weight: normal;
  text-align: left;
  padding: 1px 3px;
  border-top: 1px solid #ddd;
}

/* END graduated prices */
/* 28. START addtobasket */
.express_info {
  display: block;
  text-align: right;
  line-height: 12px;
  font-size: 10px;
  padding: 4px 2px 0 0;
}

.express_info a {
  color: #555;
}

.express_info a:hover {
  color: #555;
  text-decoration: underline;
}

/* END addtobasket */
/* 29. START product_details reviews */
.reviewrow {
  border-bottom: 1px solid #ddd;
  padding: 10px 0px 4px 0px;
}

.reviewrow_title {
  line-height: 18px;
}

.reviewrow_title .rating_icons {
  display: inline-block;
  font-size: 13px;
  line-height: 15px;
  color: #ccc;
  padding: 0px 3px 0 5px;
}

.reviewrow_title .rating_icons .fas {
  padding: 0 1px 0 0;
}

.reviewrow_title .rating_icons .full {
  color: #f1c40f;
}

/* END product_details reviews */
/* 30. START product_options */
.productoptions {
  margin: 15px 0px 0px 0px;
  width: 100%;
  order: 3;
}

/* multi & dropdown */
.options_row_multi {
  margin: 0 0 10px 0;
}

.options_row_multi .options_name {
  font-size: 10px;
  font-weight: 700;
  line-height: 12px;
  padding: 0 0 4px 0;
}

/* selection & table */
.options_row_selection {
  margin: 0 0 15px 0;
}

.options_row_selection .options_name {
  font-size: 10px;
  font-weight: 700;
  line-height: 12px;
  padding: 0 0 4px 0;
  border-bottom: 1px solid #ddd;
}

.options_row_selection .options_selection label {
  cursor: pointer;
  display: block;
  width: 100%;
}

.options_row_selection .options_selection label input[type=radio] {
  vertical-align: -1px;
}

.options_row_selection .options_selection label .options_selection_price {
  float: right;
  padding-right: 2px;
}

.options_row_selection .options_selection label .label_row1 {
  display: block;
}

.options_row_selection .options_selection label .label_row1 .options_selection_input {
  float: left;
  display: block;
  width: 25px;
  text-align: left;
}

.options_row_selection .options_selection label .label_row1 .options_selection_text {
  float: left;
  display: inline-block;
}

.options_row_selection .options_selection label .label_row2 {
  display: inline-block;
  font-style: italic;
}

/* END product_options */
/* 31. START product_details media */
.mediarow {
  border-bottom: 1px solid #ddd;
  padding: 10px 5px 10px 5px;
}

.media_bg1 {
  background: #fafafa;
}

.media_bg2 {
  background: #ffffff;
}

.mediarow_headline {
  line-height: 32px;
}

.mediarow_title {
  font-weight: bold;
  display: inline-block;
}

.mediarow_button {
  float: right;
  text-align: right;
  display: inline-block;
  height: 32px;
  min-width: 120px;
}

.mediarow_filesize {
  float: right;
  text-align: right;
  display: inline-block;
  padding: 0px 30px 0px 0px;
  font-style: italic;
}

.mediarow_desc {
  padding: 0px;
}

/* END product_details media */
/* 32. START popup content (popup print_product_info, popup print_order.html) */
body.popupcontent {
  min-width: 100%;
  background: #fff none;
  box-sizing: border-box;
  padding: 0 10px 0 0;
}

body.popupcontent h1, body.popupcontent .h1 {
  margin-top: 0px !important;
}

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

body.popupcontent ul {
  margin: 0 0 0 16px;
}

/* 32. END popup content */
/* 33. START print content (popup print_product_info, popup print_order.html) */
body.popupprint {
  min-width: 100%;
  background: #fff none;
}

.printwrap {
  width: 700px;
  margin: 0px auto;
}

.printlogo {
  padding: 10px 0px;
  text-align: center;
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}

/* print order */
.printColumsLeft {
  float: left;
  width: 48%;
}

.printColumsRight {
  float: right;
  width: 48%;
}

/* print info */
.printColumsInfoLeft {
  float: left;
  width: 500px;
  padding: 0px;
}

.printColumsInfoLeft ul {
  margin: 8px 0px 8px 15px;
}

.printColumsInfoLeft ol {
  margin: 8px 0px 8px 15px;
}

.printColumsInfoRight {
  float: right;
  width: 164px;
  text-align: center;
}

.printColumsInfoRight img {
  max-width: 160px;
  height: auto;
  margin: 10px auto 0px auto;
  border: 1px solid #ddd;
  padding: 1px;
}

ul.printinfolist {
  margin-left: 15px;
}

ul.printinfolist li.active {
  font-weight: bold;
}

.moimages {
  float: left;
  width: 126px;
  height: 126px;
  border: 1px solid #ddd;
  padding: 2px;
  margin: 0px 10px 10px 0px;
  position: relative;
}

.moimages:nth-child(5n+1) {
  margin-right: 0px;
}

.moimages img {
  position: absolute;
  margin: auto;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: #FFFFFF;
  max-height: 126px;
  max-width: 126px;
}

/* admin print-order */
.printwrap_admin {
  padding-top: 40px;
  width: 700px;
  margin: 0px auto;
}

p.underline {
  margin: 105px 0px 3px 15px;
  font-size: 10px;
  text-decoration: underline;
}

.printlogo_admin {
  padding: 0px 0px;
  text-align: right;
  margin: 0px 0 20px 0;
}

.printlogo_admin img {
  max-width: 336px;
}

.print_small {
  font-size: 12px;
  line-height: 18px;
}

.print_big {
  font-size: 26px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 30px 0 0 0;
}

.printwrap table.order_table,
.printwrap_admin table.order_table {
  margin-top: 0px;
  font-size: 13px;
  line-height: 19px;
  width: 100%;
}

.printwrap .ord_table_left,
.printwrap_admin .ord_table_left {
  text-align: left;
}

.printwrap .ord_table_right,
.printwrap_admin .ord_table_right {
  text-align: right;
}

.printwrap .ord_width40,
.printwrap_admin .ord_width40 {
  width: 40px;
}

.printwrap .ord_width110,
.printwrap_admin .ord_width110 {
  width: 110px;
}

.printwrap .ord_width120,
.printwrap_admin .ord_width120 {
  width: 120px;
}

.printwrap table.order_table tr.headerrow,
.printwrap_admin table.order_table tr.headerrow {
  font-size: 11px;
  line-height: 19px;
  font-weight: bold;
  background: transparent;
}

.printwrap table.order_table tr.headerrow td,
.printwrap_admin table.order_table tr.headerrow td {
  padding: 5px 5px;
  vertical-align: top;
}

.printwrap table.order_table tr.mainrow td,
.printwrap_admin table.order_table tr.mainrow td {
  border-top: 1px solid #ddd;
  padding: 10px 5px;
  vertical-align: top;
}

.printwrap table.order_table ul.attributes_list,
.printwrap_admin table.order_table ul.attributes_list {
  list-style-type: none;
  margin: 7px 0px 0px 0px !important;
}

.printwrap table.order_table ul.attributes_list li,
.printwrap_admin table.order_table ul.attributes_list li {
  font-size: 12px;
  line-height: 20px;
}

.printwrap .total_table_right,
.printwrap_admin .total_table_right {
  float: right;
}

.printwrap table.total_table,
.printwrap_admin table.total_table {
  font-size: 13px;
  line-height: 19px;
}

.printwrap table.total_table tr td,
.printwrap_admin table.total_table tr td {
  padding: 2px 5px;
  width: 120px;
  white-space: nowrap;
}

/* END print content (popup print_product_info, popup print_order.html) */
/* 34. START reviews */
.reviewsbox {
  background: #fff;
  border: solid #ddd 1px;
  width: 100%;
  height: auto;
  overflow: hidden;
  margin: 0 0 20px 0;
}

@media only screen and (min-width: 759px) {
  .reviewsbox {
    height: 185px;
    width: 49%;
  }
}
.rb_left {
  float: left;
}

.rb_right {
  float: right;
}

.reviewsbox_inner {
  padding: 15px;
}

.rb_headline {
  font-size: 13px;
  color: #555;
  line-height: 17px;
  border-bottom: 1px solid #eee;
  padding: 0 0 5px 0;
  margin: 0px 0px 6px 0px;
}

.rb_headline a {
  text-decoration: none;
}

.rb_headline a:hover {
  text-decoration: none;
}

.rb_autor {
  float: left;
  display: inline-block;
  font-size: 12px;
  height: 18px;
  line-height: 18px;
}

.rb_rating {
  float: right;
  display: block;
  font-size: 12px;
  height: 18px;
  line-height: 18px;
  width: 100%;
  padding: 5px 0 10px 0;
}

@media screen and (min-width: 400px) {
  .rb_rating {
    display: inline-block;
    padding: 0 0 0 0;
    width: auto;
  }
}
.rb_rating img {
  vertical-align: -2px;
}

.rb_rating .rb_rating_icons {
  display: inline-block;
  font-size: 13px;
  line-height: 15px;
  color: #ccc;
  padding: 0px 0px 0 0;
}

.rb_rating .rb_rating_icons .fas {
  padding: 0 1px 0 0;
}

.rb_rating .rb_rating_icons .full {
  color: #f1c40f;
}

.rb_image {
  float: left;
  width: 54px;
  height: 54px;
  overflow: hidden;
  text-align: center;
  position: relative;
  margin: 10px 0 0 0;
}

.rb_image img {
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 1px;
  border: 1px solid #eee;
  max-width: 50px;
  max-height: 50px;
}

@media screen and (min-width: 400px) {
  .rb_image {
    width: 84px;
    height: 84px;
  }
  .rb_image img {
    max-width: 80px;
    max-height: 80px;
  }
}
.rb_rezension {
  float: right;
  width: 70%;
}

.rb_rezension p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 63px;
}

.rb_rezension_small {
  float: right;
  width: calc(100% - 80px);
}

@media screen and (min-width: 400px) {
  .rb_rezension_small {
    width: calc(100% - 120px);
  }
}
/* END reviews */
/* 35. START upcoming_products */
ul.upcoming_list {
  margin: 0px;
}

ul.upcoming_list li {
  list-style-type: none;
  border-bottom: 1px solid #eee;
  padding: 5px 0px;
}

/* END upcoming_products */
/* 36. START coupon box - error message */
.hb_box_text {
  float: left;
  display: inline-block;
  line-height: 30px;
  font-size: 12px;
  height: 32px;
  padding: 0 30px 0 0;
  font-weight: bold;
}

.hb_box_input {
  float: left;
  display: block;
  width: 320px;
  height: 32px;
}

.hb_box_button {
  float: left;
  display: inline-block;
  height: 32px;
  padding: 0 0 0 20px;
}

/* END coupon box - error message */
/* 37. START downloads */
.downloadrow {
  border: 1px solid #ddd;
  background: #fafafa;
  padding: 5px;
  margin-bottom: 10px;
}

.dl_icon {
  float: left;
  width: 61px;
  height: 50px;
}

.dl_icon a {
  display: block;
  width: 61px;
  height: 50px;
}

.dl_icon a:hover {
  text-decoration: none;
}

.dl_content {
  float: left;
  display: inline-block;
  margin: 0 0 0 30px;
  line-height: 21px;
  font-size: 13px;
  padding: 3px 0 0 0;
}

/* END downloads */
/* 38. START offline & admin-login */
#layout_offline {
  max-width: 700px;
  margin: 40px auto;
  padding: 30px;
  border: 1px solid #ddd;
}

#layout_adminlogin {
  position: relative;
  margin: 50px auto;
  padding: 15px;
  background: #fff;
  border: solid #eee 1px;
  -webkit-box-shadow: 0px 0px 15px #3d3d3d;
  -moz-box-shadow: 0px 0px 15px #3d3d3d;
  box-shadow: 0px 0px 15px #3d3d3d;
  width: 400px;
}

#layout_adminlogin a.help_adminlogin {
  position: absolute;
  width: 32px;
  height: 32px;
  outline: none;
  top: 10px;
  right: 10px;
  display: block;
}

#layout_adminlogin .login {
  float: right;
  margin: 10px 0 0 0;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  padding: 2px 20px;
  border-radius: 2px;
  color: #fff;
  border: solid 1px #101010;
  background: #3a3a3a;
  background: -webkit-gradient(linear, left top, left bottom, from(#494949), to(#242424));
  background: -moz-linear-gradient(top, #494949, #242424);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#494949", endColorstr="#242424");
}

#layout_adminlogin .login:hover {
  text-decoration: none;
  background: #3a3a3a;
  background: -webkit-gradient(linear, left top, left bottom, from(#242424), to(#494949));
  background: -moz-linear-gradient(top, #242424, #494949);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#242424", endColorstr="#494949");
}

/* END offline & admin-login */
/* 39. START toggle shopping cart box */
.toggle_cart {
  position: absolute;
  right: 0px;
  top: 43px;
  display: none;
  width: 100%;
  padding: 10px;
  background: #e2e2e2;
  color: #333;
  z-index: 100;
  box-sizing: border-box;
}

.toggle_cart a {
  background: none !important;
  padding-left: 0px !important;
}

#cart_short a:hover {
  color: rgb(255, 187, 0);
}

.giftmessage {
  border: 1px solid #d4edda;
  padding: 5px;
  background-color: #d4edda;
  line-height: 16px;
  color: #155724;
  font-size: 11px;
  line-height: 15px;
}

ul.tc_list {
  list-style-type: none;
  margin: 0px 0px 0px 0px;
}

ul.tc_list li {
  position: relative;
  float: none;
  padding: 0px;
  border: none !important;
  margin: 0px !important;
}

ul.tc_list li a {
  display: block;
  border-top: 1px solid #ccc;
  font-size: 12px !important;
  line-height: 34px !important;
  color: #555;
}

ul.tc_list li .tc_delete {
  position: absolute;
  width: 16px;
  height: 16px;
  right: 3px;
  top: 9px;
}

ul.tc_list li .tc_delete a {
  border: none !important;
  padding: 0px !important;
  line-height: 16px !important;
}

ul.tc_list li .tc_delete a:hover {
  background: transparent !important;
}

ul.tc_list li a:hover {
  color: #333;
  background: #ddd !important;
  text-decoration: none;
}

.toogle_cart_links {
  border-top: 1px solid #ccc !important;
  text-align: right;
  padding: 5px 0 0 0;
}

.toogle_cart_links a {
  display: inline-block !important;
  text-transform: uppercase;
  font-size: 11px !important;
  line-height: 33px !important;
  color: #e18c0b !important;
  padding: 0px 0px 0px 0px !important;
  margin-left: 20px !important;
}

.toogle_cart_links a:hover {
  opacity: 0.8;
  text-decoration: none;
}

.toggle_wishlist {
  position: absolute;
  right: 0px;
  top: 43px;
  display: none;
  width: 100%;
  padding: 10px;
  background: #e2e2e2;
  color: #333;
  z-index: 100;
  box-sizing: border-box;
}

.toggle_wishlist a {
  background: none !important;
  padding-left: 0px !important;
}

@media only screen and (min-width: 600px) {
  .toggle_cart {
    width: 340px;
  }
  .toggle_wishlist {
    width: 340px;
  }
}
/* END toggle shopping cart box */
/* 40. START carousel Bestseller box */
.slider_bestseller {
  margin: 0px -10px 30px -10px;
}

.slider_bestseller .carousel_box {
  padding: 0px 10px;
  box-sizing: border-box;
}

.slider_bestseller .carousel_box_inner {
  border: 1px solid #eee;
  padding: 5px;
  box-sizing: border-box;
}

.slider_bestseller .carousel_box_inner:hover {
  border: 1px solid #ccc;
}

.slider_bestseller .carousel_box .cb_image {
  display: block;
  vertical-align: middle;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0 0 10px 0;
}

.slider_bestseller .carousel_box .cb_image:before {
  content: "";
  display: block;
  padding-top: 78%;
}

.slider_bestseller .carousel_box .cb_image img {
  margin: auto;
  position: absolute;
  font-size: 0px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  max-width: 20%;
  max-height: 20%;
  -webkit-transform: scale(5);
  -moz-transform: scale(5);
  -ms-transform: scale(5);
  -o-transform: scale(5);
  transform: scale(5);
}

.slider_bestseller .carousel_box .cb_title {
  display: block;
  border-top: 1px solid #eee;
  margin: 7px 0 0 0;
  padding: 7px 0 2px 0;
  text-align: center;
  color: #4c4c4c;
  font-weight: 400;
}

.slider_bestseller .carousel_box .cb_title_inner {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 11px;
  line-height: 15px;
  height: 30px;
}

.slider_bestseller .carousel_box a:hover {
  text-decoration: none;
}

.slider_bestseller .slick-prev,
.slider_bestseller .slick-next {
  top: initial;
  bottom: -40px;
}

.slider_bestseller .slick-prev {
  left: 10px;
}

.slider_bestseller .slick-next {
  right: 10px;
}

.slider_bestseller .slick-dots li button:before {
  font-size: 12px;
}

/* END carousel Bestseller box */
/* 41. START Janolaw.de (BASIC Template for AGB Hosting Content) */
.janolaw-absatz {
  font-size: 12px;
  margin: 8px 4px 4px 8px;
}

.janolaw-paragraph {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  margin: 16px 4px 4px 8px;
}

#janolaw-paragraph {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  margin: 16px 4px 4px 8px;
}

.janolaw-text {
  font-size: 12px;
  margin: 8px 4px 4px 8px;
}

.janolaw-adress {
  font-size: 12px;
  margin: 8px 4px 4px 8px;
}

.janolaw-block {
  font-size: 12px;
  margin: 8px 4px 4px 8px;
}

/* END Janolaw.de */
/* 42. START sitemap  */
.sitemap {
  -moz-column-count: 1;
  -moz-column-gap: 0px;
  -moz-column-rule: 1px solid #eee;
  -webkit-column-count: 1;
  -webkit-column-gap: 0px;
  -webkit-column-rule: 1px solid #eee;
  column-count: 1;
  column-gap: 0px;
  column-rule: 1px solid #eee;
}

@media screen and (min-width: 500px) {
  .sitemap {
    -moz-column-count: 2;
    -moz-column-gap: 60px;
    -webkit-column-count: 2;
    -webkit-column-gap: 60px;
    column-count: 2;
    column-gap: 60px;
  }
}
@media only screen and (min-width: 759px) {
  .sitemap {
    -moz-column-count: 3;
    -moz-column-gap: 60px;
    -webkit-column-count: 3;
    -webkit-column-gap: 60px;
    column-count: 3;
    column-gap: 60px;
  }
}
.sitemap > ul.nocolumnbreak {
  overflow: hidden;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  -moz-column-break-inside: avoid;
  column-break-inside: avoid;
  break-inside: avoid;
  break-inside: avoid-column;
  margin-left: 0px;
  margin-bottom: 30px;
  list-style-type: none;
  display: inline-block;
  width: 100%;
}

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

.sitemap > ul > li {
  float: left;
  width: 100%;
}

.sitemap ul {
  list-style-type: none;
  margin-left: 0px;
}

.sitemap ul > li.sitemap_header {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-size: 13px;
  font-weight: 600;
  line-height: 31px;
}

.sitemap ul > li.sitemap_header > a {
  background: #f5f5f5;
  color: #7c2759;
  display: block;
  padding: 0px 5px;
}

.sitemap ul > li.sitemap_header a:hover {
  color: #333 !important;
  text-decoration: none !important;
  background: #f5f5f5 !important;
}

.sitemap ul li li {
  border-top: 1px solid #ddd;
  font-size: 13px;
  font-weight: normal;
  line-height: 31px;
}

.sitemap ul li li > a {
  background: #fff !important;
  color: #333;
  display: block;
  padding: 0px 5px;
}

.sitemap a:hover {
  color: #7c2759 !important;
  text-decoration: none !important;
  background: #f5f5f5 !important;
}

/* END sitemap  */
/* 43. START product_reviews_info */
.pri_imagebox {
  float: left;
  width: 100%;
}

.pri_big_image {
  position: relative;
  width: 180px;
  min-height: 180px;
  margin: 0px auto 0px auto;
  border: 1px solid #eee;
}

.pri_big_image img {
  position: absolute;
  margin: auto;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
  max-width: 180px;
  height: auto;
}

@media only screen and (min-width: 500px) {
  .pri_imagebox {
    width: 180px;
  }
}
@media only screen and (min-width: 759px) {
  .pri_imagebox {
    width: 262px;
  }
  .pri_big_image {
    width: 240px;
    min-height: 240px;
  }
  .pri_big_image img {
    max-width: 240px;
  }
}
.pri_zoomtext {
  line-height: 13px;
  font-size: 9px;
  padding: 10px 0px;
}

.pri_content {
  float: right;
  width: 100%;
}

@media screen and (min-width: 500px) {
  .pri_content {
    width: calc(100% - 220px);
  }
}
@media only screen and (min-width: 759px) {
  .pri_content {
    width: calc(100% - 300px);
  }
}
.pri_rating_text {
  float: left;
  display: inline-block;
  padding-right: 5px;
}

.pri_rating_stars {
  float: left;
  display: inline-block;
}

.pri_rating_stars img {
  float: left;
}

.pri_rating_icons {
  display: inline-block;
  font-size: 13px;
  line-height: 17px;
  color: #ccc;
  padding: 0px 0px 0 0;
}

.pri_rating_icons .fas {
  padding: 0 1px 0 0;
}

.pri_rating_icons .full {
  color: #f1c40f;
}

/* END product_reviews_info */
/* 44. START Last viewed in account */
ul.historylist {
  list-style-type: none !important;
  margin-left: 0px !important;
}

ul.historylist li {
  border-bottom: 1px solid #ddd;
  padding: 15px 0px;
}

ul.historylist li.first {
  padding: 0px 0px 15px 0px;
}

.hl_image {
  float: left;
  width: 50px;
  height: 50px;
  overflow: hidden;
  padding: 2px;
  border: 1px solid #ddd;
  position: relative;
  display: none;
  margin: 0px 20px 0px 0px;
}

@media only screen and (min-width: 400px) {
  .hl_image {
    display: block;
  }
}
.hl_image img {
  max-width: 50px;
  max-height: 50px;
  position: absolute;
  margin: auto;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
}

.hl_text {
  float: left;
  display: block;
  width: 70%;
}

@media only screen and (min-width: 400px) {
  .hl_text {
    width: 49%;
  }
}
.hl_text_entry {
  display: block;
  padding: 0px 0px 8px 0px;
}

.hl_price {
  display: block;
  float: right;
  width: 28%;
  text-align: right;
  font-weight: bold;
}

.hl_price .no_price {
  font-size: 9px;
  line-height: 11px;
  font-weight: normal;
  display: block;
  padding: 0px 0 0 0;
  color: #666;
}

.hl_price .special_price {
  display: block;
  font-size: 13px;
  line-height: 19px;
  color: #e74c3c;
}

.hl_price .small_price {
  font-size: 9px;
  font-weight: normal;
  line-height: 11px;
}

.hl_price .graduated_price {
  display: block;
}

.hl_price .item_price {
  display: block;
  font-size: 11px;
}

.hl_price .value_price {
  white-space: nowrap;
}

/* END Last viewed in account */
/* 45. START account cart and click buttons */
.account_row_payment,
.account_row_shipping {
  padding: 3px 0px;
}

.account_row_payment span,
.account_row_shipping span {
  display: inline-block;
  width: 23px;
  float: left;
}

ul.address_block {
  margin: 15px 0px 0px 0px !important;
  list-style-type: none !important;
}

ul.address_block li {
  border-top: 1px solid #ddd;
  margin-top: 10px;
  padding-top: 10px;
}

ul.address_block li .address_check {
  float: left;
  display: inline-block;
  width: 23px;
}

ul.address_block li .address_head {
  display: inline-block;
  font-weight: bold;
}

ul.address_block li .address {
  display: block;
  padding: 5px 0px 0px 0px;
}

.account_edit_buttons {
  display: block;
  float: right;
  width: 100px;
  margin: 10px 0px 10px 10px;
  text-align: right;
}

.accountbutton_row {
  margin: 5px 0px 5px 0px;
}

.accountbutton_history_row {
  margin: 5px 0px 0px 0px;
}

.accountbutton_historyinfo_row {
  margin: 10px 0px 0px 0px;
}

.account_actions_right {
  float: right;
  display: inline-block;
  text-align: right;
}

.accounthistory_actions {
  text-align: center;
  display: inline-block;
  padding-top: 4px;
}

/* END account cart and click buttons */
/* 46. START miscellaneous */
/* START Subcontent navigation in content */
.subcontent {
  background: #f2f2f2;
  border: 1px solid #ccc;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  float: none;
  margin: 0px 0 20px 0px;
  max-width: 100%;
}

@media only screen and (min-width: 690px) {
  .subcontent {
    float: right;
    margin: 4px 0px 40px 40px;
    max-width: 260px;
  }
}
.subcontent h4 a:hover, .subcontent .h4 a:hover {
  text-decoration: none;
}

.subcontent ul {
  margin: 0px 0px 0px 15px;
  list-style-type: square;
}

.subcontent ul li a {
  display: block;
  padding: 4px 0px;
  border-bottom: 1px solid #ccc;
}

.subcontent ul li a:hover {
  text-decoration: none;
}

/* END Subcontent navigation in content */
/* START tags */
.tags_block {
  margin: 0 0 15px 0;
  border-top: 1px solid #eee;
}

.tags_row {
  font-size: 12px;
  line-height: 20px;
  border-bottom: 1px solid #eee;
}

.tags_bg1 {
  background: #fafafa;
}

.tags_bg2 {
  background: #ffffff;
}

.tags_row .tags_options {
  float: left;
  width: 25%;
  display: block;
  font-weight: bold;
  padding: 5px 10px 5px 0;
  box-sizing: border-box;
}

.tags_row .tags_options img {
  vertical-align: -3px;
  padding-left: 4px;
}

.tags_options_tooltip {
  position: relative;
  z-index: 1;
  display: inline-block;
}

.tags_options_tooltip img {
  vertical-align: -3px;
}

.tags_options_tooltip .tags_options_tooltip_hover {
  position: absolute;
  bottom: 20px;
  left: -95px;
  width: 200px;
  background: #eee;
  border: 1px solid #ddd;
  display: none;
  font-size: 12px;
  line-height: 16px;
  font-weight: normal;
  padding: 10px;
}

.tags_options_tooltip:hover .tags_options_tooltip_hover {
  display: block;
}

.tags_row .tags_values {
  float: left;
  width: 75%;
  display: block;
  box-sizing: border-box;
  font-size: 0px;
}

.tags_values_icon_row {
  font-size: 12px;
  line-height: 20px;
  float: left;
  padding: 5px 0px 0px 0px;
}

.tags_values_icon {
  float: left;
  display: inline-block;
  height: 20px;
  width: auto;
  margin: 0 10px 5px 0;
}

.tags_values_icon img {
  float: left;
  height: 20px;
}

.tags_values_icon a {
  display: block;
}

.tags_values_icon a:hover {
  text-decoration: none;
}

.tags_icons_tooltip {
  position: relative;
  display: block;
}

.tags_icons_tooltip img {
  vertical-align: -3px;
}

.tags_icons_tooltip .tags_icons_tooltip_hover {
  position: absolute;
  bottom: 24px;
  left: -95px;
  width: 200px;
  background: #eee;
  border: 1px solid #ddd;
  display: none;
  font-size: 12px;
  line-height: 16px;
  font-weight: normal;
  padding: 10px;
}

.tags_icons_tooltip:hover .tags_icons_tooltip_hover {
  display: block;
}

.tags_values_text_row {
  font-size: 12px;
  line-height: 20px;
  float: left;
  padding: 5px 0px 5px 0px;
}

.tags_values_name {
  position: relative;
  cursor: default;
  float: left;
  clear: left;
}

.tags_values_name_tooltip {
  border-bottom: 1px dashed #999;
}

.tags_values_desc_hover {
  position: absolute;
  bottom: 20px;
  left: -95px;
  width: 200px;
  background: #eee;
  border: 1px solid #ddd;
  display: none;
  font-size: 12px;
  line-height: 16px;
  font-weight: normal;
  padding: 10px;
}

.tags_values_name:hover .tags_values_desc_hover {
  display: block;
}

.tags_values_info {
  position: relative;
}

.tags_values_info img {
  vertical-align: -3px;
  padding-left: 4px;
}

.tags_values_diff {
  font-size: 12px;
  line-height: 20px;
  padding-left: 1px;
  padding-right: 4px;
}

/* END tags */
/* START Bannermanager */
.content_slider {
  margin: 20px 0 20px 0;
}

.content_slider .slick-dotted {
  margin-bottom: 20px;
}

.slider_home {
  display: none;
}

.slider_item {
  vertical-align: top;
}

.content_slider img {
  float: left;
  width: 100%;
  height: auto;
  vertical-align: top;
}

.content_slider .slick-prev:before,
.content_slider .slick-next:before {
  font-size: 20px;
}

.content_slider .slick-prev,
.content_slider .slick-next {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.4);
}

.content_slider .slick-prev:hover,
.content_slider .slick-prev:focus,
.content_slider .slick-next:hover,
.content_slider .slick-next:focus {
  background: rgba(255, 255, 255, 0.8);
}

.content_banner {
  margin: 20px 0 20px 0;
}

.content_banner img {
  float: left;
  width: 100%;
  height: auto;
}

/* END Bannermanager */
/* START autocomplete */
.suggestionsBox {
  position: absolute;
  right: 0;
  margin: 0px;
  width: 100%;
  background: #e2e2e2;
  color: #333;
  z-index: 1100;
  box-sizing: border-box;
  padding: 10px 10px 3px 10px;
}

.suggestionList {
  margin: 0px;
  padding: 0px;
  max-height: 600px;
  overflow: auto;
  padding-right: 5px;
  box-sizing: border-box;
}

.suggestionList li {
  border-bottom: 1px solid #ccc;
  list-style: none;
  font-size: 12px;
  line-height: 16px;
}

.suggestionList li:hover {
  background: #ddd !important;
  text-decoration: none;
}

.suggestionList li a.autocomplete {
  display: block;
  padding: 5px 0px;
  text-decoration: none;
  box-sizing: border-box;
  width: 100%;
}

.suggestionList li a.autocomplete .autocomplete_image {
  float: left;
  display: none;
  width: 40px;
  height: 40px;
  overflow: hidden;
  box-sizing: border-box;
  border: 1px solid #ddd;
  margin-right: 10px;
}

.suggestionList li a.autocomplete .autocomplete_image img {
  float: left;
  width: 100%;
  height: auto;
}

.autocompletecloser {
  cursor: pointer;
}

#autocomplete_pagination {
  margin: 5px 0 0 0;
  position: relative;
}

#autocomplete_pagination li {
  float: left;
  border: 0;
}

#autocomplete_prev {
  cursor: pointer;
  padding: 5px;
  box-sizing: border-box;
  width: 15%;
  text-align: left;
  font-size: 15px;
}

#autocomplete_next {
  cursor: pointer;
  padding: 5px;
  box-sizing: border-box;
  width: 15%;
  float: right !important;
  text-align: right;
  font-size: 15px;
}

#autocomplete_count {
  padding: 5px;
  width: 70%;
  box-sizing: border-box;
  text-align: center;
  font-size: 11px;
  font-weight: bold;
}

.autocomplete_error {
  padding: 6px 0px 11px;
  display: inline-block;
  text-align: center;
  width: 100%;
}

.ac_text {
  float: left;
  display: block;
  width: 60%;
  padding: 2px 0px;
  color: #555;
  font-weight: 400;
}

.suggestionList li:hover .ac_text {
  color: #7c2759;
}

.ac_price {
  display: block;
  color: #555;
  float: right;
  width: 40%;
  text-align: right;
  font-weight: bold;
  padding: 2px 0px;
  font-size: 12px;
  line-height: 16px;
}

.ac_price .small_price {
  font-size: 10px;
  font-weight: normal;
}

.ac_price .special_price {
  color: #e74c3c;
}

.ac_price .graduated_price {
  display: block;
}

.ac_price .item_price {
  display: block;
}

.ac_vpe {
  text-align: right;
  padding: 0px 0px 0 0;
  font-size: 9px;
  line-height: 12px;
  color: #666;
  font-weight: normal;
  display: block;
}

@media only screen and (min-width: 400px) {
  .suggestionList li a.autocomplete .autocomplete_image {
    display: block;
  }
  .ac_text {
    width: 50%;
  }
  .ac_price {
    width: 30%;
  }
}
@media only screen and (min-width: 600px) {
  .suggestionsBox {
    width: 400px;
  }
}
/* END autocomplete */
.external_links a:after {
  font-family: "Font Awesome 6 Free";
  content: "\f35d";
  font-weight: 900;
  font-size: 9px;
  line-height: 9px;
  margin: 0 0 0 5px;
  vertical-align: 2px;
}

/* END miscellaneous */
/* 48. START CSS Write reviews */
.show_rating {
  unicode-bidi: bidi-override;
  direction: rtl;
  display: inline-block;
  padding: 0px 15px;
  position: relative;
  bottom: -1px;
}

.show_rating input {
  position: absolute;
  left: -999999px;
}

.show_rating label {
  display: inline-block;
  font-size: 0;
  padding: 0px 1px;
}

.show_rating > label:before {
  font-family: "Font Awesome 6 Free";
  font-size: 20px;
  line-height: 20px;
  position: relative;
  display: block;
  content: "\f005";
  font-weight: 900;
  color: #ccc;
  background: #ccc;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.show_rating > label:hover:before,
.show_rating > label:hover ~ label:before,
.show_rating > label.selected:before,
.show_rating > label.selected ~ label:before {
  color: #f1c40f;
  background: #f1c40f;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* END CSS Write reviews */
/* 49. START Custom checkbox & radio */
/* globals & helper */
.cus_my_5 {
  margin: 5px 0px;
}

.cus_mb_10 {
  margin-bottom: 10px;
}

.cus_label {
  padding-left: 26px;
}

ol#address_block {
  margin: 15px 0px 0px 0px;
  list-style: none;
}

.cus_radio label .address {
  display: block !important;
  padding: 5px 0px 0px 0px !important;
  font-weight: 400 !important;
}

/* custom checkbox */
.cus_check {
  font-size: 13px;
  line-height: 19px;
}

.cus_check.cus_check_small {
  font-size: 12px;
  line-height: 18px;
}

.cus_check input[type=checkbox] {
  position: absolute !important;
  visibility: hidden;
  opacity: 0;
}

.cus_check input[type=checkbox] ~ label {
  padding-left: 26px;
  position: relative;
  cursor: pointer;
  display: block;
  box-sizing: border-box;
  margin: 0 0 0px 0;
}

.cus_check input[type=checkbox] ~ label:before {
  font-family: "Font Awesome 6 Free";
  content: "\f0c8";
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  position: absolute;
  top: 2px;
  left: 1px;
  color: #ccc;
  transition: background 0.15s;
}

.cus_check.cus_check_small input[type=checkbox] ~ label:before {
  top: 2px;
}

.cus_check input[type=checkbox]:disabled ~ label {
  color: #ccc;
}

.cus_check input[type=checkbox]:disabled ~ label,
.cus_check input[type=checkbox]:disabled ~ label:before,
.cus_check input[type=checkbox]:disabled ~ label:after {
  cursor: not-allowed;
}

.cus_check input[type=checkbox]:disabled,
.cus_check input[type=checkbox]:disabled ~ label:before,
.cus_check input[type=checkbox]:disabled:checked ~ label:before {
  opacity: 0.5;
}

.cus_check input[type=checkbox] ~ label:after {
  font-family: "Font Awesome 6 Free";
  content: "\f14a";
  font-weight: 900;
  font-size: 14px;
  line-height: 14px;
  position: absolute;
  top: 2px;
  left: 1px;
  color: #555;
  transition: transform 0.15s;
  transform: scale(0) rotate(90deg);
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cus_check.cus_check_small input[type=checkbox] ~ label:after {
  top: 2px;
}

.cus_check input[type=checkbox]:checked ~ label:after {
  transform: scale(1) rotate(0deg);
}

/* custom radios */
.cus_radio {
  font-size: 13px;
  line-height: 19px;
}

.cus_radio.cus_radio_small {
  font-size: 12px;
  line-height: 18px;
}

.cus_radio > label {
  padding-left: 26px;
}

.cus_radio input[type=radio] {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}

.cus_radio input[type=radio] ~ label {
  padding-left: 26px;
  position: relative;
  cursor: pointer;
  display: block;
  box-sizing: border-box;
  margin: 0 0 0px 0;
}

.cus_radio input[type=radio] ~ label:before {
  font-family: "Font Awesome 6 Free";
  content: "\f111";
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  position: absolute;
  top: 2px;
  left: 0;
  color: #ccc;
  transition: background 0.15s;
}

.cus_radio.cus_radio_small input[type=radio] ~ label:before {
  top: 2px;
}

.cus_radio input[type=radio]:disabled ~ label {
  color: #ccc;
}

.cus_radio input[type=radio]:disabled ~ label,
.cus_radio input[type=radio]:disabled ~ label:before,
.cus_radio input[type=radio]:disabled ~ label:after {
  cursor: not-allowed;
}

.cus_radio input[type=radio]:disabled,
.cus_radio input[type=radio]:disabled ~ label:before,
.cus_radio input[type=radio]:disabled:checked ~ label:before {
  opacity: 0.5;
}

.cus_radio input[type=radio] ~ label:after {
  font-family: "Font Awesome 6 Free";
  content: "\f192";
  font-weight: 900;
  font-size: 14px;
  line-height: 14px;
  position: absolute;
  top: 2px;
  left: 0;
  color: #555;
  transition: transform 0.15s;
  transform: scale(0) rotate(90deg);
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cus_radio.cus_radio_small input[type=radio] ~ label:after {
  top: 2px;
}

.cus_radio input[type=radio]:checked ~ label:after {
  transform: scale(1) rotate(0deg);
}

/* END Custom checkbox & radio */
/* 50. START New address book handling */
#address_block_new {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style-type: none;
  margin: 15px -10px 0 -10px;
  padding: 0px;
}

#address_block_new > li {
  order: 2;
  float: left;
  width: 100%;
  box-sizing: border-box;
  padding: 0px 10px;
  margin: 0px;
}

@media only screen and (min-width: 759px) {
  #address_block_new > li {
    width: 50%;
  }
}
#address_block_new > li.selected {
  order: 1;
}

#address_block_new > li.selected .address_inner {
  background: #eee;
  padding: 15px 10px;
}

#address_block_new > li .address_inner {
  border-top: 1px solid #ddd;
  padding: 15px 10px;
  box-sizing: border-box;
  height: 100%;
}

ol#address_block_new li label {
  font-weight: 700;
}

ol#address_block_new li label .address {
  display: block !important;
  padding: 5px 0px 0px 0px !important;
  font-weight: 400 !important;
}

#address_block_new form {
  position: relative;
  padding: 0px 120px 0px 0px;
}

#address_block_new .address_actions {
  overflow: hidden;
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100px;
  text-align: right;
}

#address_block_new .address_inner_block {
  position: relative;
  padding: 0px 120px 0px 0px;
}

/* END New address book handling */
/* START reviews_note */
.box_reviews_note {
  font-size: 9px;
  line-height: 13px;
  font-weight: 400;
  margin: 0 0 10px 0;
}

.headline_reviews_note {
  float: none;
  display: block;
  font-size: 10px;
  line-height: 12px;
  margin: 12px 0 0 0;
  font-weight: 400;
}

@media only screen and (min-width: 850px) {
  .headline_reviews_note {
    float: right;
    display: inline-block;
  }
}
.reviews_note_full {
  display: block;
  font-size: 10px;
  line-height: 12px;
  margin: -10px 0 20px 0;
  font-weight: 400;
}

.reviews_note_detail {
  display: block;
  font-size: 10px;
  line-height: 12px;
  margin: 0px 0 10px 0;
  font-weight: 400;
}

/* END reviews_note */
/* 47. START CSS Buttons */
/* Globals for CSS Buttons */
.cssButton {
  position: relative;
  font-family: "Poppins", sans-serif;
  display: block;
  width: 100%;
  text-align: center;
  padding: 8px 5px;
  font-size: 11px;
  line-height: 17px;
  font-weight: 700;
  text-transform: uppercase;
  box-sizing: border-box;
  white-space: nowrap;
  text-decoration: none;
  min-height: 35px;
}

.cssButton button {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  color: transparent;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
}

.cssButton .fas,
.cssButton .far {
  padding-left: 3px;
  padding-right: 3px;
}

.cssButton .cssButtonText {
  display: inline-block;
  padding-left: 3px;
  padding-right: 3px;
  text-decoration: none;
}

/* Colors for CSS Buttons */
/* Black Buttons */
.cssButtonColor1 {
  border-radius: 2px;
  border: 1px solid #333;
  text-decoration: none;
  background-color: #333;
  color: #ffffff;
  display: inline-block;
}

.cssButtonColor1:hover {
  opacity: 0.8;
  text-decoration: none !important;
}

/* Magenta Buttons */
.cssButtonColor2 {
  border-radius: 2px;
  border: 1px solid #e18c0b;
  text-decoration: none;
  background-color: #e18c0b;
  color: #ffffff;
  display: inline-block;
}

.cssButtonColor2:hover {
  opacity: 0.8;
  text-decoration: none !important;
}

/* Transparent Buttons with Border */
.cssButtonColor3 {
  background: #fafafa;
  border: 1px solid #c6c6c6;
  color: #555;
}

.cssButtonColor3:hover {
  background: #fafafa;
  color: #222;
  text-decoration: none !important;
}

/* Green Buttons */
.cssButtonColor4 {
  border-radius: 2px;
  border: 1px solid #528a50;
  text-decoration: none;
  background-color: #528a50;
  color: #ffffff;
  display: inline-block;
}

.cssButtonColor4:hover {
  opacity: 0.8;
  text-decoration: none !important;
}

/* Transparent Icons no Border */
.cssButtonColor5 {
  background: transparent;
  color: #555;
}

.cssButtonColor5:hover {
  color: #222;
  text-decoration: none !important;
}

/* Yellow Paypal Express Buttons */
.cssButtonColor6 {
  border-radius: 2px;
  border: 1px solid #d19c20;
  text-decoration: none;
  background: -moz-linear-gradient(center top, #ffc848 15%, #fbba22 90%);
  background: -ms-linear-gradient(top, #ffc848 15%, #fbba22 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffc848", endColorstr="#fbba22");
  background: -webkit-gradient(linear, left top, left bottom, color-stop(15%, #ffc848), color-stop(90%, #fbba22));
  background-color: #ffc848;
  color: #222;
  display: inline-block;
  text-shadow: 1px 1px 0px #ffd97e;
  -webkit-box-shadow: inset 1px 1px 0px 0px #ffe3a1;
  -moz-box-shadow: inset 1px 1px 0px 0px #ffe3a1;
  box-shadow: inset 1px 1px 0px 0px #ffe3a1;
  height: 32px;
}

.cssButtonColor6:hover {
  background: -moz-linear-gradient(center top, #fbba22 15%, #ffc848 90%);
  background: -ms-linear-gradient(top, #fbba22 15%, #ffc848 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fbba22", endColorstr="#ffc848");
  background: -webkit-gradient(linear, left top, left bottom, color-stop(15%, #fbba22), color-stop(90%, #ffc848));
  background-color: #fbba22;
  color: #222;
  text-decoration: none !important;
}

.cssButtonColor6 .color-paypal0 {
  font-size: 10px;
  line-height: 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: #013088;
  padding: 0 5px 0 0;
  vertical-align: middle;
}

.cssButtonColor6 .color-paypal1 {
  font-size: 18px;
  line-height: 16px;
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-weight: 700;
  color: #013088;
}

.cssButtonColor6 .color-paypal2 {
  font-size: 18px;
  line-height: 16px;
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-weight: 700;
  color: #019CDE;
}

/* Positions for CSS Buttons */
/* Box add_a_quickie & newsletter */
.cssButtonPos1 {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 50px;
}

.cssButtonPos1 .fas {
  font-size: 16px;
  vertical-align: bottom;
}

.cssButtonPos1 .cssButton {
  height: 32px;
}

/* Box search */
.cssButtonPos2 {
  width: 80px;
  height: 35px;
}

/* Box login */
.cssButtonPos3 {
  float: right;
  width: 100px;
}

/* Single Button 130 */
.cssButtonPos4 {
  min-width: 130px;
}

/* Edit Buttons adress_book */
.cssButtonPos5 {
  display: inline-block;
  margin: 0 0 0 10px;
  width: 35px;
}

.cssButtonPos5 .fas,
.cssButtonPos5 .far {
  font-size: 16px;
  vertical-align: middle;
}

/* Small Cart Buttons account, account_history, account_history_info */
.cssButtonPos6 {
  float: left;
  width: 44px;
  display: block;
  margin: 0 0 5px 5px;
}

.cssButtonPos6 .fas,
.cssButtonPos6 .far {
  font-size: 16px;
  vertical-align: bottom;
}

/* More than one Button in one line account_history_info & shopping_cart */
.cssButtonPos7 {
  float: left;
  margin: 0px 5px 5px 0px;
  min-width: 130px;
}

.cssButtonPos8 {
  float: right;
  margin: 0px 0px 5px 5px;
  min-width: 165px;
}

.cssButtonPos9 {
  float: left;
  margin: 0px 5px 5px 0px;
  min-width: 150px;
}

/* Delete Button in flyout wishlist & shopping cart */
ul.tc_list li .tc_delete {
  height: 26px;
  right: 0px;
  top: 6px;
  width: 26px;
}

ul.tc_list li .tc_delete .cssButton {
  width: 100%;
  text-align: center;
  padding: 4px 0px;
  line-height: 19px;
}

ul.tc_list li .tc_delete .cssButton .fas {
  font-size: 15px;
  line-height: 19px;
  padding-right: 0;
}

/* Add to basket Button product_info */
.cssButtonPos10 {
  display: block;
  width: 100%;
  margin: 0 0 5px 0;
}

/* Small Buttons wishlist */
.cssButtonPos11 {
  width: 50px;
  display: inline-block;
  margin: 0 2px 0 2px;
}

.cssButtonPos11 .fas {
  font-size: 16px;
  vertical-align: -2px;
}

/* Big Buttons checkout */
.cssButtonPos12 {
  min-width: 200px;
  display: inline-block;
  width: 100%;
}

@media only screen and (min-width: 500px) {
  .cssButtonPos12 {
    width: auto;
  }
}
.cssButtonPos12 .cssButton {
  font-size: 16px;
  line-height: 20px;
  padding: 10px 5px;
  min-width: 220px;
}

/* Small Cart Buttons delete */
.cssButtonPos13 {
  display: block;
  margin: 0 0 0px 0px;
}

.cssButtonPos13 .cssButton {
  padding: 5px 5px;
}

.cssButtonPos13 .fas {
  font-size: 15px;
  vertical-align: bottom;
}

/* Checkout Buttons Shipping & Payment */
.cssButtonPos14,
.cssButtonPos15 {
  max-width: initial;
  display: inline-block;
  width: 100%;
}

@media only screen and (min-width: 500px) {
  .cssButtonPos14 {
    max-width: 220px;
  }
  .cssButtonPos15 {
    max-width: 220px;
  }
}
.cssButtonPos14 .cssButton,
.cssButtonPos15 .cssButton {
  font-size: 16px;
  line-height: 20px;
  padding: 10px 5px;
}

/* END CSS Buttons */
.tooltip.discount-scale .tooltip-inner {
  max-width: none;
  text-align: left;
}

div.discount-scale {
  text-align: left;
}
div.discount-scale ul {
  list-style-type: none;
  margin-left: var(--fa-li-margin, 2.5em);
  padding-left: 0;
  margin-bottom: 0;
}
div.discount-scale ul li {
  position: relative;
}
div.discount-scale ul li.check::before {
  content: "\f00c";
  color: lightgreen;
}
div.discount-scale ul li.xmark::before {
  content: "\f00d";
  color: red;
}

#layout_navbar ul,
#content_navbar ul {
  padding: 0;
  margin: 0;
}

@media only screen and (min-width: 600px) {
  ul.contentnavigation li.wishlist .wish_01 .fas {
    font-size: 14px;
    padding-right: 7px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .content_navbar .contact, .content_navbar .imprint {
    font-size: 0;
  }
}
@media (max-width: 410px) {
  .content_navbar .cart, .content_navbar .wishlist, .content_navbar .checkout {
    font-size: 0;
  }
}
.content_navbar {
  background-color: #f5f5f5;
}
.content_navbar > ul {
  list-style-type: none;
  padding: 0;
}
.content_navbar > ul > li > a {
  padding: 0.5rem 0.6rem;
  display: block;
  color: #666;
  position: relative;
}
.content_navbar > ul > li > a:hover {
  color: #e18c0b;
  text-decoration: none;
}
.content_navbar .sidebar_btn a::before {
  content: "\f0c9";
}
.content_navbar .contact a::before {
  content: "\f0e0";
}
.content_navbar .imprint a::before {
  content: "\f05a";
}
.content_navbar .checkout a::before {
  content: "\f09d";
}
.content_navbar .cart > a {
  background-color: #4d4d4d;
  color: #fff;
}
.content_navbar .cart > a::before {
  content: "\f07a";
}
.content_navbar .wishlist > a::before {
  content: "\f005";
}
.content_navbar .wishlist a .count, .content_navbar .cart a .count {
  margin-left: 3px;
  color: #444;
}
#breadcrumb {
  padding: 15px 0 15px 0px;
  font-size: 10px;
  line-height: 16px;
}
#breadcrumb a, #breadcrumb a:link, #breadcrumb a:visited, #breadcrumb a:active {
  line-height: 16px;
  font-weight: 400;
  cursor: pointer;
  color: #555;
  margin: 0;
  padding: 0;
}
#breadcrumb a:hover {
  text-decoration: none;
  color: #222;
}
#breadcrumb span.current {
  font-weight: 600;
}
#breadcrumb #breadcrumb .fas {
  color: #999;
  padding: 0px 10px;
}

.listingcontainer, .listingcontainer_full, .listingcontainer_details {
  margin: 0px -5px 0px -5px;
}

.pd_tabs .listingcontainer_details {
  margin: 0px -6px 0px -6px;
}

.pd_tabs .listingbox {
  margin: 0px 0px 12px 0px;
  padding: 0px 6px;
}

.pd_tabs .listingrow {
  margin: 0px 6px 0px 6px;
}

.pd_accordion .listingcontainer_details {
  margin: 0px -6px 0px -6px;
}

.pd_accordion .listingbox {
  margin: 0px 0px 12px 0px;
  padding: 0px 6px;
}

.pd_accordion .listingrow {
  margin: 0px 6px 0px 6px;
}

.cross_selling a:link, .cross_selling a:hover, .cross_selling a:visited, .listingcontainer a:link, .listingcontainer a:hover, .listingcontainer a:visited, .listingcontainer_full a:link, .listingcontainer_full a:hover, .listingcontainer_full a:visited, .listingcontainer_details a:link, .listingcontainer_details a:hover, .listingcontainer_details a:visited {
  color: #4c4c4c;
}
.cross_selling .item, .listingcontainer .item, .listingcontainer_full .item, .listingcontainer_details .item {
  padding: 0.7rem 0;
}
.cross_selling .item + .row, .cross_selling .item + .total, .cross_selling .wvd.orderlist .item + .orderlist_header, .wvd.orderlist .cross_selling .item + .orderlist_header, .cross_selling .wvd.orderlist .item + .orderlist_row, .wvd.orderlist .cross_selling .item + .orderlist_row, .cross_selling .item + .subcats, .cross_selling .item + .cat_description, .cross_selling .item + .item, .listingcontainer .item + .row, .listingcontainer .item + .total, .listingcontainer .wvd.orderlist .item + .orderlist_header, .wvd.orderlist .listingcontainer .item + .orderlist_header, .listingcontainer .wvd.orderlist .item + .orderlist_row, .wvd.orderlist .listingcontainer .item + .orderlist_row, .listingcontainer .item + .subcats, .listingcontainer .item + .cat_description, .listingcontainer .item + .item, .listingcontainer_full .item + .row, .listingcontainer_full .item + .total, .listingcontainer_full .wvd.orderlist .item + .orderlist_header, .wvd.orderlist .listingcontainer_full .item + .orderlist_header, .listingcontainer_full .wvd.orderlist .item + .orderlist_row, .wvd.orderlist .listingcontainer_full .item + .orderlist_row, .listingcontainer_full .item + .subcats, .listingcontainer_full .item + .cat_description, .listingcontainer_full .item + .item, .listingcontainer_details .item + .row, .listingcontainer_details .item + .total, .listingcontainer_details .wvd.orderlist .item + .orderlist_header, .wvd.orderlist .listingcontainer_details .item + .orderlist_header, .listingcontainer_details .wvd.orderlist .item + .orderlist_row, .wvd.orderlist .listingcontainer_details .item + .orderlist_row, .listingcontainer_details .item + .subcats, .listingcontainer_details .item + .cat_description, .listingcontainer_details .item + .item {
  border-top: 1px solid #eee;
}
.cross_selling .item .txt h4, .cross_selling .item .txt .h4, .listingcontainer .item .txt h4, .listingcontainer .item .txt .h4, .listingcontainer_full .item .txt h4, .listingcontainer_full .item .txt .h4, .listingcontainer_details .item .txt h4, .listingcontainer_details .item .txt .h4 {
  margin: 0;
  padding-bottom: 0.5rem;
}
.cross_selling .item .txt .shipping, .listingcontainer .item .txt .shipping, .listingcontainer_full .item .txt .shipping, .listingcontainer_details .item .txt .shipping {
  border-top: 1px solid #eee;
}
.cross_selling .item > .buy .action, .listingcontainer .item > .buy .action, .listingcontainer_full .item > .buy .action, .listingcontainer_details .item > .buy .action {
  padding-top: 0.5rem;
}
.cross_selling .item > .buy .action input[type=number], .listingcontainer .item > .buy .action input[type=number], .listingcontainer_full .item > .buy .action input[type=number], .listingcontainer_details .item > .buy .action input[type=number] {
  width: 50px;
  text-align: center;
}
.cross_selling .b_price, .cross_selling .lb_price, .listingcontainer .b_price, .listingcontainer .lb_price, .listingcontainer_full .b_price, .listingcontainer_full .lb_price, .listingcontainer_details .b_price, .listingcontainer_details .lb_price {
  position: relative;
  text-align: right;
  padding: 10px 0 0 0;
  font-size: 16px;
  color: #434343;
  font-weight: 700;
}
.cross_selling .b_price .no_price, .cross_selling .lb_price .no_price, .listingcontainer .b_price .no_price, .listingcontainer .lb_price .no_price, .listingcontainer_full .b_price .no_price, .listingcontainer_full .lb_price .no_price, .listingcontainer_details .b_price .no_price, .listingcontainer_details .lb_price .no_price {
  font-size: 9px;
  line-height: 12px;
  font-weight: normal;
  display: block;
  padding: 0 0 0 5px;
  color: #999;
}
.cross_selling .b_price .new_price, .cross_selling .lb_price .new_price, .listingcontainer .b_price .new_price, .listingcontainer .lb_price .new_price, .listingcontainer_full .b_price .new_price, .listingcontainer_full .lb_price .new_price, .listingcontainer_details .b_price .new_price, .listingcontainer_details .lb_price .new_price {
  display: block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: #f54733;
}
.cross_selling .b_price .special_price, .cross_selling .lb_price .special_price, .listingcontainer .b_price .special_price, .listingcontainer .lb_price .special_price, .listingcontainer_full .b_price .special_price, .listingcontainer_full .lb_price .special_price, .listingcontainer_details .b_price .special_price, .listingcontainer_details .lb_price .special_price {
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  color: #f74a37;
}
.cross_selling .b_price .special_price .small_price, .cross_selling .lb_price .special_price .small_price, .listingcontainer .b_price .special_price .small_price, .listingcontainer .lb_price .special_price .small_price, .listingcontainer_full .b_price .special_price .small_price, .listingcontainer_full .lb_price .special_price .small_price, .listingcontainer_details .b_price .special_price .small_price, .listingcontainer_details .lb_price .special_price .small_price {
  position: absolute;
  top: 5px;
  right: 0px;
  font-size: 8px;
  font-weight: 500;
  line-height: 10px;
}
.cross_selling .b_price .small_price, .cross_selling .lb_price .small_price, .listingcontainer .b_price .small_price, .listingcontainer .lb_price .small_price, .listingcontainer_full .b_price .small_price, .listingcontainer_full .lb_price .small_price, .listingcontainer_details .b_price .small_price, .listingcontainer_details .lb_price .small_price {
  font-size: 10px;
  font-weight: 500;
  line-height: 10px;
}
.cross_selling .b_price .old_price, .cross_selling .lb_price .old_price, .listingcontainer .b_price .old_price, .listingcontainer .lb_price .old_price, .listingcontainer_full .b_price .old_price, .listingcontainer_full .lb_price .old_price, .listingcontainer_details .b_price .old_price, .listingcontainer_details .lb_price .old_price {
  display: block;
  font-size: 12px;
  line-height: 18px;
  font-weight: normal;
  color: #666;
}
.cross_selling .b_price .save_price, .cross_selling .lb_price .save_price, .listingcontainer .b_price .save_price, .listingcontainer .lb_price .save_price, .listingcontainer_full .b_price .save_price, .listingcontainer_full .lb_price .save_price, .listingcontainer_details .b_price .save_price, .listingcontainer_details .lb_price .save_price {
  font-size: 9px;
  font-weight: normal;
  line-height: 15px;
}
.cross_selling .b_price .item_price, .cross_selling .lb_price .item_price, .listingcontainer .b_price .item_price, .listingcontainer .lb_price .item_price, .listingcontainer_full .b_price .item_price, .listingcontainer_full .lb_price .item_price, .listingcontainer_details .b_price .item_price, .listingcontainer_details .lb_price .item_price {
  position: absolute;
  bottom: 5px;
  left: 0px;
  font-weight: 400;
  font-size: 9px !important;
  line-height: 11px;
  display: block;
  font-weight: 400 !important;
  color: #666;
}
.cross_selling .b_price .item_price .small_price, .cross_selling .lb_price .item_price .small_price, .listingcontainer .b_price .item_price .small_price, .listingcontainer .lb_price .item_price .small_price, .listingcontainer_full .b_price .item_price .small_price, .listingcontainer_full .lb_price .item_price .small_price, .listingcontainer_details .b_price .item_price .small_price, .listingcontainer_details .lb_price .item_price .small_price {
  font-size: 9px !important;
  line-height: 11px;
}
.cross_selling .b_price .item_price.with_vpe, .cross_selling .lb_price .item_price.with_vpe, .listingcontainer .b_price .item_price.with_vpe, .listingcontainer .lb_price .item_price.with_vpe, .listingcontainer_full .b_price .item_price.with_vpe, .listingcontainer_full .lb_price .item_price.with_vpe, .listingcontainer_details .b_price .item_price.with_vpe, .listingcontainer_details .lb_price .item_price.with_vpe {
  bottom: 15px !important;
}
.cross_selling .b_price .uvp_price, .cross_selling .lb_price .uvp_price, .listingcontainer .b_price .uvp_price, .listingcontainer .lb_price .uvp_price, .listingcontainer_full .b_price .uvp_price, .listingcontainer_full .lb_price .uvp_price, .listingcontainer_details .b_price .uvp_price, .listingcontainer_details .lb_price .uvp_price {
  display: block;
}
.cross_selling .b_price .graduated_price, .cross_selling .lb_price .graduated_price, .listingcontainer .b_price .graduated_price, .listingcontainer .lb_price .graduated_price, .listingcontainer_full .b_price .graduated_price, .listingcontainer_full .lb_price .graduated_price, .listingcontainer_details .b_price .graduated_price, .listingcontainer_details .lb_price .graduated_price {
  display: block;
}
.cross_selling .tax, .cross_selling .lb_tax, .listingcontainer .tax, .listingcontainer .lb_tax, .listingcontainer_full .tax, .listingcontainer_full .lb_tax, .listingcontainer_details .tax, .listingcontainer_details .lb_tax {
  text-align: right;
  padding: 0 0 0px 0;
  font-size: 9px;
  color: #666;
  margin: 0 0 0 -10px;
  white-space: nowrap;
}
.cross_selling .tax a, .cross_selling .lb_tax a, .listingcontainer .tax a, .listingcontainer .lb_tax a, .listingcontainer_full .tax a, .listingcontainer_full .lb_tax a, .listingcontainer_details .tax a, .listingcontainer_details .lb_tax a {
  text-decoration: underline;
}
.cross_selling .tax a:hover, .cross_selling .lb_tax a:hover, .listingcontainer .tax a:hover, .listingcontainer .lb_tax a:hover, .listingcontainer_full .tax a:hover, .listingcontainer_full .lb_tax a:hover, .listingcontainer_details .tax a:hover, .listingcontainer_details .lb_tax a:hover {
  text-decoration: underline;
  color: inherit;
}

.listingcontainer_full .listingbox {
  width: 100%;
}

@media only screen and (min-width: 370px) {
  .listingcontainer .listingbox {
    width: 50%;
  }
  .listingcontainer_full .listingbox {
    width: 50%;
  }
  .pd_tabs .listingbox {
    width: 50%;
  }
  .pd_accordion .listingbox {
    width: 50%;
  }
}
@media only screen and (min-width: 500px) {
  .listingbox {
    padding: 0px 10px;
    margin: 0px 0px 20px 0px;
  }
  .listingbox .special_price .small_price {
    position: static;
    font-size: 10px;
    font-weight: 500;
  }
}
@media only screen and (min-width: 690px) {
  .listingcontainer .listingbox {
    width: 33.3333%;
  }
  .listingcontainer_full .listingbox {
    width: 33.3333%;
  }
  .pd_tabs .listingbox {
    width: 33.3333%;
  }
  .pd_accordion .listingbox {
    width: 33.3333%;
  }
}
@media only screen and (min-width: 920px) {
  .listingcontainer .listingbox {
    width: 25%;
  }
  .listingcontainer_full .listingbox {
    width: 25%;
  }
  .pd_tabs .listingbox {
    width: 25%;
  }
  .pd_accordion .listingbox {
    width: 25%;
  }
}
@media only screen and (min-width: 985px) {
  .listingcontainer .listingbox {
    width: 33.3333%;
  }
  .pd_tabs .listingbox {
    width: 33.3333%;
  }
  .pd_accordion .listingbox {
    width: 33.3333%;
  }
  .listingcontainer_full .listingbox {
    width: 25%;
  }
}
.listingbox {
  float: left;
  width: 100%;
  height: auto;
  padding: 0px 5px;
  margin: 0px 0px 10px 0px;
  box-sizing: border-box;
}
.listingbox .lb_inner:hover {
  border: 1px solid #ccc;
  box-shadow: 0px 0px 5px silver;
}
.listingbox .lb_inner {
  border: 1px solid #eee;
  padding: 10px 10px 10px 10px;
  overflow: hidden;
}
.listingbox .lb_image {
  display: block;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0 0 10px 0;
}
.listingbox .lb_image:before {
  content: "";
  display: block;
  padding-top: 78%;
}
.listingbox .lb_image img {
  margin: auto;
  position: absolute;
  font-size: 0px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  max-width: 20%;
  max-height: 20%;
  -webkit-transform: scale(5);
  -moz-transform: scale(5);
  -ms-transform: scale(5);
  -o-transform: scale(5);
  transform: scale(5);
}
.listingbox .lb_title {
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
  padding: 10px 0px 10px 0px;
}
.listingbox .lb_title h2, .listingbox .lb_title .h2 {
  margin: 0px;
  padding: 0px;
  border: none !important;
  line-height: 17px;
  font-size: 13px;
  font-weight: 500;
  height: 34px;
  overflow: hidden;
  color: #444;
}
.listingbox .lb_title h2 a, .listingbox .lb_title .h2 a {
  color: #4c4c4c;
}
.listingbox .lb_title h2 a:hover, .listingbox .lb_title .h2 a:hover {
  color: #444;
  text-decoration: none;
}
.listingbox .lb_shipping {
  padding: 5px 0px;
  font-size: 12px;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.listingbox .lb_shipping .lb_shipping_image {
  display: inline-block;
  padding: 0 5px 0 0;
}
.listingbox .lb_vpe {
  position: absolute;
  bottom: 5px;
  left: 0px;
  text-align: right;
  padding: 0px 0px 0 0;
  font-weight: 400;
  font-size: 9px;
  line-height: 11px;
  color: #666;
}
.listingbox .lb_buttons {
  display: block;
  text-align: center;
  padding-top: 15px;
}
.listingbox .lb_buttons img {
  margin: 0px 2px;
}

.listingrow {
  height: auto;
  margin: 0px 10px 0px 10px;
}

.listingcontainer .listingrow:first-child .lr_inner,
.listingcontainer_full .listingrow:first-child .lr_inner {
  border-top: 1px solid #eee;
}

.lr_inner {
  padding: 15px 0px 15px 0px;
  border-bottom: 1px solid #eee;
  min-height: 160px;
  position: relative;
}

.lr_image {
  float: none;
  text-align: center;
  width: 100%;
  height: auto;
  overflow: hidden;
  margin: 0 0 10px 0;
}

.lr_image img {
  background-color: #FFFFFF;
  margin: 0 auto;
  max-height: 160px;
  max-width: 160px;
}

.lr_content {
  float: none;
  width: 100%;
}

.lr_title {
  border-bottom: 1px solid #eee;
  padding: 0px 0px 8px 0px;
}

.lr_title h2, .lr_title .h2 {
  margin: 0px;
  padding: 0px;
  border: none !important;
  line-height: 17px;
  font-size: 13px;
  font-weight: 500;
  color: #444;
}

.lr_title h2 a, .lr_title .h2 a {
  color: #7c2759;
}

.lr_title h2 a:hover, .lr_title .h2 a:hover {
  color: #444;
  text-decoration: none;
}

.lr_desc_box {
  float: left;
  width: 100%;
}

.lr_price_box {
  float: right;
  width: 100%;
}

.lr_desc {
  font-size: 12px;
  line-height: 18px;
  border-bottom: 1px solid #eee;
  padding: 10px 0px 10px 0px;
}

.lr_desc p {
  margin: 0px 0px;
}

.lr_desc ul {
  margin: 8px 0px 8px 15px;
}

.lr_desc ol {
  margin: 8px 0px 8px 15px;
}

.lr_shipping {
  padding: 5px 0px 5px 0px;
  font-size: 12px;
  text-align: left;
}

.lr_shipping .lr_shipping_image {
  display: inline-block;
  padding: 0 5px 0 0;
}

.lr_vpe {
  text-align: right;
  padding: 0px 0px 5px 0;
  font-weight: 400;
  font-size: 9px;
  line-height: 11px;
  color: #666;
}

.lr_price {
  text-align: right;
  padding: 10px 0 0 0;
  color: #434343;
  font-weight: 700;
}

.lr_price .no_price {
  font-size: 9px;
  line-height: 12px;
  font-weight: normal;
  display: block;
  padding: 0 0 0 20px;
  color: #999;
}

.lr_price .standard_price {
  display: block;
  font-size: 14px;
  line-height: 24px;
  color: #434343;
  font-weight: 700;
}

.lr_price .new_price {
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  color: #e74c3c;
}

.lr_price .special_price {
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-weight: normal;
  color: #e74c3c;
}

.lr_price .small_price {
  font-size: 10px;
  font-weight: 500;
  line-height: 10px;
}

.lr_price .old_price {
  display: block;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: #666;
}

.lr_price .save_price {
  margin: -2px 0 6px 0;
  display: block;
  font-size: 10px;
  font-weight: 500;
  line-height: 14px;
  color: #e74c3c;
}

.lr_price .item_price {
  display: block;
  font-size: 9px;
  line-height: 11px;
  font-weight: normal;
  color: #666;
}

.lr_price .uvp_price {
  display: block;
  font-size: 14px;
  line-height: 24px;
  color: #434343;
}

.lr_price .graduated_price {
  display: block;
  font-size: 14px;
  line-height: 24px;
  color: #434343;
}

.lr_tax {
  text-align: right;
  padding: 0 0 0 0;
  font-size: 9px;
  color: #666;
  line-height: 11px;
}

.lr_tax a {
  color: #666;
  text-decoration: underline;
}

.lr_tax a:hover {
  color: #666;
  text-decoration: underline;
}

.lr_buttons {
  display: inline-block;
  float: right;
  margin-top: 10px;
  position: static;
  text-align: right;
}

@media only screen and (min-width: 500px) {
  .lr_desc_box {
    width: 56%;
  }
  .lr_price_box {
    width: 40%;
  }
}
@media only screen and (min-width: 600px) {
  .lr_content {
    width: 69%;
    float: right;
  }
  .lr_desc_box {
    width: 56%;
  }
  .lr_price_box {
    width: 40%;
  }
  .lr_image {
    float: left;
    width: 160px;
    height: 160px;
    margin: 0;
  }
  .lr_buttons {
    position: absolute;
    display: inline-block;
    right: -2px;
    bottom: 15px;
  }
}
@media only screen and (min-width: 759px) {
  .lr_content {
    width: 74%;
  }
  .lr_desc_box {
    width: 61%;
  }
  .lr_price_box {
    width: 35%;
  }
}
@media only screen and (min-width: 850px) {
  .lr_content {
    width: 76%;
  }
  .lr_desc_box {
    width: 64%;
  }
  .lr_price_box {
    width: 32%;
  }
}
@media only screen and (min-width: 920px) {
  .lr_content {
    width: 77%;
  }
  .lr_desc_box {
    width: 65%;
  }
  .lr_price_box {
    width: 31%;
  }
}
@media only screen and (min-width: 985px) {
  .lr_content {
    width: 72.5%;
  }
  .lr_desc_box {
    width: 60%;
  }
  .lr_price_box {
    width: 36%;
  }
}
@media only screen and (min-width: 1160px) {
  .lr_content {
    width: 76%;
  }
  .lr_desc_box {
    width: 64.6017%;
  }
  .lr_price_box {
    width: 31.8584%;
  }
}
#product_info > .accordion > div > h3, #product_info > .accordion > div > .h3, #product_info .cross_selling .accordion h3, #product_info .cross_selling .accordion .h3 {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  background-color: #eee;
}

#product_info > .accordion > div > h3 > button, #product_info > .accordion > div > .h3 > button, #product_info .cross_selling .accordion .accordion-button, #product_info .cross_selling #product_info > .accordion > div > h3 > button, #product_info .cross_selling #product_info > .accordion > div > .h3 > button {
  background-color: inherit;
  padding: 0.6rem 1.25rem;
}

h2, .h2 {
  color: #e18c0b;
}

#product_info h2, #product_info .h2 {
  color: #e18c0b;
}
#product_info #product_details {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}
#product_info .pd_imagebox, #product_info .pd_content {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}
@media (min-width: 576px) {
  #product_info .pd_imagebox, #product_info .pd_content {
    flex: 0 0 auto;
    width: 50%;
  }
}
#product_info .pd_content .pd_price_details {
  font-size: 1em;
}
#product_info .pd_content .pd_price_details a {
  color: #fff;
  text-decoration: underline;
}
#product_info .pd_content .pd_price_details a:hover {
  color: #e18c0b;
}
#product_info .pd_content .pd_price_details .pd_price_before {
  background-color: #e38c01;
  min-width: 30px;
}
#product_info .pd_content .pd_price_details .pd_price {
  background-color: #4d4d4d;
  color: #fff;
  text-align: right;
  padding: 6px 12px 6px 20px;
  position: relative;
}
#product_info .pd_content .pd_price_details .pd_price::before {
  content: "";
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 5 16'%3E%3Cpath fill='%23e38c01' stroke='%23ffffff' stroke-width='0.6' d='M-0.6 -0.6L4 8L-0.6 16.6z'/%3E%3C/svg%3E");
  left: 0;
  top: 0;
  width: 1.5rem;
  height: 100%;
  background-size: 100% 100%;
}
#product_info .pd_content .pd_price_details .pd_price #pd_puprice {
  font-size: 2em;
}
#product_info .pd_content .pd_price_details .pd_price .old_price {
  font-size: 0.5em;
}
#product_info .pd_content .pd_price_details .pd_price .new_price {
  font-weight: 600;
  color: #fff;
  background: #e94634 -webkit-gradient(linear, left top, right top, from(#e94634), to(#e94634), color-stop(0.5, #fff)) 0 0 no-repeat;
  -webkit-background-size: 30pt;
  color: rgba(255, 255, 255, 0);
  -webkit-background-clip: text;
  -webkit-animation-name: shine;
  -webkit-animation-duration: 8s;
  -webkit-animation-iteration-count: infinite;
  -webkit-text-stroke: 0.4px rgb(189, 189, 189);
  text-stroke: 0.4px rgb(189, 189, 189);
}
#product_info .pd_content .pd_price_details .pd_price .small_price {
  -webkit-text-stroke: 0px;
  text-stroke: 0px;
}
@-webkit-keyframes shine {
  0% {
    background-position: top left;
  }
  50% {
    background-position: top right;
  }
}
#product_info .pd_content .pd_price_details .pd_price .save_price {
  font-size: 0.4em;
  color: #ffffff;
}
#product_info .pd_content .pd_price_details .pd_price .pd_tax {
  font-size: 0.8em;
}
#product_info .pd_content .pd_data {
  background-color: #f5f5f5;
  margin-top: 2rem;
  padding: 0.5rem;
  border: 1px solid #eee;
}
#product_info .pd_infobox {
  font-size: 0.9em;
}
#product_info .pd_infobox .main {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}
#product_info .pd_infobox a:link, #product_info .pd_infobox a:visited, #product_info .pd_infobox a:active {
  color: #ec8e00;
}
#product_info .pd_infobox .links, #product_info .pd_infobox .data {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
  list-style-type: none;
}
@media (min-width: 768px) {
  #product_info .pd_infobox .links, #product_info .pd_infobox .data {
    flex: 0 0 auto;
    width: 50%;
  }
}
#product_info .pd_infobox .links li a {
  color: #555;
}
#product_info .pd_infobox .links li a:hover {
  text-decoration: underline;
}
#product_info .pd_infobox .links li a:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #858585;
  margin-right: 0.5rem;
}
#product_info .pd_infobox .links li.print a:before {
  content: "\f02f";
}
#product_info .pd_infobox .links li.vote a:before {
  content: "\f164";
}
#product_info .pd_infobox .links li.wishlist a:before {
  content: "\f005";
}
#product_info .pd_infobox .data li {
  text-align: right;
}
#product_info .pd_infobox .links, #product_info .pd_infobox .data, #product_info .pd_infobox .info dl {
  margin-bottom: 0.3rem;
}
#product_info .addtobasket {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid #eee;
}
#product_info .addtobasket .addtobasket_input {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}
@media (min-width: 576px) {
  #product_info .addtobasket .addtobasket_input {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
}
#product_info .addtobasket .addtobasket_input input[type=number] {
  text-align: center;
}
#product_info .addtobasket .addtobasket_actions {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}
@media (min-width: 576px) {
  #product_info .addtobasket .addtobasket_actions {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
}
#product_info .cross_selling .accordion {
  /* Reset */
}
#product_info .cross_selling .accordion .accordion-item, #product_info .cross_selling #product_info > .accordion > div {
  background-color: #fff;
  border: none;
}
#product_info .cross_selling .accordion .accordion-item + .accordion-item, #product_info .cross_selling #product_info > .accordion > div + .accordion-item, #product_info .cross_selling #product_info > .accordion > .accordion-item + div, #product_info .cross_selling #product_info > .accordion > div + div {
  margin-top: 0.5rem;
}
#product_info .cross_selling .accordion h3 .badge, #product_info .cross_selling .accordion .h3 .badge, #product_info .cross_selling .accordion h3 .content_navbar .wishlist a .count, .content_navbar .wishlist a #product_info .cross_selling .accordion h3 .count, #product_info .cross_selling .accordion .h3 .content_navbar .wishlist a .count, .content_navbar .wishlist a #product_info .cross_selling .accordion .h3 .count, #product_info .cross_selling .accordion h3 .content_navbar .cart a .count, .content_navbar .cart a #product_info .cross_selling .accordion h3 .count, #product_info .cross_selling .accordion .h3 .content_navbar .cart a .count, .content_navbar .cart a #product_info .cross_selling .accordion .h3 .count {
  background-color: #fff;
  color: #4d4d4d;
  font-size: smaller;
  margin-left: 1rem;
}
#product_info .cross_selling .accordion .accordion-button::before, #product_info .cross_selling #product_info > .accordion > div > h3 > button::before, #product_info .cross_selling #product_info > .accordion > div > .h3 > button::before {
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  margin: -1rem 1rem -1rem -1.25rem;
}
#product_info .cross_selling .accordion .c_pistolen.accordion-button::before, #product_info .cross_selling #product_info > .accordion > div > h3 > button.c_pistolen::before, #product_info .cross_selling #product_info > .accordion > div > .h3 > button.c_pistolen::before {
  background-image: url("../img/pistolen_w-sm.png");
}
#product_info .cross_selling .accordion .c_farben.accordion-button::before, #product_info .cross_selling #product_info > .accordion > div > h3 > button.c_farben::before, #product_info .cross_selling #product_info > .accordion > div > .h3 > button.c_farben::before, #product_info .cross_selling .accordion .c_farben-sets.accordion-button::before, #product_info .cross_selling #product_info > .accordion > div > h3 > button.c_farben-sets::before, #product_info .cross_selling #product_info > .accordion > div > .h3 > button.c_farben-sets::before {
  background-image: url("../img/farben_w-sm.png");
}
#product_info .cross_selling .accordion .c_kompressoren.accordion-button::before, #product_info .cross_selling #product_info > .accordion > div > h3 > button.c_kompressoren::before, #product_info .cross_selling #product_info > .accordion > div > .h3 > button.c_kompressoren::before {
  background-image: url("../img/kompressor_w-sm.png");
}
#product_info .cross_selling .accordion .c_sets.accordion-button::before, #product_info .cross_selling #product_info > .accordion > div > h3 > button.c_sets::before, #product_info .cross_selling #product_info > .accordion > div > .h3 > button.c_sets::before {
  background-image: url("../img/set_w-sm.png");
}
#product_info .cross_selling .accordion .c_zubehör.accordion-button::before, #product_info .cross_selling #product_info > .accordion > div > h3 > button.c_zubehör::before, #product_info .cross_selling #product_info > .accordion > div > .h3 > button.c_zubehör::before, #product_info .cross_selling .accordion .c_zubehör-sets.accordion-button::before, #product_info .cross_selling #product_info > .accordion > div > h3 > button.c_zubehör-sets::before, #product_info .cross_selling #product_info > .accordion > div > .h3 > button.c_zubehör-sets::before, #product_info .cross_selling .accordion .c_reinigungsmaterial.accordion-button::before, #product_info .cross_selling #product_info > .accordion > div > h3 > button.c_reinigungsmaterial::before, #product_info .cross_selling #product_info > .accordion > div > .h3 > button.c_reinigungsmaterial::before, #product_info .cross_selling .accordion .c_schablonen.accordion-button::before, #product_info .cross_selling #product_info > .accordion > div > h3 > button.c_schablonen::before, #product_info .cross_selling #product_info > .accordion > div > .h3 > button.c_schablonen::before, #product_info .cross_selling .accordion .c_hilfsmittel.accordion-button::before, #product_info .cross_selling #product_info > .accordion > div > h3 > button.c_hilfsmittel::before, #product_info .cross_selling #product_info > .accordion > div > .h3 > button.c_hilfsmittel::before, #product_info .cross_selling .accordion .c_verbindungsteile.accordion-button::before, #product_info .cross_selling #product_info > .accordion > div > h3 > button.c_verbindungsteile::before, #product_info .cross_selling #product_info > .accordion > div > .h3 > button.c_verbindungsteile::before {
  background-image: url("../img/zubehoer_w-sm.png");
}
#product_info .cross_selling .accordion .accordion-button:not(.collapsed), #product_info .cross_selling #product_info > .accordion > div > h3 > button:not(.collapsed), #product_info .cross_selling #product_info > .accordion > div > .h3 > button:not(.collapsed) {
  color: inherit;
  background-color: inherit;
  box-shadow: none;
}
#product_info .cross_selling .accordion .listingcontainer_details {
  margin: 0;
}
#product_info .cross_selling .accordion .listingrow {
  margin: 0;
}

.text-box {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.7em;
}
.text-box h3, .text-box .h3 {
  background-color: #eee;
  padding: 0.7em;
}
.text-box.collapsed {
  max-height: 150px;
}
.text-box.collapsed .text-box-ellipsis {
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
  height: 50px;
  z-index: 2;
  width: 100%;
  padding-top: 10px;
}
.text-box.collapsed .text-box-ellipsis a.close {
  display: none;
}
.text-box.collapsed .text-box-ellipsis a.open {
  display: inline-block;
}
.text-box .text-box-ellipsis {
  text-align: center;
}
.text-box .text-box-ellipsis a {
  background-color: white;
  padding: 5px 10px;
  z-index: 3;
  vertical-align: bottom;
}
.text-box .text-box-ellipsis a.open {
  display: none;
}

#product_info > .accordion > div > div {
  padding: 0rem 1rem;
}
#product_info > .accordion > div > div.collapse:not(.show) {
  height: 65px;
  display: block;
  overflow: hidden;
  background: -webkit-linear-gradient(rgb(32, 32, 32), rgb(255, 255, 255));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  content: "...weiter lesen";
}
#product_info > .accordion > div > div.collapsing {
  height: 80px;
}

.toggle h3, .toggle .h3 {
  background-color: #eee;
  padding: 0.7em;
}
.toggle h3 > a, .toggle .h3 > a {
  float: right;
}
.toggle h3 > a[aria-expanded=true]::after, .toggle .h3 > a[aria-expanded=true]::after {
  content: "[-] schließen";
}
.toggle h3 > a[aria-expanded=false]::after, .toggle .h3 > a[aria-expanded=false]::after {
  content: "[+] öffnen";
}

.pd_infobox dt, .pd_infobox dd {
  display: inline;
  padding: 7px 0px 7px 0px;
  font-size: 10px;
}

.pd_infobox dt:before {
  content: "";
  display: block;
  line-height: 14px;
  border-bottom: 1px solid #eee;
}

.pd_infobox dt:after {
  content: " ";
}

.pd_infobox dl.collapsed > :not(.show) {
  display: none;
}

.productoptions .option {
  margin: 0 0 15px 0;
}
.productoptions .option a.done, .productoptions .option .option_name a.edit {
  display: none;
  float: right;
}
.productoptions .option .option_name {
  font-size: 10px;
  font-weight: 700;
  line-height: 12px;
  padding: 0 0 4px 0;
  border-bottom: 1px solid #ddd;
}
.productoptions .option .option_value {
  padding: 3px 0px;
  font-size: 12px;
  line-height: 20px;
  border-bottom: 1px solid #ddd;
}
.productoptions .option .option_value.selected .option_value_text {
  font-weight: bold;
}
.productoptions .option .option_value:nth-child(even) {
  background: #fafafa;
}
.productoptions .option .option_value:nth-child(odd) {
  background: #fff;
}
.productoptions .option .option_value > div {
  overflow: hidden;
}
.productoptions .option .option_value input[type=radio] {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}
.productoptions .option .option_value .option_value_price, .productoptions .option .option_value .select, .productoptions .option .option_value .deselect {
  float: right;
  padding-right: 2px;
}
.productoptions .option.collapsed {
  position: relative;
}
.productoptions .option.collapsed .option_name a.edit {
  display: inline;
}
.productoptions .option.collapsed .option_value {
  display: none;
}
.productoptions .option.collapsed .option_value.selected {
  display: block;
  border-bottom: none;
  background-color: #fafafa;
}
.productoptions .option.collapsed .option_value.selected .select, .productoptions .option.collapsed .option_value.selected .deselect {
  display: none;
}
.productoptions .option.collapsed .pd_option_preview, .productoptions .option.collapsed .alert {
  display: none;
}
.productoptions .option:not(.collapsed) .option_name {
  position: relative;
}
.productoptions .option:not(.collapsed) .empty {
  display: none;
}
.productoptions .option:not(.collapsed) .option_value {
  cursor: pointer;
}
.productoptions .option:not(.collapsed) .option_value .pd_option_preview, .productoptions .option:not(.collapsed) .option_value .alert {
  display: block;
  margin: 2em;
}
.productoptions .option:not(.collapsed) .option_value.selected .select {
  display: none;
}
.productoptions .option:not(.collapsed) .option_value:not(.selected) .deselect {
  display: none;
}
.productoptions .option:not(.collapsed) a.done {
  display: inline;
}

.box_category .box_category_header {
  background-color: #4d4d4d;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  padding: 0px 10px;
  margin: 0px 0px;
  border-bottom: 1px solid #aaa;
}
.box_category #categorymenu {
  padding: 0;
}
.box_category #categorymenu .hide {
  display: none;
}
.box_category #categorymenu li {
  list-style-type: none;
}
.box_category #categorymenu ul {
  padding-left: 0;
}
.box_category #categorymenu .badge, .box_category #categorymenu .content_navbar .wishlist a .count, .content_navbar .wishlist a .box_category #categorymenu .count, .box_category #categorymenu .content_navbar .cart a .count, .content_navbar .cart a .box_category #categorymenu .count {
  background-color: #fff;
  color: #4d4d4d;
  float: right;
  font-size: smaller;
}
.box_category #categorymenu a {
  padding: 10px 8px;
  text-decoration: none;
  display: block;
  font-weight: 400;
}
.box_category #categorymenu a:hover {
  opacity: 0.6;
}
.box_category #categorymenu li.level1 > a {
  color: #eee;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  background-color: #4d4d4d;
}
.box_category #categorymenu li.level2 > a,
.box_category #categorymenu li.level3 > a {
  color: #4d4d4d;
  font-size: 13px;
}
.box_category #categorymenu li.level2 > a {
  padding-left: 20px;
  background: url(../img/dotted1.gif) no-repeat 10px 11px #f5f5f5;
}
.box_category #categorymenu li.level3 > a {
  padding-left: 40px;
  background: url(../img/dotted1.gif) no-repeat 30px 11px #f5f5f5;
}
.box_category #categorymenu li.activeparent1 > a,
.box_category #categorymenu li.activeparent2 > a,
.box_category #categorymenu li.activeparent3 > a,
.box_category #categorymenu li.active1 > a,
.box_category #categorymenu li.active2 > a,
.box_category #categorymenu li.active2 > a {
  color: #fff;
  background: rgb(199, 126, 12);
  background: linear-gradient(90deg, rgb(199, 126, 12) 0%, rgb(200, 184, 51) 50%, rgb(199, 126, 12) 100%);
}
.box_category #categorymenu li.activeparent1 ul {
  border: 1px solid #fff;
}
.box_category #categorymenu li.level1 + li.level1 {
  border-top: 1px solid #929292;
}
.box_category #categorymenu li.level2 + li.level2,
.box_category #categorymenu li.level3 + li.level3 {
  border-top: 1px solid #fff;
}
.box_category #categorymenu li.level1, .box_category #categorymenu li.level2,
.box_category #categorymenu li.level3, .box_category #categorymenu li.level4 {
  background-size: 200% 150%;
  background-image: repeating-linear-gradient(-45deg, rgb(238, 142, 16) 0%, rgb(14, 142, 247) 25%, rgb(238, 82, 238) 30%, rgb(238, 142, 16) 45%);
  animation: diagonal alternate 3s infinite;
}
@keyframes diagonal {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.cat_description h2, .cat_description .h2 {
  margin-top: 0;
  border-bottom: none;
}
.cat_description > div {
  margin-bottom: 1rem;
}
.cat_description .img img {
  min-width: 100%;
}

.subcats .subcatsitem .card-body {
  background-color: #4d4d4d;
}
.subcats .subcatsitem .card-body a {
  text-decoration: none;
  color: #fff;
}
.subcats .subcatsitem .card-body:hover {
  background: rgb(199, 126, 12);
  background: linear-gradient(90deg, rgb(199, 126, 12) 0%, rgb(200, 184, 51) 50%, rgb(199, 126, 12) 100%);
}

input {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
}

input[type=text], input[type=password], input[type=email], input[type=tel], input[type=number] {
  background-color: #f5f5f5;
  border-color: #eee;
  color: #666;
  border-style: solid;
  border-width: 1px;
  vertical-align: middle;
  padding: 7px 5px 6px 5px;
  border-radius: 2px;
  box-sizing: border-box;
  width: 100%;
  height: 35px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=text]:hover, input[type=password]:hover, input[type=email]:hover, input[type=tel]:hover, input[type=number]:hover, select:hover, textarea:hover {
  background-color: #ffffff;
  border-color: #dddddd;
  color: #666666;
}

input[type=text]:focus, input[type=password]:focus, input[type=email]:focus, input[type=tel]:focus, input[type=number]:focus, select:focus, textarea:focus {
  background-color: #ffffff;
  border-color: #659EC9;
  color: #333333;
  outline: 0 none;
}

.wvd.orderlist {
  border-bottom: 2px solid #eee;
}
.wvd.orderlist .ol_price > div {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}
.wvd.orderlist .ol_quantity {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
  flex: 0 0 auto;
  width: 50%;
}
.wvd.orderlist .ol_totalprice, .wvd.orderlist .ol_singleprice {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
  flex: 0 0 auto;
  width: 25%;
}
.wvd.orderlist .orderlist_header > div {
  line-height: 35px;
  border-bottom: 2px solid #eee;
}
.wvd.orderlist > .orderlist_row + .orderlist_row {
  border-top: 1px solid #eee;
}
.wvd.orderlist .orderlist_row {
  padding: 1rem 0;
}
.wvd.orderlist .ol_price {
  text-align: right;
  line-height: 35px;
}
.wvd.orderlist .ol_quantity > input {
  width: 3em;
  text-align: center;
}
.wvd.orderlist .ol_quantity > a > span {
  width: 2em;
  display: inline;
}
.wvd.orderlist .ol_quantity .add, .wvd.orderlist .ol_quantity .sub {
  width: 25px;
  background-color: #e18c0b;
  color: #fff;
  border: none;
}
.wvd.orderlist .ol_quantity .add:active, .wvd.orderlist .ol_quantity .sub:active {
  background-color: #4d4d4d;
  color: #fff;
}

.total .discount-scale {
  padding: 1.5rem;
  border: 0.5rem solid #929292;
  background-color: #f5f5f5;
  margin: 2rem;
}

.footer_box .box3 > p {
  font-size: 11px;
  line-height: 15px;
  color: #aaa;
}

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

.float-start {
  float: left !important;
}

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

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

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

.overflow-hidden, .wvd.orderlist {
  overflow: hidden !important;
}

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

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

.d-inline, .wvd.orderlist .ol_quantity > .label, .wvd.orderlist .ol_totalprice > .label, .wvd.orderlist .ol_singleprice > .label {
  display: inline !important;
}

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

.d-block, .content_navbar .sidebar_btn {
  display: block !important;
}

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

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

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

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

.d-flex, .content_navbar > ul, .cross_selling .item > .buy, .listingcontainer .item > .buy, .listingcontainer_full .item > .buy, .listingcontainer_details .item > .buy, #product_info .pd_content .pd_price_details, #product_info .pd_content .pd_price_details .pd_price {
  display: flex !important;
}

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

.d-none, .content_navbar .contact, .content_navbar .imprint, .wvd.orderlist .orderlist_header {
  display: none !important;
}

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

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

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

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

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

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

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

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

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

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

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

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

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

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

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

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

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

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

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

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

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

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

.border-primary {
  border-color: #0d6efd !important;
}

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

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

.border-info {
  border-color: #0dcaf0 !important;
}

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

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

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

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

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

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !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;
}

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

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

.min-vw-100 {
  min-width: 100vw !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;
}

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

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

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

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

.flex-row, .content_navbar > ul, #product_info .pd_content .pd_price_details {
  flex-direction: row !important;
}

.flex-column, .cross_selling .item > .buy, .listingcontainer .item > .buy, .listingcontainer_full .item > .buy, .listingcontainer_details .item > .buy, #product_info .pd_content .pd_price_details .pd_price {
  flex-direction: column !important;
}

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

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

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

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

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

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

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

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

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

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

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

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

.justify-content-end, #product_info .pd_content .pd_price_details {
  justify-content: flex-end !important;
}

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

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

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

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

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

.align-items-end, .cross_selling .item > .buy, .listingcontainer .item > .buy, .listingcontainer_full .item > .buy, .listingcontainer_details .item > .buy {
  align-items: flex-end !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.order-first {
  order: -1 !important;
}

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

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt-auto, .cross_selling .item > .buy .action, .listingcontainer .item > .buy .action, .listingcontainer_full .item > .buy .action, .listingcontainer_details .item > .buy .action {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

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

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

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

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

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

.me-auto {
  margin-right: auto !important;
}

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

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

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

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

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

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

.mb-auto, #product_info .pd_content .pd_price_details .pd_price #pd_puprice {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

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

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

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

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

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

.ms-auto, .content_navbar .wishlist {
  margin-left: auto !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pe-0 {
  padding-right: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

.ps-0 {
  padding-left: 0 !important;
}

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

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

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

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

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

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

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

.fst-normal {
  font-style: normal !important;
}

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

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

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

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

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

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

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

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

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

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

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

.text-decoration-line-through {
  text-decoration: line-through !important;
}

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

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

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

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

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

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  color: #0d6efd !important;
}

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

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

.text-info {
  color: #0dcaf0 !important;
}

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

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

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

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

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

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

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

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

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

.text-reset {
  color: inherit !important;
}

.bg-primary {
  background-color: #0d6efd !important;
}

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

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

.bg-info {
  background-color: #0dcaf0 !important;
}

.bg-warning, .content_navbar .wishlist a .count, .content_navbar .cart a .count {
  background-color: #ffc107 !important;
}

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

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

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

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

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

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

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

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

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

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

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

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

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

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

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

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

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

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

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

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

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

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

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block, .content_navbar .contact, .content_navbar .imprint {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-sm-3 {
    gap: 1rem !important;
  }
  .gap-sm-4 {
    gap: 1.5rem !important;
  }
  .gap-sm-5 {
    gap: 3rem !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !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, .wvd.orderlist .orderlist_header {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none, .wvd.orderlist .ol_quantity > .label, .wvd.orderlist .ol_totalprice > .label, .wvd.orderlist .ol_singleprice > .label {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .gap-md-3 {
    gap: 1rem !important;
  }
  .gap-md-4 {
    gap: 1.5rem !important;
  }
  .gap-md-5 {
    gap: 3rem !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first, .total .remarks {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none, .content_navbar .sidebar_btn {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .gap-lg-3 {
    gap: 1rem !important;
  }
  .gap-lg-4 {
    gap: 1.5rem !important;
  }
  .gap-lg-5 {
    gap: 3rem !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .gap-xl-3 {
    gap: 1rem !important;
  }
  .gap-xl-4 {
    gap: 1.5rem !important;
  }
  .gap-xl-5 {
    gap: 3rem !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxl-3 {
    gap: 1rem !important;
  }
  .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  .gap-xxl-5 {
    gap: 3rem !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }
  .fs-2 {
    font-size: 2rem !important;
  }
  .fs-3 {
    font-size: 1.75rem !important;
  }
  .fs-4 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}

/*# sourceMappingURL=bootstrap.css.map */
