@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-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --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-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, 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));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-2xl: 2rem;
  --bs-border-radius-pill: 50rem;
  --bs-link-color: #0d6efd;
  --bs-link-hover-color: #0a58ca;
  --bs-code-color: #d63384;
  --bs-highlight-bg: #fff3cd;
}

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

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

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid;
  opacity: 0.25;
}

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] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
          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.1875em;
  background-color: var(--bs-highlight-bg);
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: var(--bs-link-color);
  text-decoration: underline;
}
a:hover {
  color: var(--bs-link-hover-color);
}

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

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: var(--bs-code-color);
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--bs-body-bg);
  background-color: var(--bs-body-color);
  border-radius: 0.25rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
}

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]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

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

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid var(--bs-border-color);
  border-radius: 0.375rem;
  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 {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  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 {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  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%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

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

.col-2 {
  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 {
  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 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

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

.col-12 {
  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 {
    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%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    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 {
    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 {
    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%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    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 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    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 {
    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%;
  }
  .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 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    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 {
    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%;
  }
  .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 {
    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-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: "";
}

.text-bg-primary {
  color: #fff !important;
  background-color: RGBA(13, 110, 253, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-secondary {
  color: #fff !important;
  background-color: RGBA(108, 117, 125, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-success {
  color: #fff !important;
  background-color: RGBA(25, 135, 84, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-info {
  color: #000 !important;
  background-color: RGBA(13, 202, 240, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-warning {
  color: #000 !important;
  background-color: RGBA(255, 193, 7, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-danger {
  color: #fff !important;
  background-color: RGBA(220, 53, 69, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-light {
  color: #000 !important;
  background-color: RGBA(248, 249, 250, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-dark {
  color: #fff !important;
  background-color: RGBA(33, 37, 41, var(--bs-bg-opacity, 1)) !important;
}

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

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

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

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

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

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

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

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

.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 {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.sticky-bottom {
  position: sticky;
  bottom: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-sm-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-md-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-lg-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xxl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}

.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}

.visually-hidden,
.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 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

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

.vr {
  display: inline-block;
  align-self: stretch;
  width: 1px;
  min-height: 1em;
  background-color: currentcolor;
  opacity: 0.25;
}

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

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

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

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

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

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

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

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

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

.d-block {
  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 {
  display: flex !important;
}

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

.d-none {
  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: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-end {
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-start {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}

.border-secondary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}

.border-success {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}

.border-info {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}

.border-warning {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
}

.border-danger {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}

.border-light {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}

.border-dark {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

.border-white {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}

.border-1 {
  --bs-border-width: 1px;
}

.border-2 {
  --bs-border-width: 2px;
}

.border-3 {
  --bs-border-width: 3px;
}

.border-4 {
  --bs-border-width: 4px;
}

.border-5 {
  --bs-border-width: 5px;
}

.border-opacity-10 {
  --bs-border-opacity: 0.1;
}

.border-opacity-25 {
  --bs-border-opacity: 0.25;
}

.border-opacity-50 {
  --bs-border-opacity: 0.5;
}

.border-opacity-75 {
  --bs-border-opacity: 0.75;
}

.border-opacity-100 {
  --bs-border-opacity: 1;
}

.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 {
  flex-direction: row !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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-semibold {
  font-weight: 600 !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 {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

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

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

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

.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

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

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

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

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

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

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: var(--bs-border-radius) !important;
}

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

.rounded-1 {
  border-radius: var(--bs-border-radius-sm) !important;
}

.rounded-2 {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-3 {
  border-radius: var(--bs-border-radius-lg) !important;
}

.rounded-4 {
  border-radius: var(--bs-border-radius-xl) !important;
}

.rounded-5 {
  border-radius: var(--bs-border-radius-2xl) !important;
}

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

.rounded-pill {
  border-radius: var(--bs-border-radius-pill) !important;
}

.rounded-top {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-end {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-bottom {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-start {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !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 {
    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;
  }
  .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;
  }
  .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;
  }
  .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 {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    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;
  }
  .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 {
    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;
  }
  .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;
  }
  .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 {
    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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
}
@font-face {
  font-family: flexslider-icon;
  src: url(/site/fs_monitor/assets/css/fonts/flexslider-icon.eot);
  src: url(/site/fs_monitor/assets/css/fonts/flexslider-icon.eot?#iefix) format("embedded-opentype"), url(/site/fs_monitor/assets/css/fonts/flexslider-icon.woff) format("woff"), url(/site/fs_monitor/assets/css/fonts/flexslider-icon.ttf) format("truetype"), url(/site/fs_monitor/assets/css/fonts/flexslider-icon.svg#flexslider-icon) format("svg");
  font-weight: 400;
  font-style: normal;
}
body {
  background-color: #fff;
  font-family: acumin-pro, arial, sans-serif;
  font-weight: 300;
  color: #646464;
  font-size: 18px;
  line-height: 1.4em;
}

body, html {
  height: 100%;
  margin: 0 0 1px;
  padding: 0;
}

* {
  margin: 0;
  padding: 0;
}

a img {
  border: 0;
}

p {
  margin: 1em 0;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: #000;
}

img {
  border: 0;
}

ul {
  list-style: none;
}

h1, .h1,
h3,
.h3 {
  font-weight: 400;
  margin: 0 0 1em;
  color: #000;
  line-height: 1em;
}

.fancybox-wrapper {
  max-width: 500px;
  color: #000;
}

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

.only_mobile {
  display: none;
}

.only_mobile .container {
  padding-bottom: 0;
}

.boiler .h1 {
  font-family: acumin-pro, arial, sans-serif;
}

#header,
.container {
  margin: 0 auto;
  width: 1000px;
  height: auto;
}

#header {
  width: 100%;
  position: relative;
}

.wrapper {
  width: 100%;
  position: relative;
}

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

.container {
  position: relative;
  padding: 2.5em 0;
  overflow: hidden;
}

.container p {
  color: #646464;
}

.grey {
  background: #fff9f4;
}

.blue-border {
  border-bottom: 1px solid #add8e6;
  border-top: 1px solid #add8e6;
  background: #fff;
}

#monitor-start {
  margin-top: 127px;
}

.boiler {
  text-align: center;
  width: 55%;
}

.boiler .h1 {
  font-size: 1.7em;
  font-weight: 400;
  color: #000;
}

.boiler .h1::after {
  content: "";
  display: inherit;
  width: 50%;
  margin: 35px auto;
  border-top: 2px solid #de111e;
}

.boiler h2, .boiler .h2 {
  font-family: adobe-garamond-pro, Times-new-roman, serif;
  font-size: 1.3em;
}

.sec_menu {
  text-align: center;
  margin-bottom: 2em;
}

.sec_menu ul li {
  display: inline;
  font-family: acumin-pro, arial, sans-serif;
}

@media screen and (max-width: 812px) {
  .sec_menu ul li:after {
    content: "/";
    margin: 0 10px;
    color: #dec4af;
    font-size: 17px;
  }
}
.newscategories.sec_menu ul li:after {
  color: #d81e2b;
  font-size: 12px;
  content: "|";
  padding: 0 8px;
}

.sec_menu ul li:last-child:after {
  content: "";
  margin-right: 0;
}

input {
  padding: 10px;
  border: 1px solid #eee;
  color: #a9a9a9;
  font-family: acumin-pro, arial, sans-serif;
}

input[type=text] {
  border: 1px solid #646464;
}

.load-more {
  margin: 1em 0 0;
  display: block;
}

.hidden {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.visible {
  max-height: none !important;
  opacity: 1 !important;
}

.loaded {
  color: #fff !important;
}

.flexslider .slides li,
.slides {
  background: #fff;
  position: relative;
}

.flex-direction-nav a {
  background-color: transparent;
  text-indent: 500px;
}

#monitor-start .flex-direction-nav a:before {
  background: url(/site/frontend/assets/images/sprite-icons.png) -65px 0 no-repeat;
  width: 7px;
  height: 16px;
  left: 27px;
  position: absolute;
  top: 23px;
}

#monitor-start .flex-direction-nav a.flex-next:before {
  background-position: -72px 0;
}

.flex-direction-nav .flex-next,
.flex-direction-nav .flex-prev {
  font-size: 0;
  border-radius: 50%;
}

.flex-direction-nav .flex-prev {
  left: -36px;
}

.flex-direction-nav .flex-next {
  background-position: 100% 0;
  right: -36px;
}

.monitor-banner {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  z-index: 999;
  width: 100%;
  padding: 0.25rem 0;
  font-weight: 700;
  text-align: center;
  box-sizing: border-box;
  line-height: 1em;
}

.monitor-banner h4, .monitor-banner .h4,
.monitor-banner h5,
.monitor-banner .h5 {
  display: inline-block;
}

.monitor-banner h4, .monitor-banner .h4 {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 0;
  color: #9b2226;
}

@media screen and (min-width: 768px) {
  .monitor-banner h4, .monitor-banner .h4 {
    font-size: 16px;
  }
  .monitor-banner {
    padding: 1rem 0;
  }
}
.flex-caption {
  position: absolute;
  top: 65%;
  right: 0;
  transform: translateY(-55%);
  width: 100%;
  color: #fff;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.flex-caption-description,
.flex-caption-name {
  width: 50%;
  display: inline-block;
}

.flex-caption-description {
  font-family: adobe-garamond-pro, Times-new-roman, serif;
  font-size: 2.2em;
  padding-bottom: 15px;
  line-height: 1em;
}

.flex-caption-name {
  font-weight: 700;
  font-size: 5em;
  text-transform: uppercase;
  width: 60%;
  line-height: 1em;
  margin: 0 auto;
}

.template_start .flex-caption-name::after {
  content: "";
  display: inherit;
  width: 25%;
  margin: 0.4em 35%;
  border-top: 3px solid #fff;
}

@media screen and (min-width: 1024px) {
  .flex-caption {
    text-shadow: 1px 1px #050a03;
  }
  .template_start .flex-caption-name::after {
    box-shadow: 1px 1px #050a03;
  }
}
.red {
  color: #d81e2b;
}

.nav-toggle-wrapper {
  position: absolute;
  left: 10px;
  top: 5px;
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  display: none;
}

.nav-toggle {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 20px;
  height: 24px;
  font-size: 0;
  text-indent: -9999px;
  float: right;
  margin-left: 10px;
}

.nav-toggle span {
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 2px;
  background: #000;
}

.nav-toggle span::after,
.nav-toggle span::before {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  content: "";
}

.nav-toggle span::before {
  top: -5px;
}

.nav-toggle span::after {
  bottom: -5px;
}

#min_menu_wrapper {
  width: 100%;
  max-height: 0;
  height: 0;
  overflow: hidden;
  margin: 0;
  display: none;
}

#min_menu_wrapper .menu_link {
  overflow: hidden;
  margin-bottom: 18px;
}

#min_menu_wrapper .menu_link a {
  border-right: 1px solid #fff;
  padding: 18px 0;
  font-size: 18px;
}

#min_menu_wrapper ul li {
  width: 100%;
}

#min_menu_wrapper ul li a {
  display: inline-block;
  float: left;
  padding: 0 25px 15px;
  box-sizing: border-box;
  width: 100%;
  border: none;
  font-size: 14px;
  text-align: left;
  font-family: adobe-garamond-pro, Times-new-roman, serif;
  line-height: 1em;
}

#min_menu_wrapper > ul.submenu-0 li a {
  font-size: 18px;
  padding: 20px 15px;
  border-top: 1px solid #add8e6;
}

.min-menu-tab-wrapper {
  float: left;
  width: 100%;
}

.min-menu-tabs {
  background: #ddd;
  color: #000 !important;
}

#min_menu_wrapper .loaded {
  display: block !important;
  background: #fff;
  color: #000;
}

#min_menu_wrapper .newscategories-title,
#min_menu_wrapper ul li:after {
  display: none;
}

#min_menu_wrapper .newscategories {
  max-height: none;
}

#min_menu_wrapper .newscategories li {
  opacity: 1;
  float: left;
}

#min_menu_wrapper .newscategories li a {
  font-family: acumin-pro, arial, sans-serif;
  font-size: 0.9em;
}

.top-nav {
  top: 0;
  left: 0;
  position: absolute;
  text-align: center;
  border-left: 1px solid #add8e6;
  border-right: 1px solid #add8e6;
  width: 25%;
}

.top-nav-right {
  left: auto;
  right: 0;
}

.top-nav .menu_link {
  width: 100%;
  float: left;
}

.top-nav a {
  text-align: center;
  box-sizing: border-box;
}

.top-nav .top {
  border-bottom: 1px solid #add8e6;
  overflow: hidden;
  height: 45px;
}

.menu_link p,
.top-nav .top p {
  margin: 0;
}

.top-nav .top a {
  padding: 10px 0;
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  margin-right: 10px;
  font-weight: 700;
}

.cart-link,
.menu_link a {
  display: inline-block;
  width: 33.33%;
  float: left;
  margin: 0;
  border-right: 1px solid #add8e6;
  padding: 28px 10px;
  font-size: 19px;
  font-family: adobe-garamond-pro, Times-new-roman, serif;
  box-sizing: border-box;
  text-align: center;
  max-height: 82px;
}

.menu_link a:last-child {
  border: none;
}

.cart-link,
.top-nav-right .menu_link a {
  font-size: 16px;
  width: 33.3%;
}

.top-nav .top a.red {
  color: #9b2226;
}

.logo {
  margin: 0 auto;
  display: block;
  overflow: hidden;
  text-align: center;
  width: 95px;
  position: relative;
}

.logo a {
  background: url(/site/frontend/assets/images/sprite-icons.png) -146px -1px no-repeat;
  width: 91px;
  height: 95px;
  display: inline-block;
  overflow: hidden;
  text-indent: -900px;
  margin: 12px 0;
}

.lang {
  float: right;
  overflow: hidden;
  width: 47px;
  height: 24px;
  text-indent: -500px;
  padding: 0 !important;
  margin: 13px 13px 0 0;
  background: url(/site/frontend/assets/images/sprite-icons.png) 0 -24px no-repeat #fff;
}

.sv {
  background-position: 0 0;
}

#header_wrapper {
  position: fixed;
  top: 0;
  z-index: 999;
  background: #fff;
  height: 127px;
}

.yc-listing-item {
  clear: none !important;
  border: none !important;
  float: left;
  width: 48%;
  margin: 0 1% 4em;
  overflow: hidden;
  position: relative;
}

.yc-listing-item .yc-listing-description {
  width: 40%;
  text-align: center;
  font-family: adobe-garamond-pro, Times-new-roman, serif;
  color: #818181;
  font-size: 18px;
  position: absolute;
  top: 40%;
  right: 0;
  max-height: 200px;
  overflow: hidden;
  transform: translateY(-40%);
  box-sizing: border-box;
}

.yc-listing-item .yc-listing-image {
  margin: 0;
  width: 100%;
  height: 325px;
  overflow: hidden;
  margin-bottom: 0.8em;
  text-align: center;
  background-position: center center;
  background-repeat: no-repeat;
}

.yc-listing-item .yc-listing-image img {
  width: 100%;
  height: auto;
  margin: 0;
  display: block;
}

#fs_search_query_field {
  width: 80%;
}

#fs_search_button {
  width: 10%;
  text-transform: uppercase;
  color: #fff;
  background: #618893;
  font-family: acumin-pro-semi-condensed, arial, sans-serif;
  font-size: 0.7em;
  padding: 9px 10px;
  border: none;
  padding-bottom: 10px;
}

.fs_search-form {
  border-bottom: 1px solid #add8e6;
  padding-bottom: 1em;
  margin-bottom: 1em;
}

.fs_search-wrapper form {
  display: flex;
}

.prod-gallery h3, .prod-gallery .h3 {
  width: 100%;
  display: block;
  margin: 0 auto 0.5em !important;
  text-align: center;
  font-weight: 400;
  font-size: 26px;
  padding-bottom: 0.5em;
  border-bottom: 2px solid #de111e;
  font-family: acumin-pro, arial, sans-serif;
  color: #303030;
  line-height: 1em;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.prod-gallery h3, .prod-gallery .h3 {
  margin-bottom: 1em;
}

.prod-gallery-wrapper {
  opacity: 1 !important;
}

.prod-gallery-wrapper .flex-direction-nav {
  z-index: 999;
}

.prod-gallery-wrapper .flex-direction-nav .flex-next {
  right: 0;
}

.prod-gallery-wrapper .flex-direction-nav .flex-prev {
  left: 0;
}

.prod-gallery-wrapper .flex-direction-nav a {
  opacity: 1;
  background: rgba(255, 255, 255, 0.6);
  width: 40px;
  height: 40px;
}

.prod-gallery-wrapper .flex-direction-nav a:before {
  content: " ";
  background: url(/site/frontend/assets/images/sprite-icons.png) -47px 0 no-repeat;
  width: 7px;
  height: 16px;
  margin: 12px 17px;
}

.prod-gallery-wrapper .flex-direction-nav a.flex-next:before {
  background-position: -54px 0;
}

.prod-gallery-wrapper {
  overflow: hidden;
}

.prod-gallery {
  height: auto;
  width: 10000px !important;
  margin: 3em 0;
  padding: 0;
  left: 0;
  overflow: hidden;
}

.prod-gallery a {
  color: #fff;
}

.container.prod-gallery .yc-listing-item {
  width: 350px;
  height: 100%;
  position: relative;
  margin: 0 15px !important;
  text-align: center;
}

.prod-gallery .yc-listing-item .yc-listing-description {
  font-family: acumin-pro, arial, sans-serif;
  width: 100%;
  background: rgba(97, 136, 147, 0.9);
  padding: 25px 10%;
  color: #fff;
  opacity: 0;
  margin-top: 1em;
  font-size: 0.7em;
}

.prod-gallery .yc-listing-image img {
  width: auto;
  height: 100%;
  display: inline;
}

.prod-gallery .yc-listing-description h4, .prod-gallery .yc-listing-description .h4 {
  border-bottom: 1px solid #fff;
  font-size: 1.5em;
  margin-bottom: 0;
  padding-bottom: 0;
}

.prod-gallery .yc-listing-description:first-child {
  position: relative;
  top: 0;
  transform: translateY(0);
  margin-top: 10% !important;
  background: 0 0;
  color: #818181;
  font-family: adobe-garamond-pro, Times-new-roman, serif;
  opacity: 1;
  font-size: 20px;
}

.container:before {
  content: " ";
  display: table;
}

form {
  overflow: hidden;
}

.newscategories-title {
  display: none;
}

.newscategories {
  overflow: hidden;
  text-transform: uppercase;
  font-size: 0.7em;
}

.newscategories-title a {
  margin: 0;
}

.cart-icon,
.search-icon {
  position: absolute;
  right: 10px;
  top: 45px;
  width: 25px;
  height: 25px;
  display: none;
}

.cart-icon a,
.search-icon a {
  width: 25px;
  height: 25px;
  display: block;
  background: url(/site/frontend/assets/images/cart-icon.svg) no-repeat;
}

.menu_link {
  position: relative;
}

.cart-info,
.search-info {
  position: absolute;
  top: 100%;
  left: -1px;
  width: 100%;
  margin-top: 1px;
  padding: 10px 20px;
  background: #fff;
  text-align: left;
  border: 1px solid #add8e6;
  border-top: none;
  font-size: 14px;
  box-sizing: border-box;
}

.search-info .fs_search-form {
  border-bottom: none;
  padding: 1rem 0;
  margin-bottom: 0;
}

.search-info #fs_search_button {
  width: auto;
}

.top-nav-right .menu_link .cart-link a {
  width: auto;
  float: none;
  border-right: none;
  padding: 0;
}

.search-icon {
  right: 45px;
}

.search-icon a {
  background: url(/site/frontend/assets/images/search-icon.svg) no-repeat;
}

.lang.mobile-menu {
  position: absolute;
  left: 52px;
  top: 9px;
  margin: 0;
  width: 20px;
  display: none;
  height: 14px;
  background-position: 0 -48px;
}

@media screen and (max-width: 1700px) {
  #monitor-start .flexslider {
    min-height: 800px;
  }
}
@media screen and (max-width: 1350px) {
  #monitor-start .flexslider {
    min-height: 555px;
  }
}
@media screen and (max-width: 1300px) {
  .container {
    width: 90%;
  }
  .flex-caption-name {
    font-size: 3em;
  }
  .flex-caption-description {
    font-size: 1.8em;
  }
  #monitor-start .flexslider {
    min-height: 0;
    height: auto !important;
  }
}
@media screen and (max-width: 1024px) {
  .yc-listing-item {
    margin: 0 1%;
  }
  .top-nav {
    width: 35%;
  }
  .prod-gallery .yc-listing-item .yc-listing-image {
    height: 200px;
    max-height: none;
  }
  .prod-gallery {
    height: 220px;
  }
  .container.prod-gallery .yc-listing-item {
    width: 280px;
  }
  .prod-gallery h3, .prod-gallery .h3 {
    width: 100%;
  }
  .prod-gallery {
    height: auto;
    margin: 1em 0;
  }
  .prod-gallery-wrapper .flex-direction-nav {
    display: block;
  }
  .prod-gallery-wrapper .flex-direction-nav .flex-prev {
    background-position: 0 0;
  }
  .prod-gallery-wrapper .flex-direction-nav a {
    width: 34px !important;
  }
  .prod-gallery .yc-listing-item .yc-listing-description {
    background: 0 0;
    padding: 0;
    color: #303030;
    opacity: 1;
    margin-top: 0;
    position: relative;
    float: left;
    padding: 0 30px;
    box-sizing: border-box;
  }
  .prod-gallery a {
    color: #618893;
  }
  .prod-gallery .yc-listing-description:first-child {
    margin-top: 20% !important;
  }
}
@media screen and (max-width: 770px) {
  .campaign .text2 .row blockquote {
    margin-top: 4rem;
  }
  .only_mobile {
    display: block;
  }
  .container.prod-gallery .yc-listing-item.item-title {
    display: none;
  }
  .boiler {
    width: 80%;
  }
  .lang.mobile-menu {
    display: block;
    top: 49px;
  }
  #min_menu_wrapper {
    display: block;
  }
  .yc-listing-item {
    margin: 0 0 1em;
    width: 100%;
    border: none;
    padding-top: 0;
  }
  .yc-listing-item .yc-listing-image {
    height: 155px;
    background-size: cover !important;
  }
  .nav-toggle-wrapper {
    display: block;
    top: 45px;
  }
  .loaded,
  .top-nav {
    display: none !important;
  }
  #fs_search_query_field {
    width: 78%;
    box-sizing: border-box;
  }
  #fs_search_button {
    width: 20%;
  }
  .boiler .h1 {
    font-size: 1.5em;
  }
  .boiler .h1::after {
    width: 80%;
    margin: 20px auto;
  }
  #monitor-start,
  .template_start .flexslider .slides li,
  .template_start .slides {
    background: #618893 !important;
    overflow: hidden;
  }
  .template_start .flex-caption,
  .template_start .flex-caption-description,
  .template_start .flex-caption-name {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    font-size: 1.2em;
    background: #618893;
  }
  .template_start .flex-caption-description,
  .template_start .flex-caption-name {
    margin: 0 10%;
    width: 80%;
  }
  .template_start .flex-caption-name {
    margin: 1em 10% 0;
  }
  .sec_menu ul li {
    display: inline-block;
  }
  .social-media-bar {
    width: 100%;
    margin: 0;
  }
  #min_menu_wrapper {
    width: 100%;
    max-height: none;
    overflow: hidden;
  }
  #min_menu_wrapper .newscategories li {
    width: 33.3%;
  }
  #monitor-start {
    margin-top: 0;
  }
  #min_menu_wrapper {
    margin-top: 127px;
  }
  .cart-icon,
  .search-icon {
    display: block;
  }
}
@media screen and (max-width: 450px) {
  .lang.mobile-menu {
    top: 9px;
  }
  .container {
    padding: 1.5em 0;
  }
  .prod-gallery {
    padding: 0;
    margin-top: 0;
  }
  .flex-direction-nav {
    display: none;
  }
  .newscategories {
    max-height: 0;
    margin: 0;
  }
  .newscategories li {
    opacity: 0;
  }
  .newscategories-title {
    display: block;
  }
  #fs_search_button,
  #fs_search_query_field {
    width: 100%;
    margin-bottom: 0.5em;
  }
  .template_start .flex-caption,
  .template_start .flex-caption-description,
  .template_start .flex-caption-name {
    font-size: 1.1em;
    background: #618893;
  }
  .yc-listing-item .yc-listing-image {
    height: 125px;
  }
  #header_wrapper {
    height: 50px;
  }
  .logo {
    height: 25px;
    width: 95px;
    margin: 10px auto;
    text-align: center;
  }
  .logo a {
    top: -67px;
    left: 0;
    position: absolute;
  }
  #min_menu_wrapper {
    margin-top: 50px;
  }
  .flex-pauseplay a {
    bottom: auto;
    top: 15px;
  }
  .nav-toggle-wrapper {
    top: 5px;
  }
  #min_menu_wrapper .newscategories li {
    width: 50%;
  }
  .cart-icon,
  .search-icon {
    top: 5px;
  }
}
.menu_link a {
  position: relative;
}

.flex-direction-nav,
.slides,
.slides > li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flexslider {
  margin: 0;
  padding: 0;
}

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}

.flexslider .slides img {
  width: 100%;
  display: block;
}

.flexslider .slides:after {
  content: " ";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.flexslider {
  margin: 0 0 60px;
  background: #fff;
  border: none;
  position: relative;
  zoom: 1;
  border-radius: 4px;
  -o-box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
}

.flexslider .slides {
  zoom: 1;
}

.flexslider .slides img {
  height: auto;
}

.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 60px;
  height: 60px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
}

.flex-direction-nav a:before {
  background: url(/site/fs_monitor/assets/images/bg_direction_nav.png) -10px -10px no-repeat;
  width: 60px;
  height: 60px;
  left: 0;
  position: absolute;
}

.flex-direction-nav a.flex-next:before {
  content: "\f002";
  background-position: -80px -10px;
}

.flex-direction-nav a.flex-prev:before {
  content: "\f001";
}

.flex-direction-nav .flex-prev {
  background-position: -50px 0;
}

.flex-direction-nav .flex-next {
  right: -50px;
  text-align: right;
}

.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  color: #000;
  line-height: 20px;
  color: #fff;
}

.flex-pauseplay a:before {
  font-family: flexslider-icon;
  font-size: 20px;
  display: inline-block;
  content: "\f004";
}

@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
  }
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
  }
}
.flexslider {
  margin-bottom: 0;
}

.flex-direction-nav .flex-prev {
  left: 10px;
  opacity: 0.2;
}

.flex-direction-nav .flex-next {
  right: 10px;
  opacity: 0.2;
}

.flex-pauseplay a {
  left: auto;
  right: 10px;
  bottom: 10px;
}

* {
  margin: 0;
  padding: 0;
}

p {
  margin: 1em 0;
}

a {
  text-decoration: none;
  color: #000;
}

img {
  border: 0;
}

ul {
  list-style: none;
}

h1, .h1,
h3,
.h3 {
  font-weight: 400;
  margin: 0 0 1em;
  color: #000;
  line-height: 1em;
}

.fancybox-wrapper {
  max-width: 500px;
  color: #000;
}

.mainbar a {
  display: inline;
}

.mainbar h1, .mainbar .h1 {
  font-size: 1.9em;
}

.mainbar h2, .mainbar .h2 {
  font-family: acumin-pro, arial, sans-serif;
  text-transform: uppercase;
  font-size: 0.8em;
  letter-spacing: 1px;
}

#header,
.container {
  margin: 0 auto;
  width: 1000px;
  height: auto;
}

#header {
  width: 100%;
  position: relative;
}

.wrapper {
  width: 100%;
  position: relative;
}

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

.container {
  position: relative;
  padding: 2.5em 0;
  overflow: hidden;
}

.container p {
  color: #646464;
}

#sub-container {
  border-top: none;
}

.grey {
  background: #fff9f4;
}

.blue-border {
  border-bottom: 1px solid #add8e6;
  border-top: 1px solid #add8e6;
  background: #fff;
}

.serif {
  font-family: adobe-garamond-pro, Times-new-roman, serif;
}

.cat_title {
  display: block;
  float: left;
  width: 12%;
  margin-right: 2.5%;
  font-family: adobe-garamond-pro, Times-new-roman, serif;
  text-align: left;
  text-transform: uppercase;
  margin-top: 0;
}

.sidebar {
  float: left;
  width: 30%;
  line-height: 30px;
}

.sidebar ul {
  list-style: none;
  font-size: 0.9em;
  line-height: 1.6em;
}

.active {
  color: #e63446;
}

.mainbar {
  float: right;
  width: 70%;
  margin-bottom: 2em;
}

#sub-container {
  margin-top: 127px;
}

.wrapper-shop {
  padding-bottom: 1em;
}

.wrapper-shop .container {
  width: 1350px;
}

.wrapper-shop .mainbar {
  width: 88%;
}

.wrapper-shop .sidebar {
  width: 12%;
  font-size: 1.1em;
}

.wrapper-shop .submenu-1 {
  text-align: left;
  font-family: adobe-garamond-pro, Times-new-roman, serif;
}

.wrapper-shop .sec_menu li {
  font-family: adobe-garamond-pro, Times-new-roman, serif;
}

.wrapper-shop .sec_menu {
  font-size: 1.1em;
  margin-bottom: -1px;
  padding: 2.5em 0 0;
}

@media screen and (min-width: 813px) {
  .cat_title {
    margin-top: 15px;
  }
  .wrapper-shop {
    padding-bottom: 0;
  }
  .wrapper-shop .sec_menu li {
    padding: 18px 32px;
    border: 1px solid #eaeaea;
    border-bottom-color: #add8e6;
    background: #f9f9f9;
    display: inline-block;
    opacity: 0.7;
  }
  .wrapper-shop .sec_menu li a {
    color: #303030;
  }
  .wrapper-shop .sec_menu li.active {
    background: #fff9f4;
    border-color: #add8e6;
    border-bottom-color: #fff9f4;
    opacity: 1;
  }
  .wrapper-shop .sec_menu li.active a {
    color: #ed3446;
  }
}
.breadcrumbs {
  font-weight: 700;
  font-size: 0.9em;
  width: 100%;
  float: left;
  margin-bottom: 1em;
}

.sec_menu {
  text-align: center;
  margin-bottom: 2em;
}

.sec_menu ul li {
  display: inline;
  font-family: acumin-pro, arial, sans-serif;
}

@media screen and (max-width: 812px) {
  .sec_menu ul li:after {
    content: "/";
    margin: 0 10px;
    color: #dec4af;
    font-size: 17px;
  }
}
.newscategories.sec_menu ul li:after {
  color: #d81e2b;
  font-size: 12px;
  content: "|";
  padding: 0 8px;
}

.sec_menu ul li:last-child:after {
  content: "";
  margin-right: 0;
}

input {
  padding: 10px;
  border: 1px solid #eee;
  color: #a9a9a9;
  font-family: acumin-pro, arial, sans-serif;
}

input[type=text] {
  border: 1px solid #646464;
}

.img_wrapper {
  position: relative;
}

.load-more {
  margin: 1em 0 0;
  display: block;
}

.hidden {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.visible {
  max-height: none !important;
  opacity: 1 !important;
}

.loaded {
  color: #fff !important;
}

.floating_title {
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
  padding: 0 10%;
  font-family: adobe-garamond-pro, Times-new-roman, serif;
  position: absolute;
}

.floating_title {
  font-weight: 700;
  font-size: 5em;
  text-transform: uppercase;
  width: 60%;
  line-height: 1em;
  margin: 0 auto;
}

.floating_title {
  text-transform: none;
  width: auto;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.1em;
}

.floating_title {
  color: #fff;
  width: 80%;
  overflow: hidden;
}

.red {
  color: #d81e2b;
}

.nav-toggle-wrapper {
  position: absolute;
  left: 10px;
  top: 5px;
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  display: none;
}

.nav-toggle {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 20px;
  height: 24px;
  font-size: 0;
  text-indent: -9999px;
  float: right;
  margin-left: 10px;
}

.nav-toggle span {
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 2px;
  background: #000;
}

.nav-toggle span::after,
.nav-toggle span::before {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  content: "";
}

.nav-toggle span::before {
  top: -5px;
}

.nav-toggle span::after {
  bottom: -5px;
}

#min_menu_wrapper {
  width: 100%;
  max-height: 0;
  height: 0;
  overflow: hidden;
  margin: 0;
  display: none;
}

#min_menu_wrapper .menu_link {
  overflow: hidden;
  margin-bottom: 18px;
}

#min_menu_wrapper .menu_link a {
  border-right: 1px solid #fff;
  padding: 18px 0;
  font-size: 18px;
}

#min_menu_wrapper ul li {
  width: 100%;
}

#min_menu_wrapper ul li a {
  display: inline-block;
  float: left;
  padding: 0 25px 15px;
  box-sizing: border-box;
  width: 100%;
  border: none;
  font-size: 14px;
  text-align: left;
  font-family: adobe-garamond-pro, Times-new-roman, serif;
  line-height: 1em;
}

#min_menu_wrapper > ul.submenu-0 li a {
  font-size: 18px;
  padding: 20px 15px;
  border-top: 1px solid #add8e6;
}

.min-menu-tab-wrapper {
  float: left;
  width: 100%;
}

.min-menu-tabs {
  background: #ddd;
  color: #000 !important;
}

#min_menu_wrapper .loaded {
  display: block !important;
  background: #fff;
  color: #000;
}

#min_menu_wrapper .newscategories-title,
#min_menu_wrapper ul li:after {
  display: none;
}

#min_menu_wrapper .newscategories {
  max-height: none;
}

#min_menu_wrapper .newscategories li {
  opacity: 1;
  float: left;
}

#min_menu_wrapper .newscategories li a {
  font-family: acumin-pro, arial, sans-serif;
  font-size: 0.9em;
}

.top-nav {
  top: 0;
  left: 0;
  position: absolute;
  text-align: center;
  border-left: 1px solid #add8e6;
  border-right: 1px solid #add8e6;
  width: 25%;
}

.top-nav-right {
  left: auto;
  right: 0;
}

.top-nav .menu_link {
  width: 100%;
  float: left;
}

.top-nav a {
  text-align: center;
  box-sizing: border-box;
}

.top-nav .top {
  border-bottom: 1px solid #add8e6;
  overflow: hidden;
  height: 45px;
}

.menu_link p,
.top-nav .top p {
  margin: 0;
}

.top-nav .top a {
  padding: 10px 0;
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  margin-right: 10px;
  font-weight: 700;
}

.cart-link,
.menu_link a {
  display: inline-block;
  width: 33.33%;
  float: left;
  margin: 0;
  border-right: 1px solid #add8e6;
  padding: 28px 10px;
  font-size: 19px;
  font-family: adobe-garamond-pro, Times-new-roman, serif;
  box-sizing: border-box;
  text-align: center;
  max-height: 82px;
}

.menu_link a:last-child {
  border: none;
}

.cart-link,
.top-nav-right .menu_link a {
  font-size: 16px;
  width: 33.3%;
}

.top-nav .top a.red {
  color: #9b2226;
}

.logo {
  margin: 0 auto;
  display: block;
  overflow: hidden;
  text-align: center;
  width: 95px;
  position: relative;
}

.logo a {
  background: url(/site/frontend/assets/images/sprite-icons.png) -146px -1px no-repeat;
  width: 91px;
  height: 95px;
  display: inline-block;
  overflow: hidden;
  text-indent: -900px;
  margin: 12px 0;
}

.lang {
  float: right;
  overflow: hidden;
  width: 47px;
  height: 24px;
  text-indent: -500px;
  padding: 0 !important;
  margin: 13px 13px 0 0;
  background: url(/site/frontend/assets/images/sprite-icons.png) 0 -24px no-repeat #fff;
}

.sv {
  background-position: 0 0;
}

#header_wrapper {
  position: fixed;
  top: 0;
  z-index: 999;
  background: #fff;
  height: 127px;
}

.img_wrapper img {
  width: 100%;
  height: auto;
  margin: 0;
  display: block;
}

#fs_search_query_field {
  width: 80%;
}

#fs_search_button {
  width: 10%;
  text-transform: uppercase;
  color: #fff;
  background: #618893;
  font-family: acumin-pro-semi-condensed, arial, sans-serif;
  font-size: 0.7em;
  padding: 9px 10px;
  border: none;
  padding-bottom: 10px;
}

.fs_search-form {
  border-bottom: 1px solid #add8e6;
  padding-bottom: 1em;
  margin-bottom: 1em;
}

.fs_search-wrapper form {
  display: flex;
}

.category-description {
  font-size: 16px;
  padding: 0 15px;
}

.category-description p {
  color: #9b4b01;
}

@media (min-width: 700px) {
  .category-description {
    width: 75%;
  }
}
.container:before {
  content: " ";
  display: table;
}

form {
  overflow: hidden;
}

.newscategories-title {
  display: none;
}

.newscategories {
  overflow: hidden;
  text-transform: uppercase;
  font-size: 0.7em;
}

.newscategories-title a {
  margin: 0;
}

.cart-icon,
.search-icon {
  position: absolute;
  right: 10px;
  top: 45px;
  width: 25px;
  height: 25px;
  display: none;
}

.cart-icon a,
.search-icon a {
  width: 25px;
  height: 25px;
  display: block;
  background: url(/site/frontend/assets/images/cart-icon.svg) no-repeat;
}

.menu_link {
  position: relative;
}

.cart-info,
.search-info {
  position: absolute;
  top: 100%;
  left: -1px;
  width: 100%;
  margin-top: 1px;
  padding: 10px 20px;
  background: #fff;
  text-align: left;
  border: 1px solid #add8e6;
  border-top: none;
  font-size: 14px;
  box-sizing: border-box;
}

.search-info .fs_search-form {
  border-bottom: none;
  padding: 1rem 0;
  margin-bottom: 0;
}

.search-info #fs_search_button {
  width: auto;
}

.top-nav-right .menu_link .cart-link a {
  width: auto;
  float: none;
  border-right: none;
  padding: 0;
}

.search-icon {
  right: 45px;
}

.search-icon a {
  background: url(/site/frontend/assets/images/search-icon.svg) no-repeat;
}

.lang.mobile-menu {
  position: absolute;
  left: 52px;
  top: 9px;
  margin: 0;
  width: 20px;
  display: none;
  height: 14px;
  background-position: 0 -48px;
}

#notice {
  position: absolute;
  top: 129px;
  z-index: 97;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  width: 100%;
  padding: 7px 0;
}

#notice h4, #notice .h4 {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 0;
  color: #9b2226;
  display: inline-block;
}

#notice h5, #notice .h5 {
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 0;
  display: inline-block;
}

@media screen and (min-width: 667px) {
  #notice h4, #notice .h4 {
    font-size: 16px;
  }
}
@media screen and (max-width: 1350px) {
  .wrapper-shop .container {
    width: 90%;
    padding: 1em 0 0;
  }
  .mainbar,
  .sidebar,
  .wrapper-shop .mainbar,
  .wrapper-shop .sidebar {
    width: 100%;
    margin-bottom: 1em;
  }
  .breadcrumbs {
    display: none;
  }
  .sidebar ul li {
    float: left;
    padding-right: 10px;
  }
  .sidebar ul li:after {
    content: "/";
    float: right;
    margin-left: 10px;
    color: #dec4af;
  }
  .sidebar ul li:last-child:after {
    content: "";
    margin-right: 0;
  }
  .category-description {
    padding: 0;
  }
}
@media screen and (max-width: 1300px) {
  .container {
    width: 90%;
  }
}
@media screen and (max-width: 1024px) {
  .top-nav {
    width: 35%;
  }
}
@media screen and (max-width: 770px) {
  .lang.mobile-menu {
    display: block;
    top: 49px;
  }
  #min_menu_wrapper {
    display: block;
  }
  .nav-toggle-wrapper {
    display: block;
    top: 45px;
  }
  .loaded,
  .top-nav {
    display: none !important;
  }
  #fs_search_query_field {
    width: 78%;
    box-sizing: border-box;
  }
  #fs_search_button {
    width: 20%;
  }
  .floating_title {
    font-size: 2.2em;
    display: none;
  }
  .cat_title {
    display: none;
  }
  .submenu-1 {
    width: 100%;
  }
  .sec_menu ul li {
    display: inline-block;
  }
  .social-media-bar {
    width: 100%;
    margin: 0;
  }
  #min_menu_wrapper {
    width: 100%;
    max-height: none;
    overflow: hidden;
  }
  #min_menu_wrapper .newscategories li {
    width: 33.3%;
  }
  #sub-container {
    margin-top: 0;
  }
  #min_menu_wrapper {
    margin-top: 127px;
  }
  .cart-icon,
  .search-icon {
    display: block;
  }
}
@media screen and (max-width: 450px) {
  .lang.mobile-menu {
    top: 9px;
  }
  .container {
    padding: 1.5em 0;
  }
  .newscategories {
    max-height: 0;
    margin: 0;
  }
  .newscategories li {
    opacity: 0;
  }
  .newscategories-title {
    display: block;
  }
  #fs_search_button,
  #fs_search_query_field {
    width: 100%;
    margin-bottom: 0.5em;
  }
  #header_wrapper {
    height: 50px;
  }
  .logo {
    height: 25px;
    width: 95px;
    margin: 10px auto;
    text-align: center;
  }
  .logo a {
    top: -67px;
    left: 0;
    position: absolute;
  }
  #min_menu_wrapper {
    margin-top: 50px;
  }
  .nav-toggle-wrapper {
    top: 5px;
  }
  #min_menu_wrapper .newscategories li {
    width: 50%;
  }
  .cart-icon,
  .search-icon {
    top: 5px;
  }
  #notice {
    position: relative;
    top: 0;
    line-height: 1em;
    font-size: 13px;
  }
}
.menu_link a {
  position: relative;
}

.social-media-bar {
  position: relative;
  clear: left;
  padding-top: 1rem;
  padding-bottom: 2rem;
  overflow: hidden;
  border-top: none;
  height: 30px;
  float: left;
  width: 100%;
}

.social-media-bar a {
  text-decoration: none !important;
}

.social-media-bar .facebook,
.social-media-bar .pinterest {
  background: url(/site/frontend/assets/images/sprite_kero.png) no-repeat;
  position: relative;
  float: left;
  height: 26px;
  width: 23px;
  margin-right: 3px;
  outline: 0;
}

.social-media-bar .linked_in {
  display: none;
}

.social-media-bar a.facebook {
  background-position: -2px 0;
}

.social-media-bar a.pinterest {
  background-position: -50px 0;
}

* {
  margin: 0;
  padding: 0;
}

p {
  margin: 1em 0;
}

a {
  text-decoration: none;
  color: #000;
}

img {
  border: 0;
}

ul {
  list-style: none;
}

h1, .h1,
h3,
.h3 {
  font-weight: 400;
  margin: 0 0 1em;
  color: #000;
  line-height: 1em;
}

.fancybox-wrapper {
  max-width: 500px;
  color: #000;
}

#header,
.container {
  margin: 0 auto;
  width: 1000px;
  height: auto;
}

#header {
  width: 100%;
  position: relative;
}

.wrapper {
  width: 100%;
  position: relative;
}

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

.container {
  position: relative;
  padding: 2.5em 0;
  overflow: hidden;
}

.container p {
  color: #646464;
}

#sub-container {
  border-top: none;
}

.blue-border {
  border-bottom: 1px solid #add8e6;
  border-top: 1px solid #add8e6;
  background: #fff;
}

.serif {
  font-family: adobe-garamond-pro, Times-new-roman, serif;
}

#sub-container {
  margin-top: 127px;
}

.sec_menu {
  text-align: center;
  margin-bottom: 2em;
}

.sec_menu ul li {
  display: inline;
  font-family: acumin-pro, arial, sans-serif;
}

@media screen and (max-width: 812px) {
  .sec_menu ul li:after {
    content: "/";
    margin: 0 10px;
    color: #dec4af;
    font-size: 17px;
  }
}
.newscategories.sec_menu ul li:after {
  color: #d81e2b;
  font-size: 12px;
  content: "|";
  padding: 0 8px;
}

.sec_menu ul li:last-child:after {
  content: "";
  margin-right: 0;
}

input {
  padding: 10px;
  border: 1px solid #eee;
  color: #a9a9a9;
  font-family: acumin-pro, arial, sans-serif;
}

input[type=text] {
  border: 1px solid #646464;
}

.img_wrapper {
  position: relative;
}

.img_wrapper p {
  margin: 0;
}

.load-more {
  margin: 1em 0 0;
  display: block;
}

.hidden {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.visible {
  max-height: none !important;
  opacity: 1 !important;
}

.loaded {
  color: #fff !important;
}

.floating_title {
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
  padding: 0 10%;
  font-family: adobe-garamond-pro, Times-new-roman, serif;
  position: absolute;
}

.floating_title {
  font-weight: 700;
  font-size: 5em;
  text-transform: uppercase;
  width: 60%;
  line-height: 1em;
  margin: 0 auto;
}

.floating_title {
  text-transform: none;
  width: auto;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.1em;
}

.floating_title {
  color: #fff;
  width: 80%;
  overflow: hidden;
}

.red {
  color: #d81e2b;
}

.nav-toggle-wrapper {
  position: absolute;
  left: 10px;
  top: 5px;
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  display: none;
}

.nav-toggle {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 20px;
  height: 24px;
  font-size: 0;
  text-indent: -9999px;
  float: right;
  margin-left: 10px;
}

.nav-toggle span {
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 2px;
  background: #000;
}

.nav-toggle span::after,
.nav-toggle span::before {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  content: "";
}

.nav-toggle span::before {
  top: -5px;
}

.nav-toggle span::after {
  bottom: -5px;
}

#min_menu_wrapper {
  width: 100%;
  max-height: 0;
  height: 0;
  overflow: hidden;
  margin: 0;
  display: none;
}

#min_menu_wrapper .menu_link {
  overflow: hidden;
  margin-bottom: 18px;
}

#min_menu_wrapper .menu_link a {
  border-right: 1px solid #fff;
  padding: 18px 0;
  font-size: 18px;
}

#min_menu_wrapper ul li {
  width: 100%;
}

#min_menu_wrapper ul li a {
  display: inline-block;
  float: left;
  padding: 0 25px 15px;
  box-sizing: border-box;
  width: 100%;
  border: none;
  font-size: 14px;
  text-align: left;
  font-family: adobe-garamond-pro, Times-new-roman, serif;
  line-height: 1em;
}

#min_menu_wrapper > ul.submenu-0 li a {
  font-size: 18px;
  padding: 20px 15px;
  border-top: 1px solid #add8e6;
}

.min-menu-tab-wrapper {
  float: left;
  width: 100%;
}

.min-menu-tabs {
  background: #ddd;
  color: #000 !important;
}

#min_menu_wrapper .loaded {
  display: block !important;
  background: #fff;
  color: #000;
}

#min_menu_wrapper .newscategories-title,
#min_menu_wrapper ul li:after {
  display: none;
}

#min_menu_wrapper .newscategories {
  max-height: none;
}

#min_menu_wrapper .newscategories li {
  opacity: 1;
  float: left;
}

#min_menu_wrapper .newscategories li a {
  font-family: acumin-pro, arial, sans-serif;
  font-size: 0.9em;
}

.top-nav {
  top: 0;
  left: 0;
  position: absolute;
  text-align: center;
  border-left: 1px solid #add8e6;
  border-right: 1px solid #add8e6;
  width: 25%;
}

.top-nav-right {
  left: auto;
  right: 0;
}

.top-nav .menu_link {
  width: 100%;
  float: left;
}

.top-nav a {
  text-align: center;
  box-sizing: border-box;
}

.top-nav .top {
  border-bottom: 1px solid #add8e6;
  overflow: hidden;
  height: 45px;
}

.menu_link p,
.top-nav .top p {
  margin: 0;
}

.top-nav .top a {
  padding: 10px 0;
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  margin-right: 10px;
  font-weight: 700;
}

.cart-link,
.menu_link a {
  display: inline-block;
  width: 33.33%;
  float: left;
  margin: 0;
  border-right: 1px solid #add8e6;
  padding: 28px 10px;
  font-size: 19px;
  font-family: adobe-garamond-pro, Times-new-roman, serif;
  box-sizing: border-box;
  text-align: center;
  max-height: 82px;
}

.menu_link a:last-child {
  border: none;
}

.cart-link,
.top-nav-right .menu_link a {
  font-size: 16px;
  width: 33.3%;
}

.top-nav .top a.red {
  color: #9b2226;
}

.logo {
  margin: 0 auto;
  display: block;
  overflow: hidden;
  text-align: center;
  width: 95px;
  position: relative;
}

.logo a {
  background: url(/site/frontend/assets/images/sprite-icons.png) -146px -1px no-repeat;
  width: 91px;
  height: 95px;
  display: inline-block;
  overflow: hidden;
  text-indent: -900px;
  margin: 12px 0;
}

.lang {
  float: right;
  overflow: hidden;
  width: 47px;
  height: 24px;
  text-indent: -500px;
  padding: 0 !important;
  margin: 13px 13px 0 0;
  background: url(/site/frontend/assets/images/sprite-icons.png) 0 -24px no-repeat #fff;
}

.sv {
  background-position: 0 0;
}

#header_wrapper {
  position: fixed;
  top: 0;
  z-index: 999;
  background: #fff;
  height: 127px;
}

.yc-listing {
  margin-bottom: 2em;
}

.yc-listing .yc-listing-item,
.yc-listing-item {
  clear: none !important;
  border: none !important;
  float: left;
  width: 48%;
  margin: 0 1% 4em;
  overflow: hidden;
  position: relative;
}

.yc-listing-item .yc-listing-image {
  margin: 0;
  width: 100%;
  height: 325px;
  overflow: hidden;
  margin-bottom: 0.8em;
  text-align: center;
  background-position: center center;
  background-repeat: no-repeat;
}

#news .yc-listing-item .yc-listing-image {
  height: 325px;
  background-size: cover !important;
}

.img_wrapper img {
  width: 100%;
  height: auto;
  margin: 0;
  display: block;
}

.yc-listing-item .yc-listing-item-content {
  float: none;
  width: 100%;
  text-align: left;
  margin: 0 auto;
  overflow: hidden;
}

#fs_search_query_field {
  width: 80%;
}

#fs_search_button {
  width: 10%;
  text-transform: uppercase;
  color: #fff;
  background: #618893;
  font-family: acumin-pro-semi-condensed, arial, sans-serif;
  font-size: 0.7em;
  padding: 9px 10px;
  border: none;
  padding-bottom: 10px;
}

.fs_search-form {
  border-bottom: 1px solid #add8e6;
  padding-bottom: 1em;
  margin-bottom: 1em;
}

.fs_search-wrapper form {
  display: flex;
}

#news .yc-listing .yc-listing-item {
  width: 31.33%;
  margin: 0 1% 25px;
}

#news .yc-listing .yc-listing-item:first-child,
#news .yc-listing .yc-listing-item:first-child .yc-listing-item-content {
  width: 100%;
  margin: 0;
}

#news .yc-listing .yc-listing-item:first-child .h1 {
  text-align: left;
  margin-bottom: 0.6em;
  font-weight: 400;
  color: #000;
  font-size: 26px;
  padding-bottom: 0.4em;
  line-height: 1em;
  font-family: acumin-pro, arial, sans-serif;
  border-bottom: 1px solid #de111e;
}

#news .yc-listing .yc-listing-item:first-child .yc-listing-image,
#news .yc-listing .yc-listing-item:first-child .yc-listing-text {
  width: 50%;
  float: right;
}

#news .yc-listing .yc-listing-item:first-child .yc-listing-text {
  width: 45%;
  margin-right: 5%;
  text-align: left;
  font-size: 18px;
}

.container:before {
  content: " ";
  display: table;
}

form {
  overflow: hidden;
}

.newscategories-title {
  display: none;
}

.newscategories {
  overflow: hidden;
  text-transform: uppercase;
  font-size: 0.7em;
}

.newscategories-title a {
  margin: 0;
}

.cart-icon,
.search-icon {
  position: absolute;
  right: 10px;
  top: 45px;
  width: 25px;
  height: 25px;
  display: none;
}

.cart-icon a,
.search-icon a {
  width: 25px;
  height: 25px;
  display: block;
  background: url(/site/frontend/assets/images/cart-icon.svg) no-repeat;
}

.menu_link {
  position: relative;
}

.cart-info,
.search-info {
  position: absolute;
  top: 100%;
  left: -1px;
  width: 100%;
  margin-top: 1px;
  padding: 10px 20px;
  background: #fff;
  text-align: left;
  border: 1px solid #add8e6;
  border-top: none;
  font-size: 14px;
  box-sizing: border-box;
}

.search-info .fs_search-form {
  border-bottom: none;
  padding: 1rem 0;
  margin-bottom: 0;
}

.search-info #fs_search_button {
  width: auto;
}

.top-nav-right .menu_link .cart-link a {
  width: auto;
  float: none;
  border-right: none;
  padding: 0;
}

.search-icon {
  right: 45px;
}

.search-icon a {
  background: url(/site/frontend/assets/images/search-icon.svg) no-repeat;
}

.lang.mobile-menu {
  position: absolute;
  left: 52px;
  top: 9px;
  margin: 0;
  width: 20px;
  display: none;
  height: 14px;
  background-position: 0 -48px;
}

#notice {
  position: absolute;
  top: 129px;
  z-index: 97;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  width: 100%;
  padding: 7px 0;
}

#notice h4, #notice .h4 {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 0;
  color: #9b2226;
  display: inline-block;
}

#notice h5, #notice .h5 {
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 0;
  display: inline-block;
}

@media screen and (min-width: 667px) {
  #notice h4, #notice .h4 {
    font-size: 16px;
  }
}
.yc-small-listing {
  padding: 0 3% 3%;
}

.yc-small-listing .h1 {
  margin-bottom: 2em;
}

@media screen and (min-width: 1024px) {
  .yc-small-listing .yc-listing-item {
    width: 31%;
    margin: 0 1.15% 4em;
  }
}
@media screen and (max-width: 1300px) {
  .container {
    width: 90%;
  }
}
@media screen and (max-width: 1024px) {
  .yc-listing .yc-listing-item,
  .yc-listing-item {
    margin: 0 1%;
  }
  .top-nav {
    width: 35%;
  }
  #news .yc-listing .yc-listing-item {
    width: 48%;
  }
  #news .yc-listing .yc-listing-item:first-child .yc-listing-image,
  #news .yc-listing .yc-listing-item:first-child .yc-listing-text {
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 770px) {
  .campaign .text3 .text-centered {
    width: 100%;
    float: none;
    text-align: left;
    margin-bottom: 2rem;
  }
  .campaign .text3 img {
    float: none;
  }
  .lang.mobile-menu {
    display: block;
    top: 49px;
  }
  #min_menu_wrapper {
    display: block;
  }
  #news .yc-listing .yc-listing-item,
  .yc-listing-item {
    margin: 0 0 1em;
    width: 100%;
    border: none;
    padding-top: 0;
  }
  #news .yc-listing-item .yc-listing-image,
  .yc-listing-item .yc-listing-image {
    height: 155px;
    background-size: cover !important;
  }
  .yc-listing-item .yc-listing-item-content {
    max-height: 43px;
  }
  .yc-listing-item .yc-listing-item-content:first-child {
    max-height: none;
  }
  .nav-toggle-wrapper {
    display: block;
    top: 45px;
  }
  .loaded,
  .top-nav {
    display: none !important;
  }
  #fs_search_query_field {
    width: 78%;
    box-sizing: border-box;
  }
  #fs_search_button {
    width: 20%;
  }
  .floating_title {
    font-size: 2.2em;
    display: none;
  }
  .sec_menu ul li {
    display: inline-block;
  }
  .social-media-bar {
    width: 100%;
    margin: 0;
  }
  #min_menu_wrapper {
    width: 100%;
    max-height: none;
    overflow: hidden;
  }
  #min_menu_wrapper .newscategories li {
    width: 33.3%;
  }
  #sub-container {
    margin-top: 0;
  }
  #min_menu_wrapper {
    margin-top: 127px;
  }
  .cart-icon,
  .search-icon {
    display: block;
  }
}
@media screen and (max-width: 450px) {
  .lang.mobile-menu {
    top: 9px;
  }
  .container {
    padding: 1.5em 0;
  }
  .newscategories {
    max-height: 0;
    margin: 0;
  }
  .newscategories li {
    opacity: 0;
  }
  .newscategories-title {
    display: block;
  }
  #fs_search_button,
  #fs_search_query_field {
    width: 100%;
    margin-bottom: 0.5em;
  }
  .yc-listing-item .yc-listing-image {
    height: 125px;
  }
  #news .yc-listing-item .yc-listing-image,
  .yc-listing-item .yc-listing-image {
    height: 125px;
  }
  #header_wrapper {
    height: 50px;
  }
  .logo {
    height: 25px;
    width: 95px;
    margin: 10px auto;
    text-align: center;
  }
  .logo a {
    top: -67px;
    left: 0;
    position: absolute;
  }
  #min_menu_wrapper {
    margin-top: 50px;
  }
  .nav-toggle-wrapper {
    top: 5px;
  }
  #min_menu_wrapper .newscategories li {
    width: 50%;
  }
  .cart-icon,
  .search-icon {
    top: 5px;
  }
  #notice {
    position: relative;
    top: 0;
    line-height: 1em;
    font-size: 13px;
  }
}
.menu_link a {
  position: relative;
}

.wrapper-shop .sidebar {
  display: block !important;
}

.clear {
  clear: both;
  height: 7px;
  overflow: hidden;
}

ul {
  list-style: none;
}

.h1 h2,
.h2,
h1,
.h1,
h3,
.h3 {
  font-weight: 400;
  margin: 0 0 1em;
  color: #000;
  line-height: 1em;
}

.fancybox-overlay {
  background: url(/site/frontend/assets/images/sprite-kartong.jpg) !important;
  opacity: 0.9;
}

.fancybox-wrap .fancybox-skin .fancybox-close {
  background-position: -225px 6px;
  background-image: url(/site/frontend/assets/images/sprite-icons.png);
}

.fancybox-opened .fancybox-skin {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}

.fancybox-inner,
.fancybox-wrap,
.fancybox-wrapper {
  max-width: 500px;
  color: #000;
}

.fancybox-wrap .fancybox-skin {
  background-color: #fff;
}

.fancybox-wrap .fancybox-skin::before {
  background: url(/site/frontend/assets/images/erbjudande-till-jul.png) no-repeat;
  width: 350px;
  height: 57px;
  content: "";
  position: absolute;
  top: -50px;
  left: -15px;
  background-size: cover;
}

.fancybox-wrap .fancybox-skin::after {
  background: url(/site/frontend/assets/images/sista-bestallningsdatum.png) no-repeat;
  width: 340px;
  height: 30px;
  content: "";
  position: absolute;
  bottom: -45px;
  left: -15px;
  background-size: cover;
}

.fancybox-inner .fancybox-wrapper h3, .fancybox-inner .fancybox-wrapper .h3 {
  font-size: 1.8em;
  text-transform: uppercase;
  font-weight: 700;
  color: #986236;
  line-height: 1.2;
  font-family: acumin-pro-condensed, arial, sans-serif;
}

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

@media screen and (min-width: 667px) {
  .fancybox-inner .fancybox-wrapper h3, .fancybox-inner .fancybox-wrapper .h3 {
    font-size: 2em;
  }
  .fancybox-wrap .fancybox-skin::before {
    width: 502px;
    height: 88px;
    top: -70px;
    left: -25px;
  }
  .fancybox-wrap .fancybox-skin::after {
    width: 500px;
    height: 41px;
    bottom: -70px;
    left: -25px;
  }
}
.fancy-notice {
  max-width: 400px;
  font-size: 15px;
  line-height: 1.2em;
  display: none;
}

.fancybox .fancy-notice {
  display: block;
}

.fancy-notice h4, .fancy-notice .h4 {
  font-size: 23px;
  text-transform: uppercase;
  color: #9b2226;
  margin-top: 15px;
}

.fancy-notice h5, .fancy-notice .h5 {
  font-size: 17px;
  margin: 5px 0 10px;
}

.fancy-notice .badge {
  display: table;
  margin-top: 35px;
  line-height: 1em;
}

.fancy-notice .badge img {
  float: left;
  margin-right: 15px;
}

.fancy-notice .badge span {
  vertical-align: middle;
  display: table-cell;
  font-weight: 700;
}

.fancybox-skin {
  padding: 35px !important;
  border-radius: 0 !important;
}

.fancybox-wrap .fancybox-close {
  top: 10px;
  right: 10px;
  background-position: 15px -154px;
  height: 25px;
  background-image: url(/yc/modules/admin/assets/js/plugins/fancybox/fancybox_sprite.png);
  background-size: initial;
}

.logged_user #notice {
  display: none;
}

.cookie-kero-notice {
  width: 1024px;
  height: 634px;
  display: block;
}

.cookie-kero-notice h4, .cookie-kero-notice .h4 {
  line-height: 1em;
  margin-bottom: 15px;
}

.cookie-kero-notice .logo {
  margin: 0;
}

.mainbar a {
  display: inline;
}

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

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

.only_mobile {
  display: none;
}

.only_mobile .container {
  padding-bottom: 0;
}

.issuuembed,
iframe {
  max-width: 100%;
}

.article form a,
.social-media-bar-inner a {
  text-shadow: none;
  box-shadow: none;
  display: inline-block;
}

a.blurb-link {
  display: block;
  overflow: hidden;
}

.bg-img {
  height: 300px;
  display: block;
  overflow: hidden;
  position: relative;
}

.bg-img img {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transition: all 0.3s;
}

#map {
  width: 100%;
  height: 400px;
}

.mainbar .h1,
.mainbar h1 {
  font-size: 1.9em;
}

.boiler .h1,
.boiler h1 {
  font-family: acumin-pro, arial, sans-serif;
}

.mainbar .h2,
.mainbar h2,
table h2,
table .h2 {
  font-family: acumin-pro, arial, sans-serif;
  text-transform: uppercase;
  font-size: 0.8em;
  letter-spacing: 1px;
}

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

#footer,
#header,
#media,
.container {
  margin: 0 auto;
  width: 1000px;
  height: auto;
}

#header {
  width: 100%;
  position: relative;
}

.wrapper {
  width: 100%;
  position: relative;
}

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

.container {
  position: relative;
  padding: 2.5em 0;
  overflow: hidden;
}

.container p {
  color: #646464;
}

#sub-container {
  border-top: none;
}

#sub-container .container {
  width: 1350px;
}

.grey {
  background: #fff9f4;
}

hr {
  margin: 1em 0;
  border: none;
  border-bottom: 1px solid #ddd;
}

.title {
  margin: 1em 0 2.5em;
  border-bottom: 1px solid #ddd;
  overflow: hidden;
  width: 100%;
  padding: 2.5em 0 1em;
}

.title h2, .title .h2 {
  font-weight: 400;
}

.btn,
.button {
  padding: 15px 25px;
  text-transform: uppercase;
  color: #fff;
  background: #618893;
  font-size: 0.7em;
  text-decoration: none;
  font-family: acumin-pro-semi-condensed, arial, sans-serif;
  margin: 0.5em 0;
  display: inline-block;
  transition: background 0.3s;
  min-width: 25%;
  text-align: center;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  line-height: 1em;
  letter-spacing: 1px;
  position: relative;
  outline: 0;
}

.button:hover {
  background: #000;
}

.blue-border {
  border-bottom: 1px solid #add8e6;
  border-top: 1px solid #add8e6;
  background: #fff;
}

.read-more {
  margin: 1em 0;
}

.serif {
  font-family: adobe-garamond-pro, Times-new-roman, serif;
}

h2.serif, .serif.h2 {
  width: 70%;
  margin: 0 15%;
  text-align: center;
  font-size: 1.3em;
  font-weight: 400;
}

.cat_title {
  display: block;
  float: left;
  width: 12%;
  margin-right: 2.5%;
  font-family: adobe-garamond-pro, Times-new-roman, serif;
  text-align: left;
  text-transform: uppercase;
  margin-top: 0;
}

@media screen and (min-width: 813px) {
  .cat_title {
    margin-top: 15px;
  }
}
.sidebar {
  float: left;
  width: 30%;
  line-height: 30px;
}

.sidebar ul {
  list-style: none;
  font-size: 0.9em;
  line-height: 1.6em;
}

.active {
  color: #e63446;
}

blockquote {
  display: block;
  background: #fff;
  padding: 20px 20px 15px 45px;
  position: relative;
  font-size: 18px !important;
  font-weight: 200;
  line-height: 1.4;
  font-size: 16px;
  color: #666;
  margin: 15px 0 15px 20px;
  width: 40%;
  float: right;
  border-top: 1px dotted #ddd;
  border-bottom: 1px dotted #ddd;
}

blockquote::before {
  content: "“";
  font-size: 60px;
  font-weight: 700;
  color: #7f5039;
  position: absolute;
  left: 0;
  top: 5px;
}

blockquote h2, blockquote .h2 {
  color: #de111e;
}

blockquote::after {
  content: "";
}

blockquote a {
  cursor: pointer;
  padding: 0 3px;
  color: #de111e;
  font-size: smaller;
}

blockquote a:hover {
  color: #999;
}

blockquote em {
  font-style: italic;
}

.mainbar {
  float: right;
  width: 70%;
  margin-bottom: 2em;
}

.article,
.product_monitor {
  width: 55%;
  float: left;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 1em;
}

#monitor-start,
#sub-container {
  margin-top: 127px;
}

.boiler {
  text-align: center;
  width: 55%;
}

.boiler .h1,
.boiler h1 {
  font-size: 1.7em;
  font-weight: 400;
  color: #000;
}

.boiler .h1::after,
.boiler h1::after {
  content: "";
  display: inherit;
  width: 50%;
  margin: 35px auto;
  border-top: 2px solid #de111e;
}

.boiler h2, .boiler .h2 {
  font-family: adobe-garamond-pro, Times-new-roman, serif;
  font-size: 1.3em;
}

.wrapper-shop {
  padding-bottom: 1em;
}

.wrapper-shop .container {
  width: 1350px;
}

.wrapper-shop .mainbar {
  width: 88%;
}

.wrapper-shop .sidebar {
  width: 12%;
  font-size: 1.1em;
}

.wrapper-shop .submenu-1 {
  text-align: left;
  font-family: adobe-garamond-pro, Times-new-roman, serif;
}

.wrapper-shop .sec_menu li {
  font-family: adobe-garamond-pro, Times-new-roman, serif;
}

.wrapper-shop .sec_menu {
  font-size: 1.1em;
  margin-bottom: -1px;
  padding: 2.5em 0 0;
}

@media screen and (min-width: 813px) {
  .wrapper-shop {
    padding-bottom: 0;
  }
  .wrapper-shop .sec_menu li {
    padding: 18px 32px;
    border: 1px solid #eaeaea;
    border-bottom-color: #add8e6;
    background: #f9f9f9;
    display: inline-block;
    opacity: 0.7;
  }
  .wrapper-shop .sec_menu li a {
    color: #303030;
  }
  .wrapper-shop .sec_menu li.active {
    background: #fff9f4;
    border-color: #add8e6;
    border-bottom-color: #fff9f4;
    opacity: 1;
  }
  .wrapper-shop .sec_menu li.active a {
    color: #ed3446;
  }
}
.product-header {
  cursor: pointer;
  box-sizing: border-box;
}

.product-header::after {
  content: "+";
  font-size: 1.5em;
  width: 5px;
  height: 5px;
  float: right;
  width: 20px;
  height: 25px;
  color: #618893;
  transition: 0.3s all;
}

.product-header.is-active::after {
  content: "—";
}

.delete {
  width: 20px;
  height: 20px;
  cursor: pointer;
  font-size: 0;
  position: relative;
  display: block;
}

.delete::after,
.delete::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
  width: 1px;
  margin: auto;
  transform: rotate(-45deg);
  background: #bd4f5c;
  transition: background 360ms ease-out;
}

.delete::after {
  transform: rotate(45deg);
}

.delete:hover::after,
.delete:hover::before {
  width: 3px;
}

.button:hover .btn:hover {
  background: #000;
}

.button:active .btn:active {
  background: #315863;
}

.btn-variant {
  border: none;
  cursor: pointer;
  display: inline-block;
  margin: 0.5em 0;
  padding: 0;
  position: relative;
  text-indent: -9999px;
  transition: all 0.2s;
  height: 37px;
  width: 37px;
  overflow: hidden;
  border: 1px solid #fff9f4;
}

.btn-variant-rod {
  background: #cc152f;
}
.btn-variant-rod:hover {
  background: #e62f49;
}

.btn-variant-orange {
  background: #e86c26;
}
.btn-variant-orange:hover {
  background: #f77d37;
}

.btn-variant-okra {
  background: #deab11;
}
.btn-variant-okra:hover {
  background: rgba(222, 171, 17, 0.6509803922);
}

.btn-variant-rosa {
  background: #ffc0cb;
}
.btn-variant-rosa:hover {
  background: rgba(255, 192, 203, 0.568627451);
}

.btn-variant-turkos {
  background: #40e0d0;
}
.btn-variant-turkos:hover {
  background: rgba(64, 224, 208, 0.6705882353);
}

.btn-variant-brun {
  background: #5c332a;
}
.btn-variant-brun:hover {
  background: #764d44;
}

.btn-variant-natur {
  background: #e1904e;
}
.btn-variant-natur:hover {
  background: #fbaa68;
}

.btn-variant-svart {
  background: #333;
}
.btn-variant-svart:hover {
  background: #4d4d4d;
}

.btn-variant-antik {
  background: #5c332a;
}
.btn-variant-antik:hover {
  background: #764d44;
}

.btn-variant-gron {
  background: #60805b;
}
.btn-variant-gron:hover {
  background: #7a9a75;
}

.btn-variant-gra {
  background: #bbb;
}
.btn-variant-gra:hover {
  background: #ddd;
}

.btn-variant-bla {
  background: #0858b6;
}
.btn-variant-bla:hover {
  background: #2161c1;
}

.btn-variant-gul {
  background: #fae400;
}
.btn-variant-gul:hover {
  background: #ffef20;
}

.btn-variant-massing {
  background: #e1c370;
}
.btn-variant-massing:hover {
  background: #ecce79;
}

.btn-variant-nickel {
  background: #adaca3;
}
.btn-variant-nickel:hover {
  background: #bcb9b0;
}

.btn-variant-vit {
  background: #fff;
  border: 1px solid #fde0ce;
}
.btn-variant-vit:hover {
  background: #fff;
}

.btn-variant-askbla {
  background: #839493;
}
.btn-variant-askbla:hover {
  background: #839493;
}

.btn-variant-askgra {
  background: #6b685f;
}
.btn-variant-askgra:hover {
  background: #6b685f;
}

.btn-variant-selected:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -12px;
  border-style: solid;
  border-width: 0 0 55px 55px;
  border-color: transparent transparent #fff9f4 transparent;
  opacity: 0.3;
  -webkit-transform: rotate(-10deg);
  animation: btn-select 0.8s;
  -webkit-animation: btn-select 0.8s;
}

@keyframes btn-select {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.3;
  }
}
.variant-tag {
  min-height: 1.5em;
  margin: 0 0 1em;
  position: relative;
  display: inline-block;
}

.variant-tag-color {
  display: inline-block;
  border: 1px solid #faddd2;
  color: #000;
  padding: 5px 15px;
  text-transform: uppercase;
  font-size: 0.8em;
  font-weight: 700;
  background: url(/site/frontend/assets/images/bk-after.png) no-repeat center center;
}

.article {
  width: 45%;
  float: right;
  padding-left: 5%;
  font-family: adobe-garamond-pro, Times-new-roman, serif;
  line-height: 1.5em;
}

.article .details {
  font-size: 0.8em;
  font-family: acumin-pro, arial, sans-serif;
}

.article .variant {
  color: #dec4af;
}

.article .h1,
.article h1 {
  font-size: 3.2em;
  font-weight: 400;
  color: #000;
  line-height: 1em;
  margin-bottom: 0;
  font-family: acumin-pro-semi-condensed, arial, sans-serif;
}

.article h3, .article .h3 {
  text-transform: uppercase;
  width: 100%;
  border-bottom: 1px solid #add8e6;
  margin: 1.5em 0;
  padding: 0 0 0.6em 0.4em;
  font-size: 0.8em;
  font-family: acumin-pro-semi-condensed, arial, sans-serif;
  letter-spacing: 1px;
}

.article .price {
  color: #618893;
  font-size: 1.7em;
}

.article select {
  border: 1px solid #add8e6;
  color: #646464;
  background: #fff9f4;
}

.article .variant-color {
  text-transform: uppercase;
  margin-top: 0.5em;
}

.article .button:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -8px;
  border-style: solid;
  border-width: 0 0 55px 55px;
  border-color: transparent transparent #fff9f4 transparent;
  opacity: 0.1;
  transform: rotate(-12deg);
  transition: 0.2s all;
  outline: 0;
}

.article .button:hover {
  background: #71949d;
  outline: 0;
}

.article .button:hover:after {
  transform: rotate(-70deg);
  transform: scale(2, 2);
  right: 20px;
}

.expanded {
  width: 100% !important;
  margin: 0 !important;
}

.expanded .h1,
.expanded h1 {
  font-family: acumin-pro, arial, sans-serif;
}

.breadcrumbs {
  font-weight: 700;
  font-size: 0.9em;
  width: 100%;
  float: left;
  margin-bottom: 1em;
}

.sec_menu {
  text-align: center;
  margin-bottom: 2em;
}

.breadcrumbs ul li,
.sec_menu ul li {
  display: inline;
  font-family: acumin-pro, arial, sans-serif;
}

.breadcrumbs ul li:after {
  content: "/";
  margin: 0 10px;
  color: #dec4af;
  font-size: 17px;
}

@media screen and (max-width: 812px) {
  .sec_menu ul li:after {
    content: "/";
    margin: 0 10px;
    color: #dec4af;
    font-size: 17px;
  }
}
.newscategories.sec_menu ul li:after {
  color: #d81e2b;
  font-size: 12px;
  content: "|";
  padding: 0 8px;
}

.breadcrumbs ul li:last-child:after,
.sec_menu ul li:last-child:after {
  content: "";
  margin-right: 0;
}

.breadcrumbs a {
  color: #dec4af;
}

input,
select,
textarea {
  padding: 10px;
  border: 1px solid #eee;
  color: #a9a9a9;
  font-family: acumin-pro, arial, sans-serif;
}

input[type=password],
input[type=text] {
  border: 1px solid #646464;
}

.img_wrapper {
  position: relative;
}

.img_wrapper p {
  margin: 0;
}

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

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

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

.load-more {
  margin: 1em 0 0;
  display: block;
}

.title-wrapper .load-more {
  font-size: 1.8em;
  display: inline-block;
}

.title-wrapper {
  overflow: hidden;
  margin-bottom: 1em;
}

.hidden {
  max-height: 0;
  opacity: 0;
  transition: all 0.3s;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.visible {
  max-height: none !important;
  opacity: 1 !important;
}

.loaded {
  color: #fff !important;
}

.top-grey-border {
  border-top: 1px solid #ddd;
  overflow: hidden;
}

.fadeout {
  position: relative;
  bottom: 1em;
  height: 1em;
  background: -webkit-linear-gradient(rgba(255, 255, 255, 0) 0, rgb(255, 255, 255) 100%);
  background-image: linear-gradient(rgba(255, 255, 255, 0) 0, rgb(255, 255, 255) 100%);
  background-image: -ms-linear-gradient(rgba(255, 255, 255, 0) 0, rgb(255, 255, 255) 100%);
}

.price {
  font-family: acumin-pro, arial, sans-serif;
  font-size: 14px;
}

#category .yc-listing-item {
  margin: 0 1% 1em;
  clear: none;
  float: left;
  border: none;
}

.grid-view #category .yc-listing-item .yc-listing-description {
  min-height: 90px;
  color: #000;
}

.flex-control-nav {
  bottom: 0 !important;
  width: 102% !important;
}

.body .flexslider {
  margin: 0 !important;
  overflow: hidden;
  background: 0 0 !important;
  border-radius: 0;
}

.flex-control-thumbs li,
.flexslider .slides li,
.slides {
  background: #fff;
  position: relative;
}

.flex-direction-nav a {
  background-color: transparent;
  text-indent: 500px;
}

#monitor-start .flex-direction-nav a:before {
  background: url(/site/frontend/assets/images/sprite-icons.png) no-repeat -65px 0;
  width: 7px;
  height: 16px;
  left: 27px;
  position: absolute;
  top: 23px;
}

#monitor-start .flex-direction-nav a.flex-next:before {
  background-position: -72px 0;
}

.flex-direction-nav .flex-next,
.flex-direction-nav .flex-prev {
  font-size: 0;
  background: rgba(0, 0, 0, 0.6196078431);
  border-radius: 50%;
}

.flex-direction-nav .flex-prev {
  left: -36px;
}

.flex-direction-nav .flex-next {
  background-position: 100% 0;
  right: -36px;
}

.wrapper .flex-control-paging li a {
  height: 30px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0;
  box-shadow: none;
  position: relative;
}

.flex-control-paging li a {
  width: 6px !important;
}

.wrapper .flex-control-paging li a.flex-active {
  background: #fff;
}

.template_start .flex-control-nav {
  display: none;
}

.monitor .slides li {
  position: relative;
}

.monitor-banner {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  z-index: 999;
  width: 100%;
  padding: 0.25rem 0;
  font-weight: 700;
  text-align: center;
  box-sizing: border-box;
  line-height: 1em;
}

.monitor-banner h4, .monitor-banner .h4,
.monitor-banner h5,
.monitor-banner .h5 {
  display: inline-block;
}

.monitor-banner h4, .monitor-banner .h4 {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 0;
  color: #9b2226;
}

@media screen and (min-width: 768px) {
  .monitor-banner h4, .monitor-banner .h4 {
    font-size: 16px;
  }
  .monitor-banner {
    padding: 1rem 0;
  }
}
.mainbar .flexslider .slides .img_title {
  display: none;
}

.mainbar .flex-control-thumbs {
  margin: 0;
}

.slider .flex-control-thumbs li {
  position: relative;
  height: 150px;
  width: 23%;
  overflow: hidden;
  margin: 2% 2% 0 0;
}

.slider .flex-direction-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

.mainbar .slider .flex-direction-nav {
  top: 30%;
  transform: translateY(-30%);
  z-index: 2;
}

.flex-control-thumbs li img {
  position: absolute;
  top: 40%;
  right: 0;
  transform: translateY(-40%);
}

.flex-caption {
  position: absolute;
  top: 65%;
  right: 0;
  transform: translateY(-55%);
  width: 100%;
  color: #fff;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

#sub-container .flex-caption,
.floating_title {
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
  padding: 0 10%;
  font-family: adobe-garamond-pro, Times-new-roman, serif;
  position: absolute;
}

.flex-caption-description,
.flex-caption-name {
  width: 50%;
  display: inline-block;
}

.flex-caption-description {
  font-family: adobe-garamond-pro, Times-new-roman, serif;
  font-size: 2.2em;
  padding-bottom: 15px;
  line-height: 1em;
}

.flex-caption-name,
.floating_title {
  font-weight: 700;
  font-size: 5em;
  text-transform: uppercase;
  width: 60%;
  line-height: 1em;
  margin: 0 auto;
}

#sub-container .flex-caption-name,
.floating_title {
  text-transform: none;
  width: auto;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.1em;
}

.floating_title {
  color: #fff;
  width: 80%;
  overflow: hidden;
}

.textbox_description {
  font-family: adobe-garamond-pro, Times-new-roman, serif;
  font-size: 2em;
  padding-bottom: 10px;
}

.template_start .flex-caption-name::after {
  content: "";
  display: inherit;
  width: 25%;
  margin: 0.4em 35%;
  border-top: 3px solid #fff;
}

.flex-caption-name span {
  padding: 25px 0 0;
  display: inherit;
}

@media screen and (min-width: 1024px) {
  .flex-caption {
    text-shadow: 1px 1px #050a03;
  }
  .template_start .flex-caption-name::after {
    box-shadow: 1px 1px #050a03;
  }
}
.footer_wrapper {
  text-align: center;
  background-color: #fff;
  font-family: adobe-garamond-pro, Times-new-roman, serif;
  font-size: 0.9em;
  color: #818181;
}

.footer_wrapper .menu_link a {
  width: 25%;
}

.footer_wrapper .menu_link a:first-child {
  border-left: 1px solid #add8e6;
}

#footer_center h4, #footer_center .h4 {
  border: none;
  margin-top: 1em;
  font-size: 25px;
  padding: 0;
}

.footer_wrapper .img_wrapper {
  margin: 1em 0;
}

.red {
  color: #d81e2b;
}

#footer_center {
  overflow: hidden;
}

#footer_center .footer_column {
  width: 33.33%;
  float: left;
  box-sizing: border-box;
  padding: 0 5%;
  min-height: 280px;
  position: relative;
}

#footer_center input {
  margin: 1em;
  width: 80%;
}

.logo_footer {
  background: url(/site/frontend/assets/images/sprite-icons.png) no-repeat center -92px;
  border: 1px solid #add8e6;
  border-top: none;
  border-bottom: none;
  padding: 1em 0;
}

.original-wrapper {
  padding: 1em 0;
}

.nav-toggle-wrapper {
  position: absolute;
  left: 10px;
  top: 5px;
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: none;
}

.nav-toggle {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 20px;
  height: 24px;
  font-size: 0;
  text-indent: -9999px;
  float: right;
  margin-left: 10px;
}

.nav-toggle span {
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 2px;
  background: #000;
  transition: background 0 0.3s;
}

.nav-toggle span::after,
.nav-toggle span::before {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  content: "";
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0;
}

.nav-toggle span::before {
  top: -5px;
  transition-property: top, transform;
}

.nav-toggle span::after {
  bottom: -5px;
  transition-property: bottom, transform;
}

.nav-toggle:focus {
  outline: 0;
}

.nav-toggle.is-active span {
  background: 0 0;
}

.nav-toggle.is-active span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.is-active span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.nav-toggle.is-active span::after,
.nav-toggle.is-active span::before {
  transition-delay: 0, 0.3s;
}

#min_menu_wrapper {
  width: 100%;
  max-height: 0;
  height: 0;
  overflow: hidden;
  transition: 0.2s all;
  margin: 0;
  display: none;
}

#min_menu_wrapper.is-active {
  height: auto;
  max-height: none;
  margin-top: 125px;
}

#min_menu_wrapper .menu_link {
  overflow: hidden;
  margin-bottom: 18px;
}

#min_menu_wrapper .menu_link a {
  border-right: 1px solid #fff;
  padding: 18px 0;
  font-size: 18px;
}

#min_menu_wrapper ul li {
  width: 100%;
}

#min_menu_wrapper ul li a {
  display: inline-block;
  float: left;
  padding: 0 25px 15px;
  box-sizing: border-box;
  width: 100%;
  border: none;
  font-size: 14px;
  text-align: left;
  font-family: adobe-garamond-pro, Times-new-roman, serif;
  line-height: 1em;
}

#min_menu_wrapper > ul.submenu-0 li a {
  font-size: 18px;
  padding: 20px 15px;
  border-top: 1px solid #add8e6;
}

.min-menu-tab-wrapper {
  float: left;
  width: 100%;
}

.min-menu-tabs {
  background: #ddd;
  color: #000 !important;
}

#min_menu_wrapper .loaded {
  display: block !important;
  background: #fff;
  color: #000;
}

#min_menu_wrapper .newscategories-title,
#min_menu_wrapper ul li:after {
  display: none;
}

#min_menu_wrapper .newscategories {
  max-height: none;
}

#min_menu_wrapper .newscategories li {
  opacity: 1;
  float: left;
}

#min_menu_wrapper .newscategories li a {
  font-family: acumin-pro, arial, sans-serif;
  font-size: 0.9em;
}

.top-nav {
  top: 0;
  left: 0;
  position: absolute;
  text-align: center;
  border-left: 1px solid #add8e6;
  border-right: 1px solid #add8e6;
  width: 25%;
}

.top-nav-right {
  left: auto;
  right: 0;
}

.top-nav .menu_link {
  width: 100%;
  float: left;
}

.top-nav a {
  text-align: center;
  box-sizing: border-box;
}

.top-nav .top {
  border-bottom: 1px solid #add8e6;
  overflow: hidden;
  height: 45px;
}

.menu_link p,
.top-nav .top p {
  margin: 0;
}

.top-nav .top a {
  padding: 10px 0;
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  margin-right: 10px;
  font-weight: 700;
}

.cart-link,
.menu_link a {
  display: inline-block;
  width: 33.33%;
  float: left;
  margin: 0;
  border-right: 1px solid #add8e6;
  padding: 28px 10px;
  font-size: 19px;
  font-family: adobe-garamond-pro, Times-new-roman, serif;
  box-sizing: border-box;
  text-align: center;
  max-height: 82px;
}

.menu_link a:last-child {
  border: none;
}

.cart-link,
.top-nav-right .menu_link a {
  font-size: 16px;
  width: 33.3%;
}

.top-nav .top a.red {
  color: #9b2226;
}

.logo {
  margin: 0 auto;
  display: block;
  overflow: hidden;
  transition: all 0.3s;
  text-align: center;
  width: 95px;
  position: relative;
}

.payment-icons {
  background: url(/site/frontend/assets/images/sprite-icons.png) no-repeat 0 -64px;
  width: 144px;
  height: 19px;
  display: inline-block;
}

.lang {
  float: right;
  overflow: hidden;
  width: 47px;
  height: 24px;
  text-indent: -500px;
  padding: 0 !important;
  margin: 13px 13px 0 0;
  background: #fff url(/site/frontend/assets/images/sprite-icons.png) no-repeat 0 -24px;
}

.sv {
  background-position: 0 0;
}

.delete {
  display: block;
}

.scrolled .logo {
  margin: 22px auto 10px;
  height: 45px;
}

.scrolled .logo a {
  top: -67px;
  left: 0;
  position: absolute;
}

.scrolled .top {
  height: 0;
  border: none;
}

.scrolled .nav-toggle-wrapper {
  top: 5px;
}

.scrolled .top-nav {
  top: -25px;
}

#header_wrapper {
  position: fixed;
  top: 0;
  z-index: 999;
  background: #fff;
  height: 127px;
}

#header_wrapper.scrolled {
  height: 78px;
}

#header_wrapper.header-static {
  position: static;
}

.product-under-img-wrapper {
  padding-bottom: 3em;
  background: #fff9f4;
}

.parallax-window {
  min-height: 600px;
  display: none;
}

.parallax-container {
  height: 600px;
  width: 100%;
}

.parallax-window {
  min-height: 550px;
  background: 0 0;
  margin: 0;
}

.parallax-mirror {
  z-index: 1 !important;
}

@media screen and (min-width: 768px) {
  .parallax-window {
    display: block;
  }
}
.yc-listing {
  margin-bottom: 2em;
}

.yc-listing .yc-listing-item,
.yc-listing-item,
.yc-narrow-listing-item {
  clear: none !important;
  border: none !important;
  float: left;
  width: 48%;
  margin: 0 1% 4em;
  overflow: hidden;
  position: relative;
}

.yc-module-wrapper .yc-listing h3 a, .yc-module-wrapper .yc-listing .h3 a {
  color: #303030;
  white-space: nowrap;
  overflow: hidden;
  padding: 6px 0;
  display: block;
  letter-spacing: -1px;
}

.yc-narrow-listing-item {
  width: 31.33%;
  margin: 0 1% 1em;
}

.yc-module-wrapper .yc-narrow-listing-item h3, .yc-module-wrapper .yc-narrow-listing-item .h3 {
  font-size: 26px;
}

.yc-narrow-listing-item .yc-listing-image {
  height: 190px !important;
  width: 100% !important;
  overflow: hidden;
}

.yc-listing-item .yc-listing-description {
  width: 40%;
  text-align: center;
  font-family: adobe-garamond-pro, Times-new-roman, serif;
  color: #818181;
  font-size: 18px;
  position: absolute;
  top: 40%;
  right: 0;
  max-height: 200px;
  overflow: hidden;
  transform: translateY(-40%);
  box-sizing: border-box;
  transition: 0.3s all;
}

.yc-listing-item .yc-listing-image {
  margin: 0;
  width: 100%;
  height: 325px;
  overflow: hidden;
  margin-bottom: 0.8em;
  text-align: center;
  background-position: center center;
  background-repeat: no-repeat;
}

#news .yc-listing-item .yc-listing-image {
  height: 325px;
  background-size: cover !important;
}

#news .yc-fs_events_short_description,
.yc-listing-item-content .red {
  display: none;
}

.img_wrapper img,
.yc-listing-item .yc-listing-image img {
  width: 100%;
  height: auto;
  margin: 0;
  display: block;
}

#news .yc-listing-item .yc-listing-image img {
  width: auto;
  height: 100%;
}

.yc-listing-item .yc-listing h1, .yc-listing-item .yc-listing .h1,
.yc-listing-item .yc-listing h3,
.yc-listing-item .yc-listing .h3 {
  z-index: 99;
  position: absolute;
  width: 100%;
  font-size: 18px;
  margin: 0;
  box-sizing: border-box;
  padding: 8%;
}

.yc-fs_events_title a,
.yc-listing-item .yc-listing h3 a,
.yc-listing-item .yc-listing .h3 a {
  color: #fff;
  text-decoration: none;
}

.yc-listing-item .yc-listing h3 a:hover, .yc-listing-item .yc-listing .h3 a:hover {
  color: #b7b7b7;
}

.yc-listing-item .yc-listing-item-content {
  float: none;
  width: 100%;
  text-align: left;
  margin: 0 auto;
  overflow: hidden;
}

.container .yc-fs_events_title a:hover,
.container .yc-listing h3 a:hover,
.container .yc-listing .h3 a:hover,
.yc-narrow-listing-item h3 a:hover,
.yc-narrow-listing-item .h3 a:hover {
  color: #de111e !important;
}

.highlight {
  background: #cedaeb;
}

.highlight_important {
  background: #f8dcb8;
}

#fs_search_query_field {
  width: 80%;
}

#fs_search_button {
  width: 10%;
  text-transform: uppercase;
  color: #fff;
  background: #618893;
  font-family: acumin-pro-semi-condensed, arial, sans-serif;
  font-size: 0.7em;
  padding: 9px 10px;
  border: none;
  padding-bottom: 10px;
}

.fs_search-form,
.fs_search-message {
  border-bottom: 1px solid #add8e6;
  padding-bottom: 1em;
  margin-bottom: 1em;
}

.fs_search-wrapper .yc-listing {
  padding-top: 0;
}

.fs_search-wrapper .yc-listing-item {
  margin: 0 0 1em 0;
  width: 100%;
}

.fs_search-wrapper .yc-listing-image {
  width: 25%;
  float: left;
  height: auto;
  margin-right: 3%;
}

.fs_search-wrapper .yc-listing-item-content {
  margin-top: 0;
  padding: 0;
  width: 72%;
}

.fs_search-wrapper form {
  display: flex;
}

#news .yc-listing .yc-listing-item {
  width: 31.33%;
  margin: 0 1% 25px;
}

#news .yc-listing .yc-listing-item.hidden {
  margin: 0;
}

#news .yc-listing .yc-listing-item.visible {
  margin: 0 1% 2em;
}

#news .yc-listing h1, #news .yc-listing .h1,
#news .yc-listing h3,
#news .yc-listing .h3 {
  width: 100%;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #de111e;
  margin-bottom: 0.5em;
  text-align: left;
  font-family: acumin-pro, arial, sans-serif;
}

#news .yc-listing .yc-listing-item:first-child,
#news .yc-listing .yc-listing-item:first-child .yc-listing-item-content {
  width: 100%;
  margin: 0;
}

#news .yc-listing .yc-listing-item:first-child .h1,
#news .yc-listing .yc-listing-item:first-child h1,
.yc-fs_events_view_description h1,
.yc-fs_events_view_description .h1 {
  text-align: left;
  margin-bottom: 0.6em;
  font-weight: 400;
  color: #000;
  font-size: 26px;
  padding-bottom: 0.4em;
  line-height: 1em;
  font-family: acumin-pro, arial, sans-serif;
  border-bottom: 1px solid #de111e;
}

#news .yc-listing .yc-listing-item:first-child .yc-listing-image,
#news .yc-listing .yc-listing-item:first-child .yc-listing-text,
.yc-fs_events_view_image {
  width: 50%;
  float: right;
}

#news .yc-listing .yc-listing-item:first-child .yc-listing-text,
.yc-fs_events_view_description {
  width: 45%;
  margin-right: 5%;
  text-align: left;
  font-size: 18px;
}

.yc-fs_events_view_description {
  width: 55%;
  margin: 0 0 0 5%;
  float: left;
  color: #818181;
}

.yc-fs_events_view_description.no-image {
  margin: 0 auto;
  float: none;
}

.yc-fs_events_view_image {
  width: 40%;
  margin-bottom: 2em;
  float: left;
}

.yc-fs_events_view_image img {
  width: 100%;
  height: auto;
}

#news .yc-listing .yc-listing-item:nth-child(6) {
  width: 100%;
  border-top: 1px solid #ddd;
  padding-top: 3em;
}

#news .yc-listing .yc-listing-item:nth-child(6) .yc-listing-image {
  width: 50%;
  margin-bottom: 2em;
  height: 270px;
}

#news .yc-listing .yc-listing-item:nth-child(6) .yc-listing-image img {
  top: 40%;
  transform: translateY(-40%);
  position: absolute;
}

#news .yc-listing .yc-listing-item:nth-child(6) .yc-listing-item-content {
  width: 45%;
}

#news .shortened .red,
#news .yc-listing .yc-listing-item:nth-child(6) .red,
#news .yc-listing .yc-listing-item:nth-child(6) .yc-fs_events_short_description {
  display: block;
}

.arrow-link {
  margin-left: 1%;
}

.category-description {
  font-size: 16px;
  padding: 0 15px;
}

.category-description p {
  color: #9b4b01;
}

@media (min-width: 700px) {
  .category-description {
    width: 75%;
  }
}
#category {
  overflow: hidden;
  float: left;
  width: 100%;
}

#category .yc-listing-item {
  width: 31.33%;
  margin: 0 1% 3em;
}

#category .yc-listing-item a {
  text-shadow: none;
  box-shadow: none;
}

#category .yc-listing-item .yc-listing-image {
  height: 420px;
  background: #fff;
  position: relative;
  margin-bottom: 2em;
}

#category .yc-listing-item .yc-listing-description {
  font-family: acumin-pro, arial, sans-serif;
}

#category .yc-listing-item .yc-listing-image img {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  box-sizing: border-box;
  transition: 0.3s all;
}

#category .yc-listing-item .yc-listing-description {
  position: relative;
  float: left;
  width: 100%;
  font-size: 0.7em;
  color: #618893;
  color: #e63246;
  margin-top: 0;
  transform: none;
  min-height: 140px;
}

#category .yc-listing-item .yc-listing-description h4, #category .yc-listing-item .yc-listing-description .h4 {
  font-size: 1.5em;
  white-space: nowrap;
}

.fast_links h3, .fast_links .h3,
.footer_wrapper h4,
.footer_wrapper .h4,
.prod-gallery h3,
.prod-gallery .h3,
.sub-pages h3,
.sub-pages .h3,
.tips h3,
.tips .h3,
.yc-module-wrapper h3,
.yc-module-wrapper .h3 {
  width: 100%;
  display: block;
  margin: 0 auto 0.5em !important;
  text-align: center;
  font-weight: 400;
  font-size: 26px;
  padding-bottom: 0.5em;
  border-bottom: 2px solid #de111e;
  font-family: acumin-pro, arial, sans-serif;
  color: #303030;
  line-height: 1em;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.fast_links .yc-listing-item .yc-listing-description {
  position: relative;
  margin: 1em auto 0;
  width: 70%;
  -webkit-transform: none;
  -ms-transform: none;
  font-size: 22px;
  transform: none;
}

.tips {
  width: 70%;
}

.tips .yc-listing-item {
  width: 100%;
  margin-bottom: 0;
  position: relative;
}

.tips .yc-listing-item .yc-listing-image {
  width: 50%;
  float: left;
  height: auto;
}

.prod-gallery h3, .prod-gallery .h3,
.tips h3,
.tips .h3 {
  margin-bottom: 1em;
}

.tips h3, .tips .h3 {
  width: 80%;
}

.tips .yc-listing-item .yc-listing-description {
  max-height: none;
  width: 34%;
  margin: 0 8%;
}

.tips .yc-listing-item:nth-child(2n+0) .yc-listing-description {
  right: auto;
  left: 0;
}

.tips .yc-listing-item:nth-child(2n+0) .yc-listing-image {
  float: right;
}

.featured .yc-listing-description,
.featured .yc-listing-image {
  width: 70%;
  margin: 0 auto;
  text-align: center;
  font-family: adobe-garamond-pro, Times-new-roman, serif;
  float: none;
}

.featured .yc-listing-description {
  margin-top: 1.5em;
  line-height: 1.5em;
}

.prod-gallery-wrapper {
  opacity: 1 !important;
}

.prod-gallery-wrapper .flex-direction-nav {
  z-index: 999;
}

.prod-gallery-wrapper .flex-direction-nav .flex-next {
  right: 0;
}

.prod-gallery-wrapper .flex-direction-nav .flex-prev {
  left: 0;
}

.prod-gallery-wrapper .flex-direction-nav a {
  opacity: 1;
  background: rgba(255, 255, 255, 0.6);
  width: 40px;
  height: 40px;
}

.prod-gallery-wrapper .flex-direction-nav a:before {
  content: " ";
  background: url(/site/frontend/assets/images/sprite-icons.png) no-repeat -47px 0;
  width: 7px;
  height: 16px;
  margin: 12px 17px;
}

.prod-gallery-wrapper .flex-direction-nav a.flex-next:before {
  background-position: -54px 0;
}

.prod-gallery-wrapper {
  overflow: hidden;
}

.prod-gallery {
  height: auto;
  width: 10000px !important;
  margin: 3em 0;
  padding: 0;
  left: 0;
  transition: all 0.4s ease;
  overflow: hidden;
}

.prod-gallery a {
  color: #fff;
}

.container.prod-gallery .yc-listing-item {
  width: 350px;
  height: 100%;
  position: relative;
  margin: 0 15px 0 !important;
  text-align: center;
}

.prod-gallery .yc-listing-item .yc-listing-description {
  font-family: acumin-pro, arial, sans-serif;
  width: 100%;
  background: rgba(97, 136, 147, 0.9);
  padding: 25px 10%;
  color: #fff;
  opacity: 0;
  margin-top: 1em;
  font-size: 0.7em;
}

.prod-gallery .yc-listing-item:hover .yc-listing-description {
  opacity: 1;
  margin-top: 0;
}

.prod-gallery .yc-listing-image img {
  width: auto;
  height: 100%;
  display: inline;
}

.prod-gallery .yc-listing-description h4, .prod-gallery .yc-listing-description .h4 {
  border-bottom: 1px solid #fff;
  font-size: 1.5em;
  margin-bottom: 0;
  padding-bottom: 0;
}

.prod-gallery .yc-listing-description:first-child {
  position: relative;
  top: 0;
  transform: translateY(0);
  margin-top: 10% !important;
  background: 0 0;
  color: #818181;
  font-family: adobe-garamond-pro, Times-new-roman, serif;
  opacity: 1;
  font-size: 20px;
}

.prod-gallery .yc-listing-description:first-child a {
  color: #303030;
}

.sub-pages h3, .sub-pages .h3 {
  margin-top: 2em;
}

.sub-pages h3, .sub-pages .h3 {
  width: 100%;
  text-align: left;
  margin-bottom: 1em;
}

.sub-pages img {
  margin-top: 0.5em;
}

.img-right {
  float: left;
  margin: 1.5em 1.5em 1.5em 0;
}

.img-left {
  float: right;
  margin: 1.5em 0 1.5em 1.5em;
}

.template_start #content {
  margin-bottom: 10px;
}

.yc-rss_feed_reader_small_listing a {
  font-size: 13px;
  font-weight: 400 !important;
  text-decoration: none !important;
}

.yc-rss_feed_reader_small_listing {
  margin-bottom: 0;
  padding-bottom: 10px !important;
}

th {
  text-align: left;
}

.table {
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
  margin-bottom: 1em;
}

.table td,
.table th {
  padding: 8px;
  line-height: 1.42857143;
  border-top: 1px solid #ddd;
  position: relative;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}

.table > caption + thead > tr:first-child > td,
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > td,
.table > thead:first-child > tr:first-child > th {
  border-top: 0;
}

.table > tbody + tbody {
  border-top: 2px solid #ddd;
}

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

.grid_2 {
  width: 100%;
  overflow: hidden;
  margin: 1em 0;
}

.grid_2 > div {
  width: 50%;
  float: left;
  box-sizing: border-box;
}

.grid_2_pull {
  position: relative;
  right: 50%;
}

.grid_2_push {
  position: relative;
  left: 50%;
}

.grid_2_padding > div {
  padding: 0 10px;
}

.template_gift_card {
  background: #ddd;
}

.template_gift_card .container {
  margin-top: 2rem;
}

.template_gift_card .img-wrapper {
  margin: 0 auto;
  display: block;
  width: 561px;
  color: #000;
  position: relative;
  box-shadow: 0 5px 20px rgba(136, 136, 136, 0.1098039216);
}

.template_gift_card .card-over {
  position: absolute;
  z-index: 1;
}

.template_gift_card #amount {
  left: 110px;
  top: 365px;
  font-size: 45px;
}

.template_gift_card #code {
  top: 444px;
  left: 150px;
  font-size: 35px;
  color: #646464;
}

.template_gift_card #date {
  top: 520px;
  font-size: 35px;
  left: 150px;
  color: #646464;
}

.template_gift_card .cutting-icon {
  bottom: -40px;
  left: -65px;
}

.alert {
  padding: 20px;
  margin-bottom: 1em;
  border-radius: 0;
}

.alert h4, .alert .h4 {
  margin-top: 0;
  color: inherit;
}

.alert > p,
.alert > ul {
  margin-bottom: 0;
}

.alert > p + p {
  margin-top: 5px;
}

.alert-success {
  background-color: #dff0d8;
  color: #3c763d;
}

.alert-danger {
  background-color: #f2dede;
  color: #a94442;
}

.clearfix:after,
.clearfix:before,
.container:before,
.form-horizontal .form-group:after,
.form-horizontal .form-group:before,
.row:after,
.row:before {
  content: " ";
  display: table;
}

.form-horizontal label[for=fs_forms_gdpr] {
  line-height: 1em;
  font-size: smaller;
  order: 2;
  width: auto !important;
  margin-top: 0.5rem;
}

.clearfix:after,
.form-horizontal .form-group:after,
.row:after {
  clear: both;
}

fieldset {
  border: none;
}

form {
  overflow: hidden;
}

.col-sm-4,
.col-sm-8 {
  float: left;
}

.col-sm-4 {
  width: 33.33333333%;
}

.col-sm-8 {
  width: 66.66666667%;
}

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

.form-horizontal .form-group {
  margin-bottom: 15px;
}

.form-horizontal .checkbox_yesno,
.form-horizontal .yc_radio_column {
  display: flex;
}

.form-horizontal .checkbox_yesno input,
.form-horizontal .yc_radio_column input {
  margin: 5px 0;
}

.form-group.has-error input,
.form-group.has-error select,
.yc-field-container.has-error input,
.yc-field-container.has-error select {
  border-color: #ebccd1;
  background-color: #f2dede;
}

.form-alert {
  line-height: 30px;
}

.form-alert p,
.mform_error p,
.notice-error p {
  margin: 0;
  color: #a94442;
}

.mform_error {
  display: none;
}

.yc-field-container input,
.yc-field-container label {
  width: 33.33333333%;
  margin-bottom: 5px;
  display: inline-block;
}

.klarna-address {
  cursor: pointer;
  border: 1px solid #add8e6;
  background: #fff;
  padding: 20px;
  margin-bottom: 1em;
}

.klarna-address:hover {
  background-color: #add8e6;
}

.newscategories-title {
  display: none;
}

.newscategories {
  overflow: hidden;
  transition: 0.3s all;
  text-transform: uppercase;
  font-size: 0.7em;
}

.newscategories-title a {
  margin: 0;
}

.align-left {
  float: left;
}

.align-right {
  float: right;
}

.spinner {
  width: 40px;
  height: 40px;
  background-color: #add8e6;
  margin: 0 auto;
  animation: rotateplane 1.2s infinite ease-in-out;
}

.size-guide-header {
  cursor: pointer;
}

.size-guide table {
  width: 100%;
  table-layout: fixed;
}

.size-guide table {
  margin-bottom: 1em;
}

.size-guide th {
  text-transform: uppercase;
}

.size-guide-wrapper ol {
  padding-left: 1em;
}

.cart-icon,
.cart-icon2,
.search-icon {
  position: absolute;
  right: 10px;
  top: 45px;
  width: 25px;
  height: 25px;
  cursor: pointer;
  display: none;
}

.cart-icon a,
.search-icon a {
  width: 25px;
  height: 25px;
  display: block;
  background: url(/site/frontend/assets/images/cart-icon.svg) no-repeat;
}

.menu_link {
  position: relative;
}

.cart-info,
.search-info {
  position: absolute;
  top: 100%;
  left: -1px;
  width: 100%;
  margin-top: 1px;
  padding: 10px 20px;
  background: #fff;
  text-align: left;
  border: 1px solid #add8e6;
  border-top: none;
  font-size: 14px;
  box-sizing: border-box;
}

.search-info .fs_search-form {
  border-bottom: none;
  padding: 1rem 0;
  margin-bottom: 0;
}

.search-info #fs_search_button {
  width: auto;
}

.top-nav-right .menu_link .cart-link a {
  width: auto;
  float: none;
  border-right: none;
  padding: 0;
}

.cart-info table {
  width: 100%;
}

.cart-info table td {
  width: 33.3%;
}

.top-nav-right .menu_link .cart-info a {
  width: auto;
  padding: 0;
  border: none;
  font-size: 18px;
  float: none;
}

.delete_cart {
  width: 20%;
  text-align: center;
}

.top-nav-right .menu_link .cart-info .button {
  padding: 10px 20px;
  font-size: 14px;
  font-family: acumin-pro-semi-condensed, arial, sans-serif;
}

.search-icon {
  right: 45px;
}

.search-icon a {
  background: url(/site/frontend/assets/images/search-icon.svg) no-repeat;
}

.lang.mobile-menu {
  position: absolute;
  left: 52px;
  top: 9px;
  margin: 0;
  width: 20px;
  display: none;
  height: 14px;
  background-position: 0 -48px;
}

.sv.lang.mobile-menu {
  background-position: -22px -48px;
}

.cart-icon .msg {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #d81e2b;
  border-radius: 50%;
  top: -8px;
  right: -8px;
  text-align: center;
  font-size: 15px;
  color: #fff;
  line-height: 17px;
}

.cart-icon a.is-updated .msg {
  animation: msg-mini 0.5s, msg-fade-out 1s 2s;
  animation-fill-mode: forwards;
}

#notice {
  position: absolute;
  top: 129px;
  z-index: 97;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  width: 100%;
  padding: 7px 0;
  cursor: pointer;
}

#notice h4, #notice .h4 {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 0;
  color: #9b2226;
  display: inline-block;
}

#notice h5, #notice .h5 {
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 0;
  display: inline-block;
}

#notice img {
  margin-left: 15px;
}

@media screen and (min-width: 667px) {
  #notice h4, #notice .h4 {
    font-size: 16px;
  }
}
.related_articles {
  padding: 30px;
}

.related_articles h2, .related_articles .h2 {
  margin: 15px 0 30px;
}

div[class^=text] {
  position: relative;
}

.play-icon:before {
  background: url(/site/frontend/assets/images/sprite-icons.png) no-repeat -87px 0;
  width: 31px;
  height: 31px;
  float: left;
  margin-right: 8px;
  content: " ";
}

.campaign a {
  text-decoration: underline;
}

.campaign h2.text-centered, .campaign .text-centered.h2 {
  color: #000;
  text-decoration: none;
  font-weight: 200;
  width: 95%;
}

.campaign .yellow-bg-wrapper h2.text-centered, .campaign .yellow-bg-wrapper .text-centered.h2 {
  color: #fff;
}

.beige-bg-wrapper {
  background: #f9ebdd;
}

.red-uppercase {
  text-transform: uppercase;
  color: #9b2226;
}

.text1 > .position-center {
  text-align: left;
  background: #f9ebdd;
}

.text1 > .position-center ~ .position-center {
  background: 0 0;
}

iframe.video-iframe {
  max-width: 100%;
  margin: 0 auto 30px;
}

.position-center {
  padding: 40px 5%;
  text-align: left;
}

#vinn .campaign h2, #vinn .campaign .h2,
#vinn .campaign h3,
#vinn .campaign .h3 {
  text-align: left;
}

#vinn .campaign h1, #vinn .campaign .h1,
#vinn .campaign h2,
#vinn .campaign .h2 {
  text-decoration: none;
  text-transform: uppercase;
  font-family: acumin-pro, arial, sans-serif;
}

#vinn .campaign h2, #vinn .campaign .h2 {
  font-size: 0.8em;
  letter-spacing: 1px;
  color: #646464;
}

#vinn .campaign h3, #vinn .campaign .h3 {
  font-size: 28px;
  line-height: 2rem;
}

#vinn .text2 {
  max-width: 700px;
  padding-bottom: 0;
}

#vinn .text2 h1, #vinn .text2 .h1,
#vinn .text2 p {
  text-align: left;
}

#vinn form {
  text-align: left;
  margin-bottom: 1em;
  background: #f9f6f6;
  padding: 1rem;
  font-family: acumin-pro, arial, sans-serif;
  font-size: smaller;
}

#vinn .form-horizontal input[type=text] {
  width: 95%;
  border-color: #ddd;
}

#vinn .form-alert-inner {
  display: none;
}

#vinn .text1 > .position-center {
  display: none;
}

@media screen and (min-width: 1024px) {
  #vinn .campaign h1, #vinn .campaign .h1 {
    color: #fad038;
    line-height: 1.2em;
    font-size: 70px;
    margin-bottom: 0;
    margin-top: 4rem;
  }
  #vinn .text1 > .position-center,
  #vinn .text4 > .position-center {
    right: 0;
    width: 100%;
    background: 0 0;
    text-align: center;
  }
  #vinn .flex-caption-name::after {
    content: "";
    display: inherit;
    width: 25%;
    margin: 0.4em 35%;
    border-top: 5px solid #fad038;
  }
  #vinn form {
    padding: 40px;
  }
  #vinn .text1 > .position-center {
    display: inline-block;
  }
}
@media screen and (min-width: 1300px) {
  #vinn .campaign h1, #vinn .campaign .h1 {
    margin-top: 6rem;
  }
}
@media screen and (min-width: 1500px) {
  #vinn .campaign h1, #vinn .campaign .h1 {
    margin-top: 10rem;
    max-width: 70%;
    line-height: 1em;
  }
}
.campaign .mform_error p {
  color: #999;
  font-size: smaller;
}

.campaign .notice-error p {
  color: #a94442;
  font-weight: 700;
  text-align: left;
  margin-bottom: 15px;
}

.campaign .yc-field-container .yc_radio_group,
.campaign .yc-field-container input[type=text],
.campaign .yc-field-container label,
.campaign .yc-field-container textarea {
  width: 100%;
  float: left;
  box-sizing: border-box;
}

.yc-field-container {
  overflow: hidden;
}

@media screen and (min-width: 660px) {
  .campaign .yc-field-container .yc_radio_group,
  .campaign .yc-field-container input[type=text],
  .campaign .yc-field-container label,
  .campaign .yc-field-container textarea {
    width: 47%;
  }
  .campaign .yc-field-container textarea {
    float: right;
    width: 47%;
    margin-right: 6%;
  }
}
.campaign .yc-field-container input[type=checkbox],
.campaign .yc-field-container input[type=radio] {
  width: auto;
}

.campaign .checkbox,
.campaign .checkbox_group,
.campaign .checkbox_yesno,
.campaign .input,
.campaign .radio_group {
  width: 100%;
  float: left;
}

.campaign .mform_error {
  display: none;
}

.campaign #fs_forms_form-bottom {
  top: auto !important;
}

.campaign .social-media-bar {
  border: none;
  margin-bottom: 15px;
  overflow: hidden;
  height: auto;
}

.campaign .inner-left {
  position: relative;
}

.campaign .social-media-bar .facebook,
.campaign .social-media-bar .twitter {
  float: none;
  margin: 15px;
}

.campaign .social-media-bar .facebook:after,
.campaign .social-media-bar .twitter:after {
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.07);
  position: absolute;
  content: " ";
  top: -13px;
  left: -14px;
  border-radius: 50%;
}

.campaign .mandatory_fields_text {
  margin-bottom: 2em;
  font-size: small;
}

.campaign .facebook2 {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  display: block;
  width: 200px;
  height: 38px;
  margin: 0 auto;
  text-align: left;
  line-height: 1em;
  position: relative;
  padding-top: 18px;
  padding-left: 65px;
  text-transform: uppercase;
  font-family: acumin-pro, arial, sans-serif;
}

.campaign .facebook2:before {
  background: url(/site/frontend/assets/images/sprite_social_kero.png) no-repeat 0 0;
  height: 57px;
  width: 57px;
  content: " ";
  top: 0;
  position: absolute;
  left: 0;
}

.campaign .social-media-bar a.twitter:before {
  background-position: -57px 0;
}

.checkbox_yesno label {
  float: right !important;
  width: 90% !important;
  margin-bottom: 1rem;
}

.checkbox_yesno label small, .checkbox_yesno label .small {
  line-height: 1.2em;
}

.checkbox_yesno input[type=checkbox] {
  float: left;
  width: 10%;
  margin-top: 12px;
}

.btn-panel {
  width: 100%;
  overflow: hidden;
  float: left;
}

@media screen and (min-width: 769px) {
  .campaign .text3 .text-centered {
    max-width: 40%;
    float: left;
    text-align: left;
  }
  .campaign .text3 img {
    max-width: 500px;
    height: auto;
    float: right;
  }
  .checkbox_yesno label {
    float: right !important;
    width: 50% !important;
    padding-top: 1rem;
    padding-right: 45%;
    line-height: 2rem;
    padding-left: 0;
  }
  .checkbox_yesno label small, .checkbox_yesno label .small {
    font-size: small;
    display: block;
  }
  .checkbox_yesno input[type=checkbox] {
    float: right !important;
    margin: 0;
    width: auto;
    margin-top: 1.5rem;
    width: 5%;
    padding: 0;
  }
  .campaign .checkbox_yesno label {
    padding-right: 0;
  }
  .campaign .checkbox_yesno input[type=checkbox] {
    margin-right: 5px;
  }
}
@media screen and (min-width: 1024px) {
  .campaign {
    margin-top: 125px;
  }
  .campaign h1, .campaign .h1,
  .campaign h2,
  .campaign .h2 {
    margin-bottom: 1em;
  }
  .position-center {
    padding: 0;
  }
  iframe.video-iframe {
    margin: 15px auto;
  }
  .campaign .flex-caption-name {
    font-size: 2em;
  }
  .text1 > .position-center {
    right: 0;
  }
  .text1 > .position-center ~ .position-center {
    left: 50%;
  }
  .text1 .position-center {
    width: 50%;
    position: absolute;
  }
  .position-center {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 20;
    text-align: center;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -o-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -o-justify-content: center;
  }
  .campaign .position-center {
    top: 0;
    left: 0;
  }
  .position-center .floating-text {
    max-width: 80%;
    display: inline-block;
    color: #fff;
  }
}
@media screen and (min-width: 1300px) {
  .campaign {
    margin-top: 125px;
  }
  .campaign .flex-caption-name {
    font-size: 3em;
  }
}
.yc-small-listing {
  padding: 0 3% 3%;
}

.yc-small-listing .h1 {
  margin-bottom: 2em;
}

.yc-small-listing .bg-img {
  background-color: #000;
  color: #fff;
  margin-bottom: 4%;
  clear: none;
  font-family: acumin-pro, arial, sans-serif;
}

.yc-small-listing .bg-img .position-center {
  padding: 6%;
  text-align: left;
  z-index: 99;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5803921569);
  width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
}

.yc-small-listing .bg-img .short_description {
  overflow: hidden;
  transition: max-height 0.2s;
  font-size: 15px;
  line-height: 1.5em;
}

.yc-small-listing .bg-img h5, .yc-small-listing .bg-img .h5 {
  font-weight: 400;
  font-size: 24px;
  text-overflow: ellipsis;
  font-family: acumin-pro, arial, sans-serif;
}

@media screen and (min-width: 1024px) {
  .yc-small-listing .bg-img {
    background-color: #000;
    color: #fff;
    margin-bottom: 2%;
  }
  .yc-small-listing .bg-img h5, .yc-small-listing .bg-img .h5 {
    width: 100%;
    display: block;
    margin: 0 auto 0.5em !important;
    text-align: center;
    font-size: 26px;
    text-shadow: 2px 2px #050a03;
  }
  .yc-small-listing .bg-img .short_description {
    max-height: 5px;
    font-size: 15px;
  }
  .yc-small-listing .bg-img:hover .short_description {
    max-height: 300px;
  }
  .yc-small-listing .bg-img .position-center {
    background: 0 0;
  }
  .yc-small-listing .bg-img .position-center span {
    max-width: 75%;
    display: inline-block;
  }
  .yc-small-listing .bg-img:hover img {
    opacity: 0.5;
  }
  .yc-small-listing .yc-listing-item {
    width: 31%;
    margin: 0 1.15% 4em;
  }
}
@media screen and (min-width: 1300px) {
  .yc-small-listing .yc-listing-item {
    width: 23%;
    margin: 0 1% 4em;
  }
  .yc-small-listing a:nth-child(9) {
    display: none;
  }
}
@media screen and (max-width: 1700px) {
  #monitor-start .flexslider {
    min-height: 800px;
  }
}
@media screen and (max-width: 1350px) {
  #sub-container .container,
  .wrapper-shop .container {
    width: 90%;
    padding: 1em 0 0;
  }
  .mainbar,
  .sidebar,
  .wrapper-shop .mainbar,
  .wrapper-shop .sidebar {
    width: 100%;
    margin-bottom: 1em;
  }
  .breadcrumbs {
    display: none;
  }
  .sidebar ul li {
    float: left;
    padding-right: 10px;
  }
  .sidebar ul li:after {
    content: "/";
    float: right;
    margin-left: 10px;
    color: #dec4af;
  }
  .sidebar ul li:last-child:after {
    content: "";
    margin-right: 0;
  }
  #monitor-start .flexslider {
    min-height: 555px;
  }
  .category-description {
    padding: 0;
  }
}
@media screen and (max-width: 1300px) {
  #footer,
  #media,
  .container {
    width: 90%;
  }
  .flex-caption-name {
    font-size: 3em;
  }
  .flex-caption-description {
    font-size: 1.8em;
  }
  #monitor-start .flexslider {
    min-height: 0;
    height: auto !important;
  }
}
@media screen and (max-width: 1024px) {
  .yc-listing .yc-listing-item,
  .yc-listing-item,
  .yc-narrow-listing-item {
    margin: 0 1% 0;
  }
  .top-nav {
    width: 35%;
  }
  #news .yc-listing .yc-listing-item {
    width: 48%;
  }
  .prod-gallery .yc-listing-item .yc-listing-image {
    height: 200px;
    max-height: none;
  }
  .prod-gallery {
    height: 220px;
  }
  .container.prod-gallery .yc-listing-item {
    width: 280px;
  }
  .fast_links h3, .fast_links .h3,
  .prod-gallery h3,
  .prod-gallery .h3,
  .tips h3,
  .tips .h3 {
    width: 100%;
  }
  #category .yc-listing-item {
    width: 48%;
  }
  #news .yc-listing .yc-listing-item:first-child .yc-listing-image,
  #news .yc-listing .yc-listing-item:first-child .yc-listing-text,
  #news .yc-listing .yc-listing-item:nth-child(6) .yc-listing-image,
  #news .yc-listing .yc-listing-item:nth-child(6) .yc-listing-item-content {
    width: 100%;
    margin-right: 0;
  }
  .prod-gallery {
    height: auto;
    margin: 1em 0;
  }
  .prod-gallery-wrapper .flex-direction-nav {
    display: block;
  }
  .prod-gallery-wrapper .flex-direction-nav .flex-prev {
    background-position: 0 0;
  }
  .prod-gallery-wrapper .flex-direction-nav a {
    width: 34px !important;
  }
  .prod-gallery .yc-listing-item .yc-listing-description {
    background: 0 0;
    padding: 0;
    color: #303030;
    opacity: 1;
    margin-top: 0;
    position: relative;
    float: left;
    padding: 0 30px 0;
    box-sizing: border-box;
  }
  .prod-gallery a {
    color: #618893;
  }
  .prod-gallery .yc-listing-description:first-child {
    margin-top: 20% !important;
  }
}
@media screen and (max-width: 770px) {
  .campaign .text5 img {
    width: 100%;
  }
  .campaign .text5 .position-center {
    width: 70%;
  }
  .only_mobile {
    display: block;
  }
  .container.prod-gallery .yc-listing-item.item-title {
    display: none;
  }
  .grey.related_articles {
    padding: 0;
    background-color: transparent;
  }
  .boiler {
    width: 80%;
  }
  blockquote {
    margin: 15px 0 20px;
    padding: 40px 20px 15px 25px;
    width: 100%;
    float: none;
  }
  .lang.mobile-menu {
    display: block;
    top: 49px;
  }
  .scrolled .lang.mobile-menu {
    top: 9px;
  }
  #min_menu_wrapper {
    display: block;
  }
  .article,
  .product_monitor,
  .yc-fs_events_view_description,
  .yc-fs_events_view_image {
    width: 100%;
    padding: 0;
    margin: 0 0 1em;
    overflow: hidden;
  }
  .yc-fs_events_view_image {
    margin-top: 1em;
  }
  #news .yc-listing .yc-listing-item:nth-child(6) .yc-listing-image,
  .tips .yc-listing-item .yc-listing-description,
  .tips .yc-listing-item .yc-listing-image,
  .yc-narrow-listing-item {
    width: 100%;
    position: relative;
    float: left;
    top: auto;
    transform: none;
    margin: 0 0 1em;
  }
  #news .yc-listing .yc-listing-item,
  #news .yc-listing .yc-listing-item.visible,
  #news .yc-listing .yc-listing-item:nth-child(6),
  .yc-listing-item {
    margin: 0 0 1em;
    width: 100%;
    border: none;
    padding-top: 0;
  }
  .fast_links .yc-listing-item .yc-listing-description {
    width: 90%;
  }
  #news .yc-listing .yc-listing-item:nth-child(6) .yc-listing-image,
  #news .yc-listing-item .yc-listing-image,
  .yc-listing-item .yc-listing-image {
    height: 155px;
    background-size: cover !important;
  }
  #news .yc-listing .yc-listing-item:nth-child(6) .red,
  #news .yc-listing .yc-listing-item:nth-child(6) .yc-fs_events_short_description {
    display: none;
  }
  #news .yc-listing h3, #news .yc-listing .h3,
  .fast_links h3,
  .fast_links .h3 {
    font-size: 18px;
    text-align: center;
  }
  .yc-module-wrapper .yc-listing h3 a, .yc-module-wrapper .yc-listing .h3 a {
    white-space: normal;
    letter-spacing: 0;
  }
  .yc-listing-item .yc-listing-item-content {
    max-height: 43px;
  }
  .yc-listing-item .yc-listing-item-content:first-child {
    max-height: none;
  }
  #news .yc-fs_events_short_description {
    height: auto;
  }
  .nav-toggle-wrapper {
    display: block;
    cursor: pointer;
    top: 45px;
  }
  .loaded,
  .top-nav {
    display: none !important;
  }
  .img-left,
  .img-right {
    margin: 0;
    width: 100%;
    height: auto;
  }
  .fs_search-wrapper .yc-listing-image,
  .fs_search-wrapper .yc-listing-item-content {
    width: 50%;
    float: left;
    height: auto;
    padding-right: 1%;
    box-sizing: border-box;
    margin: 0;
    max-height: none;
  }
  .fs_search-wrapper .yc-listing-image {
    width: 30%;
    padding-right: 2%;
  }
  .fs_search-wrapper .yc-listing-item-content {
    width: 70%;
  }
  #fs_search_query_field {
    width: 78%;
    box-sizing: border-box;
  }
  #fs_search_button {
    width: 20%;
  }
  .boiler .h1,
  .boiler h1 {
    font-size: 1.5em;
  }
  .boiler .h1::after,
  .boiler h1::after {
    width: 80%;
    margin: 20px auto;
  }
  #monitor-start,
  .template_start .flexslider .slides li,
  .template_start .slides {
    background: #618893 !important;
    overflow: hidden;
  }
  .mainbar .flexslider .slides > li {
    width: 100% !important;
  }
  .template_start .flex-caption,
  .template_start .flex-caption-description,
  .template_start .flex-caption-name {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    font-size: 1.2em;
    background: #618893;
  }
  .floating_title {
    font-size: 2.2em;
    display: none;
  }
  .template_start .flex-caption-description,
  .template_start .flex-caption-name {
    margin: 0 10%;
    width: 80%;
  }
  .template_start .flex-caption-name {
    margin: 1em 10% 0;
  }
  #category .yc-listing-item .yc-listing-image {
    height: 270px;
  }
  .scrolled {
    border-top: none;
    background: rgba(255, 255, 255, 0.7);
  }
  #header_wrapper.scrolled {
    height: 50px;
  }
  .scrolled .logo {
    height: 25px;
    margin: 10px auto;
    position: relative;
  }
  #footer_center .footer_column {
    width: 100%;
    float: none;
    box-sizing: border-box;
    border-left: 1px solid #add8e6;
    padding: 0;
    min-height: 250px;
    position: relative;
    margin: 0 auto 2em;
    border: none;
  }
  .footer_wrapper {
    border-bottom: none;
  }
  .footer_wrapper .menu_link a {
    width: 50%;
    border-bottom: 1px solid #add8e6;
  }
  .cat_title {
    display: none;
  }
  .submenu-1 {
    width: 100%;
  }
  .breadcrumbs ul li,
  .sec_menu ul li {
    display: inline-block;
  }
  .social-media-bar,
  .template_default .yc-view-object {
    width: 100%;
    margin: 0;
  }
  #min_menu_wrapper {
    width: 100%;
    max-height: none;
    overflow: hidden;
  }
  #min_menu_wrapper.is-active {
    margin-top: 125px;
    z-index: 99;
  }
  #min_menu_wrapper .newscategories li {
    width: 33.3%;
  }
  #monitor-start,
  #sub-container {
    margin-top: 0;
  }
  #min_menu_wrapper {
    margin-top: 127px;
  }
  #map {
    height: 300px;
  }
  .cart-icon,
  .search-icon {
    display: block;
  }
  .scrolled .cart-icon,
  .scrolled .search-icon {
    top: 5px;
  }
  .table {
    overflow: hidden;
  }
  .table th {
    display: none;
  }
  .table .price_row,
  td {
    width: 100%;
    display: inline-block;
    box-sizing: border-box;
    float: left;
  }
  .delete {
    float: right;
  }
  .table tr {
    border-top: 3px solid #000;
  }
  .size-guide td {
    display: table-cell;
    float: none;
  }
  .table td,
  .table th {
    display: table-cell;
    float: none;
    width: auto;
    font-size: 15px;
  }
  .table tr {
    border: none;
  }
}
@media screen and (max-width: 450px) {
  iframe {
    max-height: 200px;
  }
  .lang.mobile-menu {
    top: 9px;
  }
  .product-description {
    display: none;
  }
  .size-guide th {
    font-size: 10px;
  }
  .align-left,
  .align-right,
  .col-sm-4,
  .col-sm-8,
  .form-group input[type=text],
  .form-group select {
    width: 100%;
    display: inline-block;
    box-sizing: border-box;
    float: left;
  }
  .container {
    padding: 1.5em 0;
  }
  .prod-gallery {
    padding: 0;
    margin-top: 0;
  }
  .flex-direction-nav {
    display: none;
  }
  .slider .flex-control-thumbs {
    text-align: center;
  }
  .slider .flex-control-thumbs li {
    position: relative;
    margin: 2% 2% 0 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
    float: none;
  }
  .slider .flex-control-thumbs li img {
    opacity: 0;
  }
  .newscategories {
    max-height: 0;
    margin: 0;
  }
  .newscategories li {
    opacity: 0;
    transition: 0.3s all;
  }
  .newscategories.visible li {
    opacity: 1;
  }
  .newscategories-title {
    display: block;
  }
  #category {
    background: #fff;
    margin-bottom: 2em;
    padding-top: 20px;
  }
  #category .yc-listing-description p {
    margin: 0;
  }
  #category .yc-listing-item {
    width: 50%;
    margin: 0;
    min-height: 230px;
    clear: none;
  }
  #category .yc-listing-item .yc-listing-image {
    margin-bottom: 0;
    height: auto;
  }
  .yc-module-wrapper h3, .yc-module-wrapper .h3 {
    font-size: 35px;
  }
  #category .yc-listing-item .yc-listing-image img {
    position: relative;
    top: auto;
    right: auto;
    transform: NONE;
    width: 100%;
    margin: 0;
  }
  #category .yc-listing-item .yc-listing-description h4, #category .yc-listing-item .yc-listing-description .h4 {
    font-size: 1.1em;
    line-height: 1em;
  }
  .grid-view #category .yc-listing-item {
    width: 100%;
    min-height: 0;
  }
  .grid-view #category .yc-listing-item .yc-listing-description {
    min-height: 0;
  }
  .variant-tag {
    margin: 5px 0 0;
  }
  .variant-tag-color {
    padding: 0 15px;
  }
  .fs_search-wrapper .yc-listing-image,
  .fs_search-wrapper .yc-listing-item-content {
    width: 100%;
    height: auto !important;
  }
  #fs_search_button,
  #fs_search_query_field {
    width: 100%;
    margin-bottom: 0.5em;
  }
  .flex-control-thumbs .flex-active {
    content: url(/site/frontend/assets/images/red.png);
    opacity: 1 !important;
  }
  .yc-listing-item .yc-listing-image {
    height: 125px;
  }
  .template_start .flex-caption,
  .template_start .flex-caption-description,
  .template_start .flex-caption-name {
    font-size: 1.1em;
    background: #618893;
  }
  #news .yc-listing .yc-listing-item:nth-child(6) .yc-listing-image {
    margin-bottom: 0.8em;
  }
  #news .yc-listing .yc-listing-item:nth-child(6) .yc-listing-image,
  #news .yc-listing-item .yc-listing-image,
  .yc-listing-item .yc-listing-image {
    height: 125px;
  }
  #category .yc-listing-item .yc-listing-description {
    min-height: 0;
  }
  #header_wrapper {
    height: 50px;
  }
  .logo {
    height: 25px;
    width: 95px;
    margin: 10px auto;
    text-align: center;
  }
  .logo a {
    top: -67px;
    left: 0;
    position: absolute;
  }
  #min_menu_wrapper {
    margin-top: 50px;
  }
  .flex-pauseplay a {
    bottom: auto;
    top: 15px;
  }
  .nav-toggle-wrapper {
    top: 5px;
  }
  #min_menu_wrapper.is-active {
    margin-top: 50px;
  }
  #min_menu_wrapper .newscategories li {
    width: 50%;
  }
  .cart-icon,
  .search-icon {
    top: 5px;
  }
  .yc-field-container input,
  .yc-field-container label {
    box-sizing: border-box;
    width: 100%;
  }
  #notice {
    position: relative;
    top: 0;
    line-height: 1em;
    font-size: 13px;
  }
  .fancybox-skin {
    padding: 20px !important;
  }
}
.menu_link a {
  position: relative;
}

.cart-message .msg {
  display: none;
}

.cart-message.is-updated .msg {
  display: block;
  position: relative;
  top: 97px;
  margin-top: 20px;
  font-size: 15px;
  background: #add8e6;
  padding: 1em;
  opacity: 1;
  -webkit-animation: msg-slide 1s, msg-fade-out 2s 4s;
  animation-fill-mode: forwards;
  width: 80px;
  margin: 0 auto;
}

.cart-message.is-updated {
  position: absolute;
  left: 0;
  height: 50px;
  width: 100%;
  float: left;
  text-align: center;
}

.cart-message.is-updated .msg:after {
  content: "";
  display: block;
  position: absolute;
  top: -16px;
  left: 50%;
  margin-left: -16px;
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-bottom: 16px solid #add8e6;
}

.yc-search-listing .yc-listing-item {
  box-sizing: border-box;
  padding: 15px;
  border-bottom: 1px solid #fff9f4;
}

.yc-search-listing .yc-listing-image {
  width: 100%;
  margin-bottom: 2em;
}

.yc-search-listing .yc-listing-item-content {
  text-align: center;
  width: 100%;
}

.yc-search-listing .yc-listing-item-content h4, .yc-search-listing .yc-listing-item-content .h4 {
  font-family: acumin-pro, arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  white-space: nowrap;
}

.table .round-img {
  max-width: 100%;
  height: auto;
  border-radius: 50%;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.img-float-right {
  float: right;
  max-width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .img-float-right {
    margin: 0 0 2rem 2rem;
  }
  .campaign .text2 .row {
    align-items: center;
    display: flex;
  }
  .text4 .position-center {
    width: 50%;
    position: absolute;
  }
  .campaign .text4 img {
    max-height: 800px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .campaign .text4 .position-center {
    text-align: justify;
    left: 0;
    right: auto;
    top: 0;
  }
  .campaign .text4 .position-center .floating-text {
    background-color: rgba(255, 255, 255, 0.87);
    padding: 2.5rem;
    max-width: 400px;
    display: inline-block;
  }
  .table td,
  .table th {
    width: auto;
    float: none;
    display: table-cell;
    border-top: 1px solid #ddd;
  }
  .yc-search-listing .yc-listing-item {
    width: 25%;
    float: left;
  }
}
@keyframes rotateplane {
  0% {
    transform: perspective(120px) rotateX(0) rotateY(0);
    -webkit-transform: perspective(120px) rotateX(0) rotateY(0);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
.instafeed {
  text-align: center;
  padding: 0.5% 0 1%;
}

.instafeed:after,
.instafeed:before {
  content: " ";
  display: table;
}

.instafeed:after {
  clear: both;
}

.instafeed img {
  width: 100%;
  height: auto;
}

.instafeed-item {
  box-sizing: border-box;
  width: 50%;
  padding: 1% 1% 0;
  float: left;
}

.instafeed .tips {
  display: inline-block;
  margin-bottom: 30px;
}

@media screen and (min-width: 567px) {
  .instafeed-item {
    width: 25%;
    padding: 1% 0.7% 0;
  }
}
@font-face {
  font-family: flexslider-icon;
  src: url(/site/frontend/assets/fonts/flexslider-icon.eot);
  src: url(/site/frontend/assets/fonts/flexslider-icon.eot?#iefix) format("embedded-opentype"), url(/site/frontend/assets/fonts/flexslider-icon.woff) format("woff"), url(/site/frontend/assets/fonts/flexslider-icon.ttf) format("truetype"), url(/site/frontend/assets/fonts/flexslider-icon.svg#flexslider-icon) format("svg");
  font-weight: 400;
  font-style: normal;
}
.flex-container a:hover,
.flex-slider a:hover {
  outline: 0;
}

.flex-control-nav,
.flex-direction-nav,
.slides,
.slides > li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flex-pauseplay span {
  text-transform: capitalize;
}

.flexslider {
  margin: 0;
  padding: 0;
}

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}

.flexslider .slides img {
  width: 100%;
  display: block;
}

.wrapper-shop .flexslider .slides img {
  width: auto;
  max-width: 100%;
  margin: 50px auto;
}

.flexslider .slides:after {
  content: " ";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

html[xmlns] .flexslider .slides {
  display: block;
}

* html .flexslider .slides {
  height: 1%;
}

.no-js .flexslider .slides > li:first-child {
  display: block;
}

.flexslider {
  margin: 0 0 60px;
  background: #fff;
  border: none;
  position: relative;
  zoom: 1;
  border-radius: 4px;
  -o-box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
}

.flexslider .slides {
  zoom: 1;
}

.flexslider .slides img {
  height: auto;
  -moz-user-select: none;
}

.flex-viewport {
  max-height: 2000px;
  transition: all 1s ease;
}

.loading .flex-viewport {
  max-height: 300px;
}

.carousel li {
  margin-right: 5px;
}

.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 60px;
  height: 60px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease-in-out;
}

.flex-direction-nav a:before {
  background: url(/site/frontend/assets/images/bg_direction_nav.png) no-repeat -10px -10px;
  width: 60px;
  height: 60px;
  left: 0;
  position: absolute;
}

.flex-direction-nav a.flex-next:before {
  content: "\f002";
  background-position: -80px -10px;
}

.flex-direction-nav a.flex-prev:before {
  content: "\f001";
}

.flex-direction-nav .flex-prev {
  background-position: -50px 0;
}

.flex-direction-nav .flex-next {
  right: -50px;
  text-align: right;
}

.flexslider:hover .flex-direction-nav .flex-prev:hover {
  opacity: 1;
}

.flexslider:hover .flex-direction-nav .flex-next:hover {
  opacity: 1;
}

.flex-direction-nav .flex-disabled {
  opacity: 0 !important;
  cursor: default;
  z-index: -1;
}

.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
  line-height: 20px;
  color: #fff;
}

.flex-pauseplay a:before {
  font-family: flexslider-icon;
  font-size: 20px;
  display: inline-block;
  content: "\f004";
}

.flex-pauseplay a:hover {
  opacity: 1;
}

.flex-pauseplay a.flex-play:before {
  content: "\f003";
}

.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center;
}

.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
}

.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
}

.flex-control-paging li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7);
}

.flex-control-paging li a.flex-active {
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  cursor: default;
}

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}

.flex-control-thumbs img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.7;
  cursor: pointer;
  -moz-user-select: none;
  transition: all 1s ease;
}

.flex-control-thumbs img:hover {
  opacity: 1;
}

.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}

@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
  }
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
  }
}
.flexslider {
  margin-bottom: 0;
}

.flex-direction-nav .flex-prev {
  left: 10px;
  opacity: 0.2;
}

.flex-direction-nav .flex-next {
  right: 10px;
  opacity: 0.2;
}

.flex-control-nav {
  bottom: 0;
  z-index: 2;
}

.flex-pauseplay a {
  left: auto;
  right: 10px;
  bottom: 10px;
}

.tipsy {
  font-size: 10px;
  position: absolute;
  padding: 5px;
  z-index: 100000;
}

.tipsy-inner {
  background-color: #000;
  color: #fff;
  max-width: 200px;
  padding: 5px 8px 4px 8px;
  text-align: center;
}

.tipsy-inner {
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
}

.tipsy-arrow {
  position: absolute;
  width: 0;
  height: 0;
  line-height: 0;
  border: 5px dashed #000;
}

.tipsy-arrow-n {
  border-bottom-color: #000;
}

.tipsy-arrow-s {
  border-top-color: #000;
}

.tipsy-arrow-e {
  border-left-color: #000;
}

.tipsy-arrow-w {
  border-right-color: #000;
}

.tipsy-n .tipsy-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-bottom-style: solid;
  border-top: none;
  border-left-color: transparent;
  border-right-color: transparent;
}

.tipsy-nw .tipsy-arrow {
  top: 0;
  left: 10px;
  border-bottom-style: solid;
  border-top: none;
  border-left-color: transparent;
  border-right-color: transparent;
}

.tipsy-ne .tipsy-arrow {
  top: 0;
  right: 10px;
  border-bottom-style: solid;
  border-top: none;
  border-left-color: transparent;
  border-right-color: transparent;
}

.tipsy-s .tipsy-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-top-style: solid;
  border-bottom: none;
  border-left-color: transparent;
  border-right-color: transparent;
}

.tipsy-sw .tipsy-arrow {
  bottom: 0;
  left: 10px;
  border-top-style: solid;
  border-bottom: none;
  border-left-color: transparent;
  border-right-color: transparent;
}

.tipsy-se .tipsy-arrow {
  bottom: 0;
  right: 10px;
  border-top-style: solid;
  border-bottom: none;
  border-left-color: transparent;
  border-right-color: transparent;
}

.tipsy-e .tipsy-arrow {
  right: 0;
  top: 50%;
  margin-top: -5px;
  border-left-style: solid;
  border-right: none;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.tipsy-w .tipsy-arrow {
  left: 0;
  top: 50%;
  margin-top: -5px;
  border-right-style: solid;
  border-left: none;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-image,
.fancybox-inner,
.fancybox-nav,
.fancybox-nav span,
.fancybox-outer,
.fancybox-skin,
.fancybox-tmp,
.fancybox-wrap,
.fancybox-wrap iframe,
.fancybox-wrap object {
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  vertical-align: top;
}

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}

.fancybox-skin {
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  border-radius: 4px;
}

.fancybox-opened {
  z-index: 8030;
}

.fancybox-opened .fancybox-skin {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-inner,
.fancybox-outer {
  position: relative;
}

.fancybox-inner {
  overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
}

.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}

.fancybox-iframe,
.fancybox-image {
  display: block;
  width: 100%;
  height: 100%;
}

.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}

#fancybox-loading,
.fancybox-close,
.fancybox-next span,
.fancybox-prev span {
  background-image: url(/site/frontend/assets/images/fancybox_sprite.png);
}

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060;
}

#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url(/site/frontend/assets/images/fancybox_loading.gif) center center no-repeat;
}

.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040;
}

.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url(/site/frontend/assets/images/blank.gif);
  -webkit-tap-highlight-color: transparent;
  z-index: 8040;
}

.fancybox-prev {
  left: 0;
}

.fancybox-next {
  right: 0;
}

.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden;
}

.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px;
}

.fancybox-next span {
  right: 10px;
  background-position: 0 -72px;
}

.fancybox-nav:hover span {
  visibility: visible;
}

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}

.fancybox-lock {
  overflow: hidden !important;
  width: auto;
}

.fancybox-lock body {
  overflow: hidden !important;
}

.fancybox-lock-test {
  overflow-y: hidden !important;
}

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: url(/site/frontend/assets/images/fancybox_overlay.png);
}

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}

.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050;
}

.fancybox-opened .fancybox-title {
  visibility: visible;
}

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center;
}

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: 0 0;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #fff;
  font-weight: 700;
  line-height: 24px;
  white-space: nowrap;
}

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}

.fancybox-title-inside-wrap {
  padding-top: 10px;
}

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  #fancybox-loading,
  .fancybox-close,
  .fancybox-next span,
  .fancybox-prev span {
    background-image: url(/site/frontend/assets/images/fancybox_sprite@2x.png);
    background-size: 44px 152px;
  }
  #fancybox-loading div {
    background-image: url(/site/frontend/assets/images/fancybox_loading@2x.gif);
    background-size: 24px 24px;
  }
}
/* swiper  */
.products-small-listing-wrapper {
  overflow: hidden;
}

.swiper-pagination-bullets {
  display: flex;
  justify-content: center;
}

.swiper-pagination-bullets .swiper-pagination-bullet {
  flex-basis: 5px;
  height: 5px;
  margin: 2px;
}

.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #000;
}

.swiper-container-initialized .swiper-button-next,
.swiper-container-initialized .swiper-button-prev {
  color: #FFF;
  background: rgba(255, 255, 255, 0.5803921569);
}

.swiper-container-initialized .swiper-button-next::after,
.swiper-container-initialized .swiper-button-prev::after {
  font-size: 20px;
  color: black;
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}

.swiper-wrapper .swiper-slide .item-img {
  min-height: 240px;
  width: 100%;
  background: #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column-reverse;
}

.swiper-wrapper .swiper-slide .item-img:hover .swiper-slide__inner {
  opacity: 1;
}

.swiper-wrapper {
  padding-bottom: 1rem;
}

.swiper-wrapper .swiper-slide {
  width: 280px;
}

.swiper-wrapper .swiper-slide__inner {
  padding: 30px 15px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .swiper-wrapper .swiper-slide__inner {
    width: 100%;
    background: rgba(97, 136, 147, 0.9);
    padding: 25px 10%;
    color: #fff;
    opacity: 0;
    margin-top: 1em;
    font-size: 0.7em;
    position: absolute;
    transition: 0.2s opacity;
  }
  .swiper-slide__inner h4, .swiper-slide__inner .h4 {
    border-bottom: 1px solid #fff;
    font-size: 1.5em;
    margin-bottom: 0;
    padding-bottom: 0.5rem;
  }
}
.products-small-listing-slider {
  overflow: hidden;
  background: #FFF;
  padding: 2rem 0;
  position: relative;
}

@media screen and (min-width: 768px) {
  .swiper-pagination-bullets {
    padding-bottom: 1rem;
  }
  .swiper-wrapper .swiper-slide .item-img {
    min-height: 300px;
  }
  .swiper-wrapper .swiper-slide {
    width: 302px;
  }
}
/* monitor swiper */
.monitor-swiper-container {
  overflow: hidden;
  padding-bottom: 1rem;
  position: relative;
}

.monitor-swiper-container .swiper-slide,
.monitor-swiper-container .swiper-slide .swiper-slide__link {
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .monitor-swiper-container {
    padding-bottom: 2rem;
  }
}
/* featured oimage */
.featured-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.featured-image picture,
.featured-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

/* swiper  */
.products-small-listing-wrapper {
  overflow: hidden;
}

.swiper-pagination-bullets {
  display: flex;
  justify-content: center;
}

.swiper-pagination-bullets .swiper-pagination-bullet {
  flex-basis: 5px;
  height: 5px;
  margin: 2px;
}

.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #000;
}

.swiper-container-initialized .swiper-button-next,
.swiper-container-initialized .swiper-button-prev {
  color: #FFF;
  background: rgba(255, 255, 255, 0.5803921569);
}

.swiper-container-initialized .swiper-button-next::after,
.swiper-container-initialized .swiper-button-prev::after {
  font-size: 20px;
  color: black;
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}

.swiper-wrapper .swiper-slide .item-img {
  min-height: 240px;
  width: 100%;
  background: #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column-reverse;
}

.swiper-wrapper .swiper-slide .item-img:hover .swiper-slide__inner {
  opacity: 1;
}

.swiper-wrapper {
  padding-bottom: 1rem;
}

.swiper-wrapper .swiper-slide {
  width: 280px;
}

.swiper-wrapper .swiper-slide__inner {
  padding: 30px 15px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .swiper-wrapper .swiper-slide__inner {
    width: 100%;
    background: rgba(97, 136, 147, 0.9);
    padding: 25px 10%;
    color: #fff;
    opacity: 0;
    margin-top: 1em;
    font-size: 0.7em;
    position: absolute;
    transition: 0.2s opacity;
  }
  .swiper-slide__inner h4, .swiper-slide__inner .h4 {
    border-bottom: 1px solid #fff;
    font-size: 1.5em;
    margin-bottom: 0;
    padding-bottom: 0.5rem;
  }
}
.products-small-listing-slider {
  overflow: hidden;
  background: #FFF;
  padding: 2rem 0;
  position: relative;
}

@media screen and (min-width: 768px) {
  .swiper-pagination-bullets {
    padding-bottom: 1rem;
  }
  .swiper-wrapper .swiper-slide .item-img {
    min-height: 300px;
  }
  .swiper-wrapper .swiper-slide {
    width: 302px;
  }
}
/* monitor swiper */
.monitor-swiper-container {
  overflow: hidden;
  padding-bottom: 1rem;
  position: relative;
}

.monitor-swiper-container .swiper-slide,
.monitor-swiper-container .swiper-slide .swiper-slide__link {
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .monitor-swiper-container {
    padding-bottom: 2rem;
  }
}
/* featured image */
.featured-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.featured-image picture, .featured-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.wrapper-shop .sidebar {
  display: block !important;
}

.campaign {
  line-height: 1.2em;
  text-align: center;
  margin-top: 0;
}
.campaign .text5 {
  padding: 1rem 0;
}
.campaign .text5 img {
  max-height: 250px;
  width: auto;
}
.campaign .text5 .position-center {
  width: 50%;
  flex-direction: column;
  align-items: start;
  width: 40%;
  text-align: start;
}
.campaign .text4 .position-center blockquote {
  width: auto;
  border-top: none;
  border-bottom: none;
  background-color: transparent;
}
.campaign .text-centered {
  text-align: left;
  margin-top: 1rem;
}
.campaign .flex-caption {
  max-width: 35%;
}
.campaign img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}
.campaign .text1 img {
  max-height: 1200px;
  -o-object-fit: cover;
  object-fit: cover;
}
.campaign .acne-1 {
  max-height: 500px;
  min-height: 400px;
  width: auto !important;
  display: initial !important;
}
.campaign blockquote {
  margin: 0;
}
.campaign blockquote p {
  text-align: start;
}
.campaign p {
  margin: 0;
  color: #1f1f1f;
  font-weight: 600;
}
.campaign h1, .campaign .h1 {
  color: black;
  width: auto;
  margin-bottom: 0.5em;
  font-weight: 200;
}
.campaign h2, .campaign .h2 {
  color: black;
  width: auto;
  margin-bottom: 0.5em;
  font-weight: 200;
}
.campaign .flex-caption-name {
  font-size: 30px;
}
.campaign .text2 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.campaign .text2 blockquote {
  background-color: transparent;
  border-color: #7f5039;
}
.campaign .text3 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.campaign .text3 blockquote {
  background-color: transparent;
  border-color: #7f5039;
}

.termsfeed-com---palette-light.termsfeed-com---nb {
  position: fixed !important;
  background-color: rgba(242, 242, 242, 0.5803921569) !important;
  height: 100%;
  display: flex;
  justify-content: end;
  align-items: end;
}
.termsfeed-com---palette-light.termsfeed-com---nb.termsfeed-com---is-hidden {
  display: none;
}
.termsfeed-com---palette-light.termsfeed-com---nb .cc-nb-text {
  font-size: 14px;
}
.termsfeed-com---palette-light.termsfeed-com---nb .cc-nb-main-container {
  padding: 1rem 15px;
  margin: 0 auto;
  text-align: center;
  height: auto;
  background: #FFF;
}
@media (min-width: 992px) {
  .termsfeed-com---palette-light.termsfeed-com---nb .cc-nb-main-container {
    padding: 1rem 20%;
  }
}
@media (min-width: 992px) {
  .termsfeed-com---palette-light.termsfeed-com---nb .cc-nb-okagree {
    width: 60%;
  }
}
@media (min-width: 992px) {
  .termsfeed-com---palette-light.termsfeed-com---nb .cc-nb-changep {
    width: 34%;
  }
}
.termsfeed-com---palette-light.termsfeed-com---nb .cc-pc-head-lang-select, .termsfeed-com---palette-light.termsfeed-com---nb .cc-cp-foot-byline {
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}
.termsfeed-com---palette-light.termsfeed-com---nb .cc-nb-title {
  display: none;
}
.termsfeed-com---palette-light .cc-nb-okagree,
.termsfeed-com---palette-light .cc-cp-foot-save {
  background-color: #f14a89 !important;
  border: none;
}
.termsfeed-com---palette-light .cc-cp-foot-button {
  margin: 1rem 0.5rem;
}

.termsfeed-com---pc-dialog .cc-pc-head-title {
  padding: 15px 0 15px 15px;
}
.termsfeed-com---pc-dialog .cc-cp-body-content-entry-title {
  font-size: 20px;
}
.termsfeed-com---pc-dialog .cc-pc-head-lang-select, .termsfeed-com---pc-dialog .cc-cp-foot-byline {
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}
.termsfeed-com---pc-dialog .cc-pc-head {
  position: relative;
}
.termsfeed-com---pc-dialog .cc-pc-head .cc-pc-head-lang {
  position: absolute;
  min-height: 100%;
  right: 0;
  top: 0;
  padding: 0 !important;
}
