@charset "UTF-8";
/* Basic CSS reset (Bootstrap-free)
   Keep it minimal so it won't fight with component styles. */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  line-height: 1.15; /* Improves default text rendering */
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  max-width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  margin: 0;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 3rem;
  --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: 1380px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1368px;
  }
}
:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1380px;
}

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

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

.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.33333333%;
  }
  .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.66666667%;
  }
  .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.33333333%;
  }
  .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.66666667%;
  }
  .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.33333333%;
  }
  .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.66666667%;
  }
  .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.33333333%;
  }
  .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.66666667%;
  }
  .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: 1380px) {
  .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.33333333%;
  }
  .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.66666667%;
  }
  .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;
  }
}
:root,
[data-bs-theme=light] {
  --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: #000000;
  --bs-white: #ffffff;
  --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-primary-text-emphasis: rgb(5.2, 44, 101.2);
  --bs-secondary-text-emphasis: rgb(43.2, 46.8, 50);
  --bs-success-text-emphasis: rgb(10, 54, 33.6);
  --bs-info-text-emphasis: rgb(5.2, 80.8, 96);
  --bs-warning-text-emphasis: rgb(102, 77.2, 2.8);
  --bs-danger-text-emphasis: rgb(88, 21.2, 27.6);
  --bs-light-text-emphasis: #495057;
  --bs-dark-text-emphasis: #495057;
  --bs-primary-bg-subtle: rgb(206.6, 226, 254.6);
  --bs-secondary-bg-subtle: rgb(225.6, 227.4, 229);
  --bs-success-bg-subtle: rgb(209, 231, 220.8);
  --bs-info-bg-subtle: rgb(206.6, 244.4, 252);
  --bs-warning-bg-subtle: rgb(255, 242.6, 205.4);
  --bs-danger-bg-subtle: rgb(248, 214.6, 217.8);
  --bs-light-bg-subtle: rgb(251.5, 252, 252.5);
  --bs-dark-bg-subtle: #ced4da;
  --bs-primary-border-subtle: rgb(158.2, 197, 254.2);
  --bs-secondary-border-subtle: rgb(196.2, 199.8, 203);
  --bs-success-border-subtle: rgb(163, 207, 186.6);
  --bs-info-border-subtle: rgb(158.2, 233.8, 249);
  --bs-warning-border-subtle: rgb(255, 230.2, 155.8);
  --bs-danger-border-subtle: rgb(241, 174.2, 180.6);
  --bs-light-border-subtle: #e9ecef;
  --bs-dark-border-subtle: #adb5bd;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --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-color-rgb: 33, 37, 41;
  --bs-body-bg: #ffffff;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-emphasis-color: #000000;
  --bs-emphasis-color-rgb: 0, 0, 0;
  --bs-secondary-color: rgba(33, 37, 41, 0.75);
  --bs-secondary-color-rgb: 33, 37, 41;
  --bs-secondary-bg: #e9ecef;
  --bs-secondary-bg-rgb: 233, 236, 239;
  --bs-tertiary-color: rgba(33, 37, 41, 0.5);
  --bs-tertiary-color-rgb: 33, 37, 41;
  --bs-tertiary-bg: #f8f9fa;
  --bs-tertiary-bg-rgb: 248, 249, 250;
  --bs-heading-color: inherit;
  --bs-link-color: #0d6efd;
  --bs-link-color-rgb: 13, 110, 253;
  --bs-link-decoration: underline;
  --bs-link-hover-color: rgb(10.4, 88, 202.4);
  --bs-link-hover-color-rgb: 10, 88, 202;
  --bs-code-color: #d63384;
  --bs-highlight-color: #212529;
  --bs-highlight-bg: rgb(255, 242.6, 205.4);
  --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-xxl: 2rem;
  --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  --bs-border-radius-pill: 50rem;
  --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --bs-focus-ring-width: 0.25rem;
  --bs-focus-ring-opacity: 0.25;
  --bs-focus-ring-color: rgba(13, 110, 253, 0.25);
  --bs-form-valid-color: #198754;
  --bs-form-valid-border-color: #198754;
  --bs-form-invalid-color: #dc3545;
  --bs-form-invalid-border-color: #dc3545;
}

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

.object-fit-contain {
  object-fit: contain !important;
}

.object-fit-cover {
  object-fit: cover !important;
}

.object-fit-fill {
  object-fit: fill !important;
}

.object-fit-scale {
  object-fit: scale-down !important;
}

.object-fit-none {
  object-fit: 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;
}

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

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

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

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

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

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

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

.overflow-y-scroll {
  overflow-y: 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-inline-grid {
  display: inline-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: var(--bs-box-shadow) !important;
}

.shadow-sm {
  box-shadow: var(--bs-box-shadow-sm) !important;
}

.shadow-lg {
  box-shadow: var(--bs-box-shadow-lg) !important;
}

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

.focus-ring-primary {
  --bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-secondary {
  --bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-success {
  --bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-info {
  --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-warning {
  --bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-danger {
  --bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-light {
  --bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-dark {
  --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity));
}

.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-black {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-black-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-primary-subtle {
  border-color: var(--bs-primary-border-subtle) !important;
}

.border-secondary-subtle {
  border-color: var(--bs-secondary-border-subtle) !important;
}

.border-success-subtle {
  border-color: var(--bs-success-border-subtle) !important;
}

.border-info-subtle {
  border-color: var(--bs-info-border-subtle) !important;
}

.border-warning-subtle {
  border-color: var(--bs-warning-border-subtle) !important;
}

.border-danger-subtle {
  border-color: var(--bs-danger-border-subtle) !important;
}

.border-light-subtle {
  border-color: var(--bs-light-border-subtle) !important;
}

.border-dark-subtle {
  border-color: var(--bs-dark-border-subtle) !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

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

.row-gap-0 {
  row-gap: 0 !important;
}

.row-gap-1 {
  row-gap: 0.25rem !important;
}

.row-gap-2 {
  row-gap: 0.5rem !important;
}

.row-gap-3 {
  row-gap: 1rem !important;
}

.row-gap-4 {
  row-gap: 1.5rem !important;
}

.row-gap-5 {
  row-gap: 3rem !important;
}

.column-gap-0 {
  column-gap: 0 !important;
}

.column-gap-1 {
  column-gap: 0.25rem !important;
}

.column-gap-2 {
  column-gap: 0.5rem !important;
}

.column-gap-3 {
  column-gap: 1rem !important;
}

.column-gap-4 {
  column-gap: 1.5rem !important;
}

.column-gap-5 {
  column-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-lighter {
  font-weight: lighter !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

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

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

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

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  --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: var(--bs-secondary-color) !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-body-secondary {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

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

.text-body-emphasis {
  --bs-text-opacity: 1;
  color: var(--bs-emphasis-color) !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;
}

.text-primary-emphasis {
  color: var(--bs-primary-text-emphasis) !important;
}

.text-secondary-emphasis {
  color: var(--bs-secondary-text-emphasis) !important;
}

.text-success-emphasis {
  color: var(--bs-success-text-emphasis) !important;
}

.text-info-emphasis {
  color: var(--bs-info-text-emphasis) !important;
}

.text-warning-emphasis {
  color: var(--bs-warning-text-emphasis) !important;
}

.text-danger-emphasis {
  color: var(--bs-danger-text-emphasis) !important;
}

.text-light-emphasis {
  color: var(--bs-light-text-emphasis) !important;
}

.text-dark-emphasis {
  color: var(--bs-dark-text-emphasis) !important;
}

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

.link-opacity-10-hover:hover {
  --bs-link-opacity: 0.1;
}

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

.link-opacity-25-hover:hover {
  --bs-link-opacity: 0.25;
}

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

.link-opacity-50-hover:hover {
  --bs-link-opacity: 0.5;
}

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

.link-opacity-75-hover:hover {
  --bs-link-opacity: 0.75;
}

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

.link-opacity-100-hover:hover {
  --bs-link-opacity: 1;
}

.link-offset-1 {
  text-underline-offset: 0.125em !important;
}

.link-offset-1-hover:hover {
  text-underline-offset: 0.125em !important;
}

.link-offset-2 {
  text-underline-offset: 0.25em !important;
}

.link-offset-2-hover:hover {
  text-underline-offset: 0.25em !important;
}

.link-offset-3 {
  text-underline-offset: 0.375em !important;
}

.link-offset-3-hover:hover {
  text-underline-offset: 0.375em !important;
}

.link-underline-primary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
}

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

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

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

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

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

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

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

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

.link-underline-opacity-0 {
  --bs-link-underline-opacity: 0;
}

.link-underline-opacity-0-hover:hover {
  --bs-link-underline-opacity: 0;
}

.link-underline-opacity-10 {
  --bs-link-underline-opacity: 0.1;
}

.link-underline-opacity-10-hover:hover {
  --bs-link-underline-opacity: 0.1;
}

.link-underline-opacity-25 {
  --bs-link-underline-opacity: 0.25;
}

.link-underline-opacity-25-hover:hover {
  --bs-link-underline-opacity: 0.25;
}

.link-underline-opacity-50 {
  --bs-link-underline-opacity: 0.5;
}

.link-underline-opacity-50-hover:hover {
  --bs-link-underline-opacity: 0.5;
}

.link-underline-opacity-75 {
  --bs-link-underline-opacity: 0.75;
}

.link-underline-opacity-75-hover:hover {
  --bs-link-underline-opacity: 0.75;
}

.link-underline-opacity-100 {
  --bs-link-underline-opacity: 1;
}

.link-underline-opacity-100-hover:hover {
  --bs-link-underline-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-body-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body-tertiary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !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-primary-subtle {
  background-color: var(--bs-primary-bg-subtle) !important;
}

.bg-secondary-subtle {
  background-color: var(--bs-secondary-bg-subtle) !important;
}

.bg-success-subtle {
  background-color: var(--bs-success-bg-subtle) !important;
}

.bg-info-subtle {
  background-color: var(--bs-info-bg-subtle) !important;
}

.bg-warning-subtle {
  background-color: var(--bs-warning-bg-subtle) !important;
}

.bg-danger-subtle {
  background-color: var(--bs-danger-bg-subtle) !important;
}

.bg-light-subtle {
  background-color: var(--bs-light-bg-subtle) !important;
}

.bg-dark-subtle {
  background-color: var(--bs-dark-bg-subtle) !important;
}

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

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

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

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

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

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

.rounded {
  border-radius: 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-xxl) !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-top-0 {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

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

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

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

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

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

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

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

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

.rounded-end-0 {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

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

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

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

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

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

.rounded-end-circle {
  border-top-right-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
}

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

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

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

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

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

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

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

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

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

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

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

.rounded-start-0 {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}

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

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

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

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

.rounded-start-5 {
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-start-circle {
  border-bottom-left-radius: 50% !important;
  border-top-left-radius: 50% !important;
}

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

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.z-n1 {
  z-index: -1 !important;
}

.z-0 {
  z-index: 0 !important;
}

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

.z-2 {
  z-index: 2 !important;
}

.z-3 {
  z-index: 3 !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .object-fit-sm-contain {
    object-fit: contain !important;
  }
  .object-fit-sm-cover {
    object-fit: cover !important;
  }
  .object-fit-sm-fill {
    object-fit: fill !important;
  }
  .object-fit-sm-scale {
    object-fit: scale-down !important;
  }
  .object-fit-sm-none {
    object-fit: 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-inline-grid {
    display: inline-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;
  }
  .row-gap-sm-0 {
    row-gap: 0 !important;
  }
  .row-gap-sm-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-sm-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-sm-3 {
    row-gap: 1rem !important;
  }
  .row-gap-sm-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-sm-5 {
    row-gap: 3rem !important;
  }
  .column-gap-sm-0 {
    column-gap: 0 !important;
  }
  .column-gap-sm-1 {
    column-gap: 0.25rem !important;
  }
  .column-gap-sm-2 {
    column-gap: 0.5rem !important;
  }
  .column-gap-sm-3 {
    column-gap: 1rem !important;
  }
  .column-gap-sm-4 {
    column-gap: 1.5rem !important;
  }
  .column-gap-sm-5 {
    column-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;
  }
  .object-fit-md-contain {
    object-fit: contain !important;
  }
  .object-fit-md-cover {
    object-fit: cover !important;
  }
  .object-fit-md-fill {
    object-fit: fill !important;
  }
  .object-fit-md-scale {
    object-fit: scale-down !important;
  }
  .object-fit-md-none {
    object-fit: 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-inline-grid {
    display: inline-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;
  }
  .row-gap-md-0 {
    row-gap: 0 !important;
  }
  .row-gap-md-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-md-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-md-3 {
    row-gap: 1rem !important;
  }
  .row-gap-md-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-md-5 {
    row-gap: 3rem !important;
  }
  .column-gap-md-0 {
    column-gap: 0 !important;
  }
  .column-gap-md-1 {
    column-gap: 0.25rem !important;
  }
  .column-gap-md-2 {
    column-gap: 0.5rem !important;
  }
  .column-gap-md-3 {
    column-gap: 1rem !important;
  }
  .column-gap-md-4 {
    column-gap: 1.5rem !important;
  }
  .column-gap-md-5 {
    column-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;
  }
  .object-fit-lg-contain {
    object-fit: contain !important;
  }
  .object-fit-lg-cover {
    object-fit: cover !important;
  }
  .object-fit-lg-fill {
    object-fit: fill !important;
  }
  .object-fit-lg-scale {
    object-fit: scale-down !important;
  }
  .object-fit-lg-none {
    object-fit: 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-inline-grid {
    display: inline-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;
  }
  .row-gap-lg-0 {
    row-gap: 0 !important;
  }
  .row-gap-lg-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-lg-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-lg-3 {
    row-gap: 1rem !important;
  }
  .row-gap-lg-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-lg-5 {
    row-gap: 3rem !important;
  }
  .column-gap-lg-0 {
    column-gap: 0 !important;
  }
  .column-gap-lg-1 {
    column-gap: 0.25rem !important;
  }
  .column-gap-lg-2 {
    column-gap: 0.5rem !important;
  }
  .column-gap-lg-3 {
    column-gap: 1rem !important;
  }
  .column-gap-lg-4 {
    column-gap: 1.5rem !important;
  }
  .column-gap-lg-5 {
    column-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;
  }
  .object-fit-xl-contain {
    object-fit: contain !important;
  }
  .object-fit-xl-cover {
    object-fit: cover !important;
  }
  .object-fit-xl-fill {
    object-fit: fill !important;
  }
  .object-fit-xl-scale {
    object-fit: scale-down !important;
  }
  .object-fit-xl-none {
    object-fit: 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-inline-grid {
    display: inline-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;
  }
  .row-gap-xl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xl-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xl-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xl-3 {
    row-gap: 1rem !important;
  }
  .row-gap-xl-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xl-5 {
    row-gap: 3rem !important;
  }
  .column-gap-xl-0 {
    column-gap: 0 !important;
  }
  .column-gap-xl-1 {
    column-gap: 0.25rem !important;
  }
  .column-gap-xl-2 {
    column-gap: 0.5rem !important;
  }
  .column-gap-xl-3 {
    column-gap: 1rem !important;
  }
  .column-gap-xl-4 {
    column-gap: 1.5rem !important;
  }
  .column-gap-xl-5 {
    column-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: 1380px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .object-fit-xxl-contain {
    object-fit: contain !important;
  }
  .object-fit-xxl-cover {
    object-fit: cover !important;
  }
  .object-fit-xxl-fill {
    object-fit: fill !important;
  }
  .object-fit-xxl-scale {
    object-fit: scale-down !important;
  }
  .object-fit-xxl-none {
    object-fit: 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-inline-grid {
    display: inline-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;
  }
  .row-gap-xxl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xxl-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xxl-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xxl-3 {
    row-gap: 1rem !important;
  }
  .row-gap-xxl-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xxl-5 {
    row-gap: 3rem !important;
  }
  .column-gap-xxl-0 {
    column-gap: 0 !important;
  }
  .column-gap-xxl-1 {
    column-gap: 0.25rem !important;
  }
  .column-gap-xxl-2 {
    column-gap: 0.5rem !important;
  }
  .column-gap-xxl-3 {
    column-gap: 1rem !important;
  }
  .column-gap-xxl-4 {
    column-gap: 1.5rem !important;
  }
  .column-gap-xxl-5 {
    column-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-inline-grid {
    display: inline-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;
  }
}
/**
 * Swiper 8.4.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 30, 2023
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}
.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-vertical > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

html {
  overflow-x: clip;
  height: 100%;
}

body {
  background-color: #ffffff;
  position: relative;
  overflow-x: clip;
  font-size: 1rem;
  line-height: 1.375rem;
  color: #1E1E1E;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-height: 100dvh;
  font-variant-numeric: lining-nums proportional-nums;
}

.main {
  flex: 1 0 auto;
  padding-bottom: 4.0625rem;
  padding-top: var(--header-height, 0px);
}
@media (min-width: 992px) {
  .main {
    padding-bottom: 5rem;
  }
}

.skip-link:focus {
  position: fixed !important;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 10000;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0.75rem 1.5rem !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: nowrap !important;
  border-radius: 0.75rem;
  background-color: #01184E;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

@font-face {
  font-family: "Raleway";
  src: url("fonts/Raleway-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("fonts/Raleway-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
* {
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-variant-numeric: lining-nums proportional-nums;
}

.text-l {
  font-size: 1.125rem !important;
  line-height: 1.4 !important;
}

.text-m {
  font-size: 1rem !important;
  line-height: 1.5 !important;
}

.text-s {
  font-size: 0.875rem !important;
  line-height: 1.4 !important;
  letter-spacing: 1.3% !important;
}

.text-xs {
  font-size: 0.75rem !important;
  line-height: 1.4 !important;
}

@media (min-width: 768px) {
  .text-md-l {
    font-size: 1.125rem !important;
    line-height: 1.4 !important;
  }
}
@media (min-width: 992px) {
  .text-lg-s {
    font-size: 0.875rem !important;
    line-height: 1.4 !important;
  }
  .text-lg-m {
    font-size: 1rem !important;
    line-height: 1.5 !important;
  }
  .text-lg-l {
    font-size: 1.125rem !important;
    line-height: 1.4 !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-s {
    font-size: 0.875rem !important;
    line-height: 1.4 !important;
  }
  .text-xl-m {
    font-size: 1rem !important;
    line-height: 1.5 !important;
  }
  .text-xl-l {
    font-size: 1.125rem !important;
    line-height: 1.4 !important;
  }
}
.flex-1 {
  flex: 1;
}

@media (min-width: 992px) {
  .flex-lg-1 {
    flex: 1;
  }
}
@media (min-width: 1380px) {
  .flex-xxl-1 {
    flex: 1;
  }
}
@media (max-width: 575.98px) {
  .hide-xs {
    display: none !important;
  }
}

.hide-xs-up {
  display: none !important;
}

.hide-xs-down {
  display: none !important;
}

@media (max-width: 575.98px) {
  .w-xs-100 {
    width: 100%;
  }
}

.w-to-xs-100 {
  width: 100%;
}

.flex-xs-up {
  display: flex;
}

.flex-xs-down {
  display: flex;
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .hide-sm {
    display: none !important;
  }
}

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

@media (max-width: 575.98px) {
  .hide-sm-down {
    display: none !important;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .w-sm-100 {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .w-to-sm-100 {
    width: 100%;
  }
}

@media (min-width: 576px) {
  .flex-sm-up {
    display: flex;
  }
}

@media (max-width: 575.98px) {
  .flex-sm-down {
    display: flex;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .hide-md {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hide-md-up {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .hide-md-down {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .w-md-100 {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .w-to-md-100 {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .flex-md-up {
    display: flex;
  }
}

@media (max-width: 767.98px) {
  .flex-md-down {
    display: flex;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .hide-lg {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .hide-lg-up {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  .hide-lg-down {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .w-lg-100 {
    width: 100%;
  }
}

@media (max-width: 991.98px) {
  .w-to-lg-100 {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .flex-lg-up {
    display: flex;
  }
}

@media (max-width: 991.98px) {
  .flex-lg-down {
    display: flex;
  }
}

@media (min-width: 1200px) and (max-width: 1379.98px) {
  .hide-xl {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .hide-xl-up {
    display: none !important;
  }
}

@media (max-width: 1199.98px) {
  .hide-xl-down {
    display: none !important;
  }
}

@media (min-width: 1200px) and (max-width: 1379.98px) {
  .w-xl-100 {
    width: 100%;
  }
}

@media (max-width: 1199.98px) {
  .w-to-xl-100 {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .flex-xl-up {
    display: flex;
  }
}

@media (max-width: 1199.98px) {
  .flex-xl-down {
    display: flex;
  }
}

@media (min-width: 1380px) {
  .hide-xxl {
    display: none !important;
  }
}

@media (min-width: 1380px) {
  .hide-xxl-up {
    display: none !important;
  }
}

@media (max-width: 1379.98px) {
  .hide-xxl-down {
    display: none !important;
  }
}

@media (min-width: 1380px) {
  .w-xxl-100 {
    width: 100%;
  }
}

@media (max-width: 1379.98px) {
  .w-to-xxl-100 {
    width: 100%;
  }
}

@media (min-width: 1380px) {
  .flex-xxl-up {
    display: flex;
  }
}

@media (max-width: 1379.98px) {
  .flex-xxl-down {
    display: flex;
  }
}

.m-1 {
  margin: 0.25rem !important;
}

.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.py-1 {
  padding-block: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

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

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

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

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

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

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

.gap-2 {
  gap: 0.5rem !important;
}

.py-2 {
  padding-block: 0.5rem !important;
}

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

.mx-3 {
  margin-left: 0.75rem !important;
  margin-right: 0.75rem !important;
}

.my-3 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}

.mt-3 {
  margin-top: 0.75rem !important;
}

.mr-3 {
  margin-right: 0.75rem !important;
}

.mb-3 {
  margin-bottom: 0.75rem !important;
}

.ml-3 {
  margin-left: 0.75rem !important;
}

.gap-3 {
  gap: 0.75rem !important;
}

.py-3 {
  padding-block: 0.75rem !important;
}

.m-4 {
  margin: 1rem !important;
}

.mx-4 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.my-4 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.mt-4 {
  margin-top: 1rem !important;
}

.mr-4 {
  margin-right: 1rem !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.ml-4 {
  margin-left: 1rem !important;
}

.gap-4 {
  gap: 1rem !important;
}

.py-4 {
  padding-block: 1rem !important;
}

.m-5 {
  margin: 1.25rem !important;
}

.mx-5 {
  margin-left: 1.25rem !important;
  margin-right: 1.25rem !important;
}

.my-5 {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}

.mt-5 {
  margin-top: 1.25rem !important;
}

.mr-5 {
  margin-right: 1.25rem !important;
}

.mb-5 {
  margin-bottom: 1.25rem !important;
}

.ml-5 {
  margin-left: 1.25rem !important;
}

.gap-5 {
  gap: 1.25rem !important;
}

.py-5 {
  padding-block: 1.25rem !important;
}

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

.mx-6 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.my-6 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.mt-6 {
  margin-top: 1.5rem !important;
}

.mr-6 {
  margin-right: 1.5rem !important;
}

.mb-6 {
  margin-bottom: 1.5rem !important;
}

.ml-6 {
  margin-left: 1.5rem !important;
}

.gap-6 {
  gap: 1.5rem !important;
}

.py-6 {
  padding-block: 1.5rem !important;
}

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

.mx-7 {
  margin-left: 1.75rem !important;
  margin-right: 1.75rem !important;
}

.my-7 {
  margin-top: 1.75rem !important;
  margin-bottom: 1.75rem !important;
}

.mt-7 {
  margin-top: 1.75rem !important;
}

.mr-7 {
  margin-right: 1.75rem !important;
}

.mb-7 {
  margin-bottom: 1.75rem !important;
}

.ml-7 {
  margin-left: 1.75rem !important;
}

.gap-7 {
  gap: 1.75rem !important;
}

.py-7 {
  padding-block: 1.75rem !important;
}

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

.mx-8 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.my-8 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.mt-8 {
  margin-top: 2rem !important;
}

.mr-8 {
  margin-right: 2rem !important;
}

.mb-8 {
  margin-bottom: 2rem !important;
}

.ml-8 {
  margin-left: 2rem !important;
}

.gap-8 {
  gap: 2rem !important;
}

.py-8 {
  padding-block: 2rem !important;
}

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

.mx-9 {
  margin-left: 2.25rem !important;
  margin-right: 2.25rem !important;
}

.my-9 {
  margin-top: 2.25rem !important;
  margin-bottom: 2.25rem !important;
}

.mt-9 {
  margin-top: 2.25rem !important;
}

.mr-9 {
  margin-right: 2.25rem !important;
}

.mb-9 {
  margin-bottom: 2.25rem !important;
}

.ml-9 {
  margin-left: 2.25rem !important;
}

.gap-9 {
  gap: 2.25rem !important;
}

.py-9 {
  padding-block: 2.25rem !important;
}

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

.mx-10 {
  margin-left: 2.5rem !important;
  margin-right: 2.5rem !important;
}

.my-10 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.mt-10 {
  margin-top: 2.5rem !important;
}

.mr-10 {
  margin-right: 2.5rem !important;
}

.mb-10 {
  margin-bottom: 2.5rem !important;
}

.ml-10 {
  margin-left: 2.5rem !important;
}

.gap-10 {
  gap: 2.5rem !important;
}

.py-10 {
  padding-block: 2.5rem !important;
}

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

.mx-11 {
  margin-left: 2.75rem !important;
  margin-right: 2.75rem !important;
}

.my-11 {
  margin-top: 2.75rem !important;
  margin-bottom: 2.75rem !important;
}

.mt-11 {
  margin-top: 2.75rem !important;
}

.mr-11 {
  margin-right: 2.75rem !important;
}

.mb-11 {
  margin-bottom: 2.75rem !important;
}

.ml-11 {
  margin-left: 2.75rem !important;
}

.gap-11 {
  gap: 2.75rem !important;
}

.py-11 {
  padding-block: 2.75rem !important;
}

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

.mx-12 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.my-12 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

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

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

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

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

.gap-12 {
  gap: 3rem !important;
}

.py-12 {
  padding-block: 3rem !important;
}

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

.mx-13 {
  margin-left: 3.25rem !important;
  margin-right: 3.25rem !important;
}

.my-13 {
  margin-top: 3.25rem !important;
  margin-bottom: 3.25rem !important;
}

.mt-13 {
  margin-top: 3.25rem !important;
}

.mr-13 {
  margin-right: 3.25rem !important;
}

.mb-13 {
  margin-bottom: 3.25rem !important;
}

.ml-13 {
  margin-left: 3.25rem !important;
}

.gap-13 {
  gap: 3.25rem !important;
}

.py-13 {
  padding-block: 3.25rem !important;
}

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

.mx-14 {
  margin-left: 3.5rem !important;
  margin-right: 3.5rem !important;
}

.my-14 {
  margin-top: 3.5rem !important;
  margin-bottom: 3.5rem !important;
}

.mt-14 {
  margin-top: 3.5rem !important;
}

.mr-14 {
  margin-right: 3.5rem !important;
}

.mb-14 {
  margin-bottom: 3.5rem !important;
}

.ml-14 {
  margin-left: 3.5rem !important;
}

.gap-14 {
  gap: 3.5rem !important;
}

.py-14 {
  padding-block: 3.5rem !important;
}

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

.mx-15 {
  margin-left: 3.75rem !important;
  margin-right: 3.75rem !important;
}

.my-15 {
  margin-top: 3.75rem !important;
  margin-bottom: 3.75rem !important;
}

.mt-15 {
  margin-top: 3.75rem !important;
}

.mr-15 {
  margin-right: 3.75rem !important;
}

.mb-15 {
  margin-bottom: 3.75rem !important;
}

.ml-15 {
  margin-left: 3.75rem !important;
}

.gap-15 {
  gap: 3.75rem !important;
}

.py-15 {
  padding-block: 3.75rem !important;
}

.m-16 {
  margin: 4rem !important;
}

.mx-16 {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

.my-16 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.mt-16 {
  margin-top: 4rem !important;
}

.mr-16 {
  margin-right: 4rem !important;
}

.mb-16 {
  margin-bottom: 4rem !important;
}

.ml-16 {
  margin-left: 4rem !important;
}

.gap-16 {
  gap: 4rem !important;
}

.py-16 {
  padding-block: 4rem !important;
}

@media (min-width: 768px) {
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .py-md-1 {
    padding-block: 0.25rem !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .py-md-2 {
    padding-block: 0.5rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .gap-md-3 {
    gap: 0.75rem !important;
  }
  .py-md-3 {
    padding-block: 0.75rem !important;
  }
  .mb-md-3 {
    margin-bottom: 0.75rem !important;
  }
  .gap-md-4 {
    gap: 1rem !important;
  }
  .py-md-4 {
    padding-block: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1rem !important;
  }
  .gap-md-5 {
    gap: 1.25rem !important;
  }
  .py-md-5 {
    padding-block: 1.25rem !important;
  }
  .mb-md-5 {
    margin-bottom: 1.25rem !important;
  }
  .gap-md-6 {
    gap: 1.5rem !important;
  }
  .py-md-6 {
    padding-block: 1.5rem !important;
  }
  .mb-md-6 {
    margin-bottom: 1.5rem !important;
  }
  .gap-md-7 {
    gap: 1.75rem !important;
  }
  .py-md-7 {
    padding-block: 1.75rem !important;
  }
  .mb-md-7 {
    margin-bottom: 1.75rem !important;
  }
  .gap-md-8 {
    gap: 2rem !important;
  }
  .py-md-8 {
    padding-block: 2rem !important;
  }
  .mb-md-8 {
    margin-bottom: 2rem !important;
  }
  .gap-md-9 {
    gap: 2.25rem !important;
  }
  .py-md-9 {
    padding-block: 2.25rem !important;
  }
  .mb-md-9 {
    margin-bottom: 2.25rem !important;
  }
  .gap-md-10 {
    gap: 2.5rem !important;
  }
  .py-md-10 {
    padding-block: 2.5rem !important;
  }
  .mb-md-10 {
    margin-bottom: 2.5rem !important;
  }
  .gap-md-11 {
    gap: 2.75rem !important;
  }
  .py-md-11 {
    padding-block: 2.75rem !important;
  }
  .mb-md-11 {
    margin-bottom: 2.75rem !important;
  }
  .gap-md-12 {
    gap: 3rem !important;
  }
  .py-md-12 {
    padding-block: 3rem !important;
  }
  .mb-md-12 {
    margin-bottom: 3rem !important;
  }
  .gap-md-13 {
    gap: 3.25rem !important;
  }
  .py-md-13 {
    padding-block: 3.25rem !important;
  }
  .mb-md-13 {
    margin-bottom: 3.25rem !important;
  }
  .gap-md-14 {
    gap: 3.5rem !important;
  }
  .py-md-14 {
    padding-block: 3.5rem !important;
  }
  .mb-md-14 {
    margin-bottom: 3.5rem !important;
  }
  .gap-md-15 {
    gap: 3.75rem !important;
  }
  .py-md-15 {
    padding-block: 3.75rem !important;
  }
  .mb-md-15 {
    margin-bottom: 3.75rem !important;
  }
  .gap-md-16 {
    gap: 4rem !important;
  }
  .py-md-16 {
    padding-block: 4rem !important;
  }
  .mb-md-16 {
    margin-bottom: 4rem !important;
  }
}
@media (min-width: 992px) {
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .py-lg-0 {
    padding-block: 0 !important;
  }
  .py-lg-1 {
    padding-block: 0.25rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .py-lg-0 {
    padding-block: 0 !important;
  }
  .py-lg-2 {
    padding-block: 0.5rem !important;
  }
  .gap-lg-3 {
    gap: 0.75rem !important;
  }
  .py-lg-0 {
    padding-block: 0 !important;
  }
  .py-lg-3 {
    padding-block: 0.75rem !important;
  }
  .gap-lg-4 {
    gap: 1rem !important;
  }
  .py-lg-0 {
    padding-block: 0 !important;
  }
  .py-lg-4 {
    padding-block: 1rem !important;
  }
  .gap-lg-5 {
    gap: 1.25rem !important;
  }
  .py-lg-0 {
    padding-block: 0 !important;
  }
  .py-lg-5 {
    padding-block: 1.25rem !important;
  }
  .gap-lg-6 {
    gap: 1.5rem !important;
  }
  .py-lg-0 {
    padding-block: 0 !important;
  }
  .py-lg-6 {
    padding-block: 1.5rem !important;
  }
  .gap-lg-7 {
    gap: 1.75rem !important;
  }
  .py-lg-0 {
    padding-block: 0 !important;
  }
  .py-lg-7 {
    padding-block: 1.75rem !important;
  }
  .gap-lg-8 {
    gap: 2rem !important;
  }
  .py-lg-0 {
    padding-block: 0 !important;
  }
  .py-lg-8 {
    padding-block: 2rem !important;
  }
  .gap-lg-9 {
    gap: 2.25rem !important;
  }
  .py-lg-0 {
    padding-block: 0 !important;
  }
  .py-lg-9 {
    padding-block: 2.25rem !important;
  }
  .gap-lg-10 {
    gap: 2.5rem !important;
  }
  .py-lg-0 {
    padding-block: 0 !important;
  }
  .py-lg-10 {
    padding-block: 2.5rem !important;
  }
  .gap-lg-11 {
    gap: 2.75rem !important;
  }
  .py-lg-0 {
    padding-block: 0 !important;
  }
  .py-lg-11 {
    padding-block: 2.75rem !important;
  }
  .gap-lg-12 {
    gap: 3rem !important;
  }
  .py-lg-0 {
    padding-block: 0 !important;
  }
  .py-lg-12 {
    padding-block: 3rem !important;
  }
  .gap-lg-13 {
    gap: 3.25rem !important;
  }
  .py-lg-0 {
    padding-block: 0 !important;
  }
  .py-lg-13 {
    padding-block: 3.25rem !important;
  }
  .gap-lg-14 {
    gap: 3.5rem !important;
  }
  .py-lg-0 {
    padding-block: 0 !important;
  }
  .py-lg-14 {
    padding-block: 3.5rem !important;
  }
  .gap-lg-15 {
    gap: 3.75rem !important;
  }
  .py-lg-0 {
    padding-block: 0 !important;
  }
  .py-lg-15 {
    padding-block: 3.75rem !important;
  }
  .gap-lg-16 {
    gap: 4rem !important;
  }
  .py-lg-0 {
    padding-block: 0 !important;
  }
  .py-lg-16 {
    padding-block: 4rem !important;
  }
}
@media (min-width: 1200px) {
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .py-xl-1 {
    padding-block: 0.25rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .py-xl-2 {
    padding-block: 0.5rem !important;
  }
  .gap-xl-3 {
    gap: 0.75rem !important;
  }
  .py-xl-3 {
    padding-block: 0.75rem !important;
  }
  .gap-xl-4 {
    gap: 1rem !important;
  }
  .py-xl-4 {
    padding-block: 1rem !important;
  }
  .gap-xl-5 {
    gap: 1.25rem !important;
  }
  .py-xl-5 {
    padding-block: 1.25rem !important;
  }
  .gap-xl-6 {
    gap: 1.5rem !important;
  }
  .py-xl-6 {
    padding-block: 1.5rem !important;
  }
  .gap-xl-7 {
    gap: 1.75rem !important;
  }
  .py-xl-7 {
    padding-block: 1.75rem !important;
  }
  .gap-xl-8 {
    gap: 2rem !important;
  }
  .py-xl-8 {
    padding-block: 2rem !important;
  }
  .gap-xl-9 {
    gap: 2.25rem !important;
  }
  .py-xl-9 {
    padding-block: 2.25rem !important;
  }
  .gap-xl-10 {
    gap: 2.5rem !important;
  }
  .py-xl-10 {
    padding-block: 2.5rem !important;
  }
  .gap-xl-11 {
    gap: 2.75rem !important;
  }
  .py-xl-11 {
    padding-block: 2.75rem !important;
  }
  .gap-xl-12 {
    gap: 3rem !important;
  }
  .py-xl-12 {
    padding-block: 3rem !important;
  }
  .gap-xl-13 {
    gap: 3.25rem !important;
  }
  .py-xl-13 {
    padding-block: 3.25rem !important;
  }
  .gap-xl-14 {
    gap: 3.5rem !important;
  }
  .py-xl-14 {
    padding-block: 3.5rem !important;
  }
  .gap-xl-15 {
    gap: 3.75rem !important;
  }
  .py-xl-15 {
    padding-block: 3.75rem !important;
  }
  .gap-xl-16 {
    gap: 4rem !important;
  }
  .py-xl-16 {
    padding-block: 4rem !important;
  }
}
@media (min-width: 1380px) {
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .py-xxl-1 {
    padding-block: 0.25rem !important;
  }
  .px-xxl-1 {
    padding-inline: 0.25rem !important;
  }
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .py-xxl-2 {
    padding-block: 0.5rem !important;
  }
  .px-xxl-2 {
    padding-inline: 0.5rem !important;
  }
  .gap-xxl-3 {
    gap: 0.75rem !important;
  }
  .py-xxl-3 {
    padding-block: 0.75rem !important;
  }
  .px-xxl-3 {
    padding-inline: 0.75rem !important;
  }
  .gap-xxl-4 {
    gap: 1rem !important;
  }
  .py-xxl-4 {
    padding-block: 1rem !important;
  }
  .px-xxl-4 {
    padding-inline: 1rem !important;
  }
  .gap-xxl-5 {
    gap: 1.25rem !important;
  }
  .py-xxl-5 {
    padding-block: 1.25rem !important;
  }
  .px-xxl-5 {
    padding-inline: 1.25rem !important;
  }
  .gap-xxl-6 {
    gap: 1.5rem !important;
  }
  .py-xxl-6 {
    padding-block: 1.5rem !important;
  }
  .px-xxl-6 {
    padding-inline: 1.5rem !important;
  }
  .gap-xxl-7 {
    gap: 1.75rem !important;
  }
  .py-xxl-7 {
    padding-block: 1.75rem !important;
  }
  .px-xxl-7 {
    padding-inline: 1.75rem !important;
  }
  .gap-xxl-8 {
    gap: 2rem !important;
  }
  .py-xxl-8 {
    padding-block: 2rem !important;
  }
  .px-xxl-8 {
    padding-inline: 2rem !important;
  }
  .gap-xxl-9 {
    gap: 2.25rem !important;
  }
  .py-xxl-9 {
    padding-block: 2.25rem !important;
  }
  .px-xxl-9 {
    padding-inline: 2.25rem !important;
  }
  .gap-xxl-10 {
    gap: 2.5rem !important;
  }
  .py-xxl-10 {
    padding-block: 2.5rem !important;
  }
  .px-xxl-10 {
    padding-inline: 2.5rem !important;
  }
  .gap-xxl-11 {
    gap: 2.75rem !important;
  }
  .py-xxl-11 {
    padding-block: 2.75rem !important;
  }
  .px-xxl-11 {
    padding-inline: 2.75rem !important;
  }
  .gap-xxl-12 {
    gap: 3rem !important;
  }
  .py-xxl-12 {
    padding-block: 3rem !important;
  }
  .px-xxl-12 {
    padding-inline: 3rem !important;
  }
  .gap-xxl-13 {
    gap: 3.25rem !important;
  }
  .py-xxl-13 {
    padding-block: 3.25rem !important;
  }
  .px-xxl-13 {
    padding-inline: 3.25rem !important;
  }
  .gap-xxl-14 {
    gap: 3.5rem !important;
  }
  .py-xxl-14 {
    padding-block: 3.5rem !important;
  }
  .px-xxl-14 {
    padding-inline: 3.5rem !important;
  }
  .gap-xxl-15 {
    gap: 3.75rem !important;
  }
  .py-xxl-15 {
    padding-block: 3.75rem !important;
  }
  .px-xxl-15 {
    padding-inline: 3.75rem !important;
  }
  .gap-xxl-16 {
    gap: 4rem !important;
  }
  .py-xxl-16 {
    padding-block: 4rem !important;
  }
  .px-xxl-16 {
    padding-inline: 4rem !important;
  }
}
.radius-xs {
  border-radius: 0.25rem;
}

.radius-sm {
  border-radius: 0.5rem;
}

.radius-md {
  border-radius: 0.75rem;
}

.radius-lg {
  border-radius: 1rem;
}

.radius-full {
  border-radius: 5.625rem;
}

.radius-14 {
  border-radius: 0.875rem;
}

.bg-neutral-50 {
  background-color: #F8F8F8;
}

.text-neutral-50 {
  color: #F8F8F8;
}

.bg-neutral-100 {
  background-color: #F1F1F1;
}

.text-neutral-100 {
  color: #F1F1F1;
}

.bg-neutral-200 {
  background-color: #DCDCDC;
}

.text-neutral-200 {
  color: #DCDCDC;
}

.bg-neutral-300 {
  background-color: #C3C3C3;
}

.text-neutral-300 {
  color: #C3C3C3;
}

.bg-neutral-400 {
  background-color: #A9A9A9;
}

.text-neutral-400 {
  color: #A9A9A9;
}

.bg-neutral-500 {
  background-color: #8D8D8D;
}

.text-neutral-500 {
  color: #8D8D8D;
}

.bg-neutral-600 {
  background-color: #717171;
}

.text-neutral-600 {
  color: #717171;
}

.bg-neutral-700 {
  background-color: #555555;
}

.text-neutral-700 {
  color: #555555;
}

.bg-neutral-800 {
  background-color: #393939;
}

.text-neutral-800 {
  color: #393939;
}

.bg-neutral-900 {
  background-color: #1E1E1E;
}

.text-neutral-900 {
  color: #1E1E1E;
}

.bg-magenta-50 {
  background-color: #FFECF0;
}

.text-magenta-50 {
  color: #FFECF0;
}

.bg-magenta-100 {
  background-color: #FFD2DD;
}

.text-magenta-100 {
  color: #FFD2DD;
}

.bg-magenta-200 {
  background-color: #FFA9C0;
}

.text-magenta-200 {
  color: #FFA9C0;
}

.bg-magenta-300 {
  background-color: #FF7FA7;
}

.text-magenta-300 {
  color: #FF7FA7;
}

.bg-magenta-400 {
  background-color: #FF4C8F;
}

.text-magenta-400 {
  color: #FF4C8F;
}

.bg-magenta-500 {
  background-color: #F1007A;
}

.text-magenta-500 {
  color: #F1007A;
}

.bg-magenta-600 {
  background-color: #CC0066;
}

.text-magenta-600 {
  color: #CC0066;
}

.bg-magenta-700 {
  background-color: #A80053;
}

.text-magenta-700 {
  color: #A80053;
}

.bg-magenta-800 {
  background-color: #780039;
}

.text-magenta-800 {
  color: #780039;
}

.bg-magenta-900 {
  background-color: #46001E;
}

.text-magenta-900 {
  color: #46001E;
}

.bg-graphite-50 {
  background-color: #F4F5FF;
}

.text-graphite-50 {
  color: #F4F5FF;
}

.bg-graphite-100 {
  background-color: #E6E9FF;
}

.text-graphite-100 {
  color: #E6E9FF;
}

.bg-graphite-200 {
  background-color: #AAB7FE;
}

.text-graphite-200 {
  color: #AAB7FE;
}

.bg-graphite-300 {
  background-color: #8298FE;
}

.text-graphite-300 {
  color: #8298FE;
}

.bg-graphite-400 {
  background-color: #567BFD;
}

.text-graphite-400 {
  color: #567BFD;
}

.bg-graphite-500 {
  background-color: #0C5FFA;
}

.text-graphite-500 {
  color: #0C5FFA;
}

.bg-graphite-600 {
  background-color: #084BCA;
}

.text-graphite-600 {
  color: #084BCA;
}

.bg-graphite-700 {
  background-color: #04399E;
}

.text-graphite-700 {
  color: #04399E;
}

.bg-graphite-800 {
  background-color: #022874;
}

.text-graphite-800 {
  color: #022874;
}

.bg-graphite-900 {
  background-color: #01184E;
}

.text-graphite-900 {
  color: #01184E;
}

.sr-only {
  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;
}
.sr-only:not(caption) {
  position: absolute !important;
}
.sr-only * {
  overflow: hidden !important;
}

/* -----------------
  DEBUG UTILITIES
-------------------*/
.debug-center::after {
  content: "";
  position: absolute;
  top: -400%;
  left: 50%;
  width: 1px;
  height: 800%;
  background-color: rgb(0, 255, 255);
}

.menu-blackout {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #ffffff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.menu {
  padding: 0;
  background: #ffffff;
  z-index: 5000;
  border-bottom: 1px solid #DCDCDC;
}
@media (min-width: 992px) {
  .menu {
    border-bottom: 1px solid #e8e8e8;
  }
}
.menu .shipping-top-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #CC0066;
  color: #ffffff;
  position: relative;
  font-size: 0.75rem;
  line-height: 1.125rem;
}
@media (min-width: 992px) {
  .menu .shipping-top-bar {
    font-size: 0.875rem;
    line-height: 1.25rem;
    max-height: 3.125rem;
  }
}
.menu .shipping-top-bar::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #CC0066;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.menu .shipping-top-bar img {
  width: 3.125rem;
  height: 3.125rem;
}
.menu .shipping-top-bar .shipping-message-close-button {
  width: 1.25rem;
  height: 1.25rem;
  color: #ffffff;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  right: 0;
}
.menu .header-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #1E1E1E;
  display: block;
  flex-shrink: 0;
}
.menu .search-toggle .header-icon {
  width: 1.375rem;
  height: 1.375rem;
}
.menu .header-icon-button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1E1E1E;
  background: transparent;
  border: none;
  padding: 0;
  text-decoration: none;
  cursor: pointer;
  line-height: 0;
}
.menu .header-icon-button:hover, .menu .header-icon-button:focus-visible {
  color: #F1007A;
}
.menu .header-top-row .header-top-row__inner {
  padding-top: 0.4375rem;
  padding-bottom: 0.4375rem;
  min-height: 3.25rem;
}
@media (min-width: 992px) {
  .menu .header-top-row .header-top-row__inner {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    min-height: 0;
  }
}
.menu .header-top-row .header-brand-group {
  min-width: 0;
}
.menu .header-top-row .header-actions {
  flex-shrink: 0;
}
.menu .header-top-row .logo {
  min-width: 6.625rem;
  max-width: 6.625rem;
  height: auto;
}
@media (min-width: 992px) {
  .menu .header-top-row .logo {
    min-width: 7.625rem;
    max-width: none;
  }
}
.menu .header-top-row .cart-button,
.menu .header-top-row .account-button {
  color: #1E1E1E;
}
@media (min-width: 992px) {
  .menu .header-top-row .cart-button,
  .menu .header-top-row .account-button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.625rem;
    font-size: 0.75rem;
    line-height: 1.4;
    padding: 0;
    line-height: 1.4;
  }
}
.menu .header-top-row .cart-button .cart-count {
  position: absolute;
  top: -0.1875rem;
  right: -0.1875rem;
  width: 0.875rem;
  height: 0.875rem;
  font-family: Poppins, sans-serif;
  font-size: 0.625rem;
  line-height: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F1007A;
  color: #ffffff;
  border-radius: 5.625rem;
  padding: 0.125rem 0 0 0.0625rem;
}
.menu .header-top-row .account-button .chevron {
  width: 1rem;
  height: 1rem;
}
.menu .header-top-row .search-wrapper {
  width: 100%;
  max-width: 47.625rem;
}
@media (min-width: 992px) {
  .menu .header-top-row .search-wrapper {
    max-width: 30rem;
  }
}
@media (min-width: 1380px) {
  .menu .header-top-row .search-wrapper {
    max-width: 47.625rem;
  }
}
.menu .header-top-row .search-wrapper--mobile {
  padding-bottom: 0.5rem;
}
.menu .header-top-row .search-wrapper--mobile[hidden] {
  display: none !important;
}
.menu .header-top-row .search-wrapper .dgwt-wcas-search-wrapp {
  min-width: 100%;
}
.menu .header-top-row .search-wrapper .dgwt-wcas-search-wrapp .dgwt-wcas-search-form .dgwt-wcas-sf-wrapp {
  position: relative;
  padding: 0;
}
.menu .header-top-row .search-wrapper .dgwt-wcas-search-wrapp .dgwt-wcas-search-form .dgwt-wcas-sf-wrapp .screen-reader-text {
  visibility: hidden;
  position: absolute;
  left: -9999px;
  top: -9999px;
}
.menu .header-top-row .search-wrapper .dgwt-wcas-search-wrapp .dgwt-wcas-search-form .dgwt-wcas-sf-wrapp .dgwt-wcas-search-input {
  font-size: 0.875rem;
  line-height: 1.4;
  background: #F8F8F8;
  border: 1px solid #DCDCDC;
  border-radius: 5.625rem;
  padding: 0.5rem 1rem;
  width: 100%;
  height: 40px;
}
.menu .header-top-row .search-wrapper .dgwt-wcas-search-wrapp .dgwt-wcas-search-form .dgwt-wcas-sf-wrapp .dgwt-wcas-search-input:focus-visible {
  outline: 2px solid #C3C3C3;
  border: 1px solid #C3C3C3;
  box-shadow: none;
}
.menu .header-top-row .search-wrapper .dgwt-wcas-search-wrapp .dgwt-wcas-search-form .dgwt-wcas-sf-wrapp .dgwt-wcas-search-submit {
  position: absolute;
  top: 1px;
  right: 1px;
  left: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8F8F8;
  border: none;
  height: 100%;
  cursor: pointer;
  border-radius: 5.625rem;
  width: 3.375rem;
  height: 38px;
}
.menu .header-top-row .search-wrapper .dgwt-wcas-search-wrapp .dgwt-wcas-search-form .dgwt-wcas-sf-wrapp .dgwt-wcas-search-submit:hover {
  background: #F1F1F1;
}
.menu .header-top-row .search-wrapper .dgwt-wcas-search-wrapp .dgwt-wcas-search-form .dgwt-wcas-sf-wrapp .dgwt-wcas-preloader {
  display: none;
}
.menu .header-bottom-row {
  height: 0;
  overflow: visible;
  padding: 0;
  border: 0;
}
.menu .header-bottom-row > .container {
  padding-top: 0;
  padding-bottom: 0;
}
.menu .header-bottom-row > .container > .w-100 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  min-height: 0;
}
@media (min-width: 992px) {
  .menu .header-bottom-row {
    height: auto;
    display: block;
    overflow: visible;
  }
}
.menu .header-bottom-row .main-navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 4;
  transform: translateX(100%);
  overflow-y: auto;
  pointer-events: auto;
}
@media (min-width: 992px) {
  .menu .header-bottom-row .main-navigation {
    position: static;
    width: auto;
    height: auto;
    transform: none;
    overflow: visible;
    background: transparent;
  }
}
@media (min-width: 992px) {
  .menu .header-bottom-row .main-navigation .main-nav-list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
    position: static;
  }
}
.menu .header-bottom-row .main-navigation .main-nav-list .top-level-item {
  font-size: 0.875rem;
  line-height: 1.4;
  letter-spacing: 1.3%;
}
@media (min-width: 992px) {
  .menu .header-bottom-row .main-navigation .main-nav-list .top-level-item {
    position: static;
  }
}
.menu .header-bottom-row .main-navigation .main-nav-list .top-level-item .top-level-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.3s ease;
}
.menu .header-bottom-row .main-navigation .main-nav-list .top-level-item .top-level-link:hover {
  color: #F1007A;
}
.menu .header-bottom-row .main-navigation .main-nav-list .top-level-item .top-level-link:hover svg path {
  stroke: #F1007A;
}
.menu .header-bottom-row .main-navigation .main-nav-list .top-level-item .top-level-link .chevron {
  width: 1rem;
}
.menu .header-bottom-row .main-navigation .submenu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  z-index: 3;
}
@media (min-width: 992px) {
  .menu .header-bottom-row .main-navigation .submenu-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    margin-left: 0;
    height: auto;
    transform: none;
    opacity: 0;
    visibility: hidden;
    overflow: visible;
  }
}
@media (max-width: 991.98px) {
  .menu .header-bottom-row .main-navigation .submenu-wrapper .mega-menu {
    display: none;
  }
}
@media (min-width: 992px) {
  .menu .header-bottom-row .main-navigation .submenu-wrapper .mega-menu {
    width: 100%;
    padding: 1.25rem 0;
    box-shadow: 0 0.0625rem 0 rgba(0, 0, 0, 0.15), 0 0.75rem 2.5rem -1rem rgba(0, 0, 0, 0.4);
  }
}
.menu .header-bottom-row .main-navigation .submenu-wrapper .mega-menu__columns {
  gap: 1.5rem;
}
.menu .header-bottom-row .main-navigation .submenu-wrapper .mega-menu__column {
  width: 13.875rem;
}
.menu .header-bottom-row .main-navigation .submenu-wrapper .mega-menu__column-title {
  color: #1E1E1E;
  border-color: #C3C3C3 !important;
}
.menu .header-bottom-row .main-navigation .submenu-wrapper .mega-menu__link {
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 1.3%;
  color: #1E1E1E;
}
.menu .header-bottom-row .main-navigation .submenu-wrapper .mega-menu__link:hover {
  color: #F1007A;
}
.menu .header-bottom-row .main-navigation .submenu-wrapper .mega-menu__filter-swatch {
  width: 0.875rem;
  border: 1px solid #C3C3C3;
  background: #ffffff;
}
.menu .header-bottom-row .main-navigation .submenu-wrapper .mega-menu__filter-swatch img {
  width: 100%;
  object-fit: cover;
}
.menu .header-bottom-row .main-navigation .submenu-wrapper .mega-menu__filter-swatch--empty {
  background: #F1F1F1;
}
.menu .header-bottom-row .main-navigation .submenu-wrapper .mega-menu__placeholder {
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 500;
}
.menu .header-bottom-row .main-navigation .submenu-wrapper .mega-menu__featured {
  width: 15rem;
}
.menu .header-bottom-row .main-navigation .submenu-wrapper .mega-menu__featured-image {
  height: 11.25rem;
  border-color: #DCDCDC !important;
  background: #ffffff;
  border-radius: 0.75rem;
}
.menu .header-bottom-row .main-navigation .submenu-wrapper .mega-menu__featured-title {
  color: #000000;
}
.menu .header-bottom-row .main-navigation .submenu-wrapper .mega-menu__featured-badge {
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 500;
}

.dgwt-wcas-suggestions-wrapp {
  position: fixed !important;
  top: 7rem !important;
  padding: 0.5rem 1rem;
  background: #ffffff;
  border: 1px solid #DCDCDC;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .dgwt-wcas-suggestions-wrapp {
    top: 4rem !important;
  }
}
.footer {
  flex-shrink: 0;
  background: linear-gradient(246deg, #01184E 48.17%, #084BCA 134.08%);
  color: #ffffff;
  padding-block: 1.5rem;
}
.footer .footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  padding-bottom: 1.875rem;
}
@media (min-width: 576px) {
  .footer .footer__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .footer .footer__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .footer .footer__inner {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer .footer__contact {
  color: rgba(255, 255, 255, 0.85);
}
@media (min-width: 576px) {
  .footer .footer__contact {
    padding-right: 2.25rem;
  }
}
@media (min-width: 992px) {
  .footer .footer__contact {
    display: flex;
    flex-direction: column;
  }
}
.footer .footer__contact .footer__logo {
  width: 7.5625rem;
}
.footer .footer__icon {
  height: auto;
  margin-top: 0.25rem;
  fill: #333;
}
@media (min-width: 576px) {
  .footer .footer__nav {
    display: flex;
  }
}
@media (min-width: 768px) {
  .footer .footer__nav {
    padding-block: 2rem;
    padding-left: 3rem;
  }
}
@media (min-width: 1200px) {
  .footer .footer__nav {
    grid-column: span 2;
  }
}
.footer .footer-navigation {
  display: flex;
  flex-direction: column;
  gap: 2.625rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer .footer-navigation--root {
  column-gap: 2.5rem;
  row-gap: 1rem;
}
@media (min-width: 576px) {
  .footer .footer-navigation--root {
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  .footer .footer-navigation--root {
    column-gap: 4rem;
  }
}
@media (min-width: 992px) {
  .footer .footer-navigation--root {
    flex-direction: row;
    column-gap: 5rem;
  }
}
@media (min-width: 1200px) {
  .footer .footer-navigation--root {
    column-gap: 7rem;
  }
}
.footer .footer-navigation--nested {
  flex-direction: column;
  row-gap: 0.5rem;
}
@media (min-width: 576px) {
  .footer .footer-navigation--nested {
    margin-top: 0.5rem;
  }
}
@media (min-width: 992px) {
  .footer .footer-navigation--nested {
    margin-top: 1.5rem;
  }
}
.footer .footer-navigation__item {
  margin: 0;
}
.footer .footer-navigation__link {
  transition: color 0.3s ease;
}
.footer .footer-navigation__link:hover {
  color: #CC0066;
}
.footer .footer-navigation__link--top,
.footer .footer-navigation__label--top {
  font-size: 1.125rem;
  line-height: 1.5rem;
}
@media (min-width: 576px) {
  .footer .footer-navigation__label--top {
    font-weight: 500;
  }
}
@media (min-width: 992px) {
  .footer .footer-navigation__label--top {
    font-weight: 400;
  }
}
.footer .footer__cta {
  width: 100%;
  border-radius: 0.875rem;
  border: 1px solid var(--Graphite-600, #084BCA);
  padding: 1.5rem 1rem;
  height: max-content;
}
.footer .footer__cta .footer-cta__avatar {
  width: 5.3125rem;
  height: 5.3125rem;
  border-radius: 50%;
  overflow: hidden;
}
.footer .footer__cta .footer-cta__contacts {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  margin-top: 1.125rem;
}
.footer .footer__cta .footer-cta__contacts .footer-cta__contact {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.footer .footer__cta-button {
  width: 100%;
}

.shop-columns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 992px) {
  .shop-columns {
    display: grid;
    grid-template-columns: 19.5rem minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
  }
}

.shop-loop {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.shop-loop__toolbar {
  flex-shrink: 0;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .shop-loop__toolbar {
    min-height: 2.625rem;
  }
}

.products-loop .scroll-offset {
  top: -12.5rem;
}

@media (min-width: 992px) {
  .shop-title .results-count {
    font-size: 0.9375rem;
    line-height: 1.5;
  }
}

.shop-description {
  margin-top: 1rem;
  max-width: 45rem;
}
.shop-description > *:last-child {
  margin-bottom: 0;
}

.shop-loop .products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 576px) {
  .shop-loop .products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .shop-loop .products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
.shop-loop .products > .product {
  display: flex;
  min-width: 0;
}
.shop-loop .products .product-card {
  width: 100%;
  height: 100%;
}

.pagination-placeholder {
  width: 100%;
  margin-top: 1.5rem;
}
@media (min-width: 992px) {
  .pagination-placeholder {
    margin-top: 2rem;
  }
}

.development {
  min-height: 100vh;
  background-color: #ffffff;
}

.styleguide {
  padding: 3rem 1.5rem;
}

.styleguide--with-site-header {
  padding-top: 13.75rem;
}

.styleguide__inner {
  max-width: 75rem;
  margin: 0 auto;
}

.styleguide__header {
  border-bottom: 1px solid #DCDCDC;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.styleguide__section {
  padding-top: 0.5rem;
  margin-bottom: 3rem;
}

.styleguide__section-title {
  border-bottom: 1px solid #F1F1F1;
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}

.styleguide__palette-title {
  margin-bottom: 1rem;
}

.styleguide__grid {
  display: grid;
  gap: 1.5rem;
}

.styleguide__item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  border: 1px solid #DCDCDC;
  border-radius: 0.75rem;
  background: #ffffff;
}

.styleguide__label {
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 600;
  color: #717171;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.styleguide__hex {
  font-size: 0.75rem;
  color: #8D8D8D;
}

.styleguide__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.styleguide__icons-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.styleguide__icon-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem;
  border: 1px solid #DCDCDC;
  border-radius: 0.75rem;
  background: #ffffff;
}

.styleguide__icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.styleguide__icon-name {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #393939;
  word-break: break-word;
}

.styleguide__spacing-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.styleguide__spacing-group {
  min-width: 0;
}

.styleguide__spacing-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  padding: 1rem 1.25rem;
  border: 1px solid #DCDCDC;
  border-radius: 0.75rem;
  background: #ffffff;
  list-style: none;
}

.styleguide__spacing-line {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #393939;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.styleguide__swatches {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(8.75rem, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.styleguide__swatch {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem;
  border: 1px solid #DCDCDC;
  border-radius: 0.75rem;
  background: #ffffff;
}

.styleguide__swatch-color {
  height: 4rem;
  border-radius: 0.5rem;
  border: 1px solid #DCDCDC;
}

.styleguide__radius-demo {
  width: 5rem;
  height: 5rem;
  background: #E6E9FF;
  border: 2px solid #567BFD;
}

.cart-page {
  padding-block: 1rem 3rem;
}
@media (min-width: 992px) {
  .cart-page {
    padding-block: 1.5rem 5rem;
  }
}
.cart-page__nav {
  margin-bottom: 1rem;
}
.cart-page__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 5.625rem;
  background-color: #ffffff;
  color: #1E1E1E;
  box-shadow: 0 0.25rem 0.9375rem -0.1875rem rgba(0, 0, 0, 0.3);
  text-decoration: none;
}
.cart-page__back .icon {
  width: 1.125rem;
  height: 1.125rem;
}
.cart-page__back:hover {
  color: #CC0066;
}
.cart-page__header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .cart-page__header {
    margin-bottom: 2rem;
  }
}
.cart-page .checkout-steps {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cart-page .checkout-steps {
    margin-bottom: 1.5rem;
  }
}
.cart-page__title {
  margin: 0;
  color: #1E1E1E;
}
.cart-page__lead {
  margin: 0;
  color: #717171;
  max-width: 35rem;
}
.cart-page .woocommerce-breadcrumb {
  margin-block: 0 1.5rem;
}
@media (min-width: 992px) {
  .cart-page .woocommerce-breadcrumb {
    margin-block: 0 2rem;
  }
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 31.8125rem;
  margin-inline: auto;
  padding-block: 1.5rem 2rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cart-empty {
    padding-block: 0.5rem 2.5rem;
  }
}
.cart-empty__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 20rem;
  height: 11.25rem;
}
.cart-empty__image {
  display: block;
  width: 9.4375rem;
  height: 10.25rem;
  max-width: 100%;
  object-fit: contain;
}
.cart-empty__title {
  max-width: 100%;
}
.cart-empty__description {
  max-width: 100%;
}
.cart-empty__button {
  flex-shrink: 0;
}

.cart-template {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 992px) {
  .cart-template {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 23.75rem;
    gap: 1.5rem;
    align-items: start;
  }
}
@media (min-width: 1200px) {
  .cart-template {
    grid-template-columns: minmax(0, 1fr) 26.25rem;
  }
}

.cart-template__main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}

.cart-template__toolbar {
  display: none;
}

.cart-template__toolbar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-template__icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.125rem;
  height: 2.125rem;
  padding: 0;
  border: 1px solid #C3C3C3;
  border-radius: 0.5rem;
  background: #ffffff;
  color: #717171;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cart-template__icon-btn .icon {
  width: 1.125rem;
  height: 1.125rem;
}
.cart-template__icon-btn:hover {
  color: #CC0066;
  border-color: #A9A9A9;
}
.cart-template__icon-btn.loading {
  opacity: 0.6;
  pointer-events: none;
}

.cart-template__items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-template__form-actions {
  margin: 0;
}

.cart-template__upsell {
  margin-top: 0.5rem;
}

.cart-summary {
  position: relative;
}
@media (min-width: 992px) {
  .cart-summary {
    position: sticky;
    top: 1.5rem;
  }
}

.cart-summary__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem;
  background: #F8F8F8;
  border: 1px solid #C3C3C3;
  border-radius: 0.75rem;
}

.cart-summary__title {
  margin: 0;
  color: #1E1E1E;
}

.cart-summary__count {
  margin: 0;
  color: #717171;
}
.cart-summary__count strong {
  color: #1E1E1E;
}

.cart-summary__promo {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cart-summary__promo-text {
  margin: 0;
  color: #717171;
}
.cart-summary__promo-text strong {
  color: #1E1E1E;
}

.cart-summary__coupon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.75rem;
  border: 1px solid #C3C3C3;
  border-radius: 0.5rem;
  background: #ffffff;
}

.cart-summary__coupon-input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 0;
  background: transparent;
  color: #1E1E1E;
  font-size: 0.875rem;
  line-height: 1.4;
}
.cart-summary__coupon-input::placeholder {
  color: #8D8D8D;
}
.cart-summary__coupon-input:focus {
  outline: none;
}

.cart-summary__coupon-apply {
  flex-shrink: 0;
  color: #01184E;
  padding-inline: 0 !important;
}

.cart-summary__total {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.5rem;
}

.cart-summary__total-labels {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cart-summary__total-label {
  color: #1E1E1E;
}

.cart-summary__total-note {
  color: #717171;
}

.cart-summary__total-value {
  margin: 0;
  color: #CC0066;
  text-align: right;
}

.cart-summary__cta {
  width: 100%;
}

.cart-summary__legal {
  margin: 0;
  color: #717171;
  text-align: center;
}

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

.share-url {
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid #C3C3C3;
  border-radius: 0.75rem;
  background: #ffffff;
}

.share-url-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.share-code {
  flex: 1;
  min-width: 0;
  word-break: break-all;
  font-size: 0.875rem;
  color: #555555;
}

.copy-share {
  cursor: pointer;
  color: #CC0066;
  font-weight: 600;
}

.checkout-page {
  padding-block: 1rem 3rem;
}
@media (min-width: 992px) {
  .checkout-page {
    padding-block: 1.5rem 5rem;
  }
}

.checkout-page__nav {
  margin-bottom: 1rem;
}

.checkout-page__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 5.625rem;
  background-color: #ffffff;
  color: #1E1E1E;
  box-shadow: 0 0.25rem 0.9375rem -0.1875rem rgba(0, 0, 0, 0.3);
  text-decoration: none;
}
.checkout-page__back .icon {
  width: 1.125rem;
  height: 1.125rem;
}
.checkout-page__back:hover {
  color: #CC0066;
}

.checkout-page .woocommerce-breadcrumb {
  margin-block: 0 1.5rem;
}
@media (min-width: 992px) {
  .checkout-page .woocommerce-breadcrumb {
    margin-block: 0 2rem;
  }
}

.checkout-page .checkout-steps {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .checkout-page .checkout-steps {
    margin-bottom: 1.5rem;
  }
}

.checkout-page__header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .checkout-page__header {
    margin-bottom: 2rem;
  }
}

.checkout-page__title {
  margin: 0;
  color: #1E1E1E;
}

.checkout-page__lead {
  margin: 0;
  color: #1E1E1E;
  max-width: 35rem;
}

.checkout-template {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 992px) {
  .checkout-template {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 23.75rem;
    gap: 1.5rem;
    align-items: start;
  }
}
@media (min-width: 1200px) {
  .checkout-template {
    grid-template-columns: minmax(0, 1fr) 26.5rem;
  }
}

.checkout-template__main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}
@media (min-width: 992px) {
  .checkout-template__main {
    grid-column: 1;
  }
}

.checkout-template__aside {
  min-width: 0;
}
@media (min-width: 992px) {
  .checkout-template__aside {
    grid-column: 2;
    position: sticky;
    top: calc(var(--header-height, 0px) + 1.5rem);
  }
}

@media (min-width: 992px) {
  .checkout-template:has(> .woocommerce-NoticeGroup) > .woocommerce-NoticeGroup {
    grid-column: 1;
    grid-row: 1;
  }
  .checkout-template:has(> .woocommerce-NoticeGroup) .checkout-template__main {
    grid-row: 2;
  }
  .checkout-template:has(> .woocommerce-NoticeGroup) .checkout-template__aside {
    grid-row: 1/span 2;
  }
}

.checkout-template .woocommerce-NoticeGroup {
  min-width: 0;
}

.checkout-template .woocommerce-NoticeGroup .woocommerce-error {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  padding: 1rem;
  list-style: none;
  border: 1px solid #FFA9C0;
  border-radius: 0.75rem;
  background-color: #FFECF0;
  color: #780039;
}
.checkout-template .woocommerce-NoticeGroup .woocommerce-error li {
  margin: 0;
}
.checkout-template .woocommerce-NoticeGroup .woocommerce-error a {
  color: #A80053;
}

.checkout-template__notices:empty {
  display: none;
}

.checkout-template__back {
  align-self: flex-start;
}

.checkout-template.summary .checkout-template__main {
  gap: 2rem;
}

.checkout-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #A9A9A9;
  border-radius: 0.75rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .checkout-section {
    gap: 1rem;
    padding: 2rem;
  }
}

.checkout-section--plain {
  gap: 1rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background-color: transparent;
}
@media (min-width: 992px) {
  .checkout-section--plain {
    padding: 0;
  }
}

.checkout-section__header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.checkout-section__header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-block: 0.25rem;
}

.checkout-section__heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.checkout-section__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.9375rem;
  height: 1.875rem;
  padding-inline: 0.4375rem;
  border-radius: 5.625rem;
  background-color: #1E1E1E;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.checkout-section__title {
  margin: 0;
  color: #1E1E1E;
}

.checkout-section__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  padding: 0.25rem 0.5rem;
  border-radius: 5.625rem;
  background-color: #F1F1F1;
  color: #555555;
  line-height: 1.4;
}

.checkout-section__edit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.625rem;
  color: #717171;
  border: 1px solid #C3C3C3;
  border-radius: 0.5rem;
  background: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.checkout-section__edit .icon {
  width: 1rem;
  height: 1rem;
}
.checkout-section__edit:hover {
  color: #CC0066;
  border-color: #A9A9A9;
}

.checkout-section__description {
  margin: 0;
  color: #1E1E1E;
  line-height: 1.55;
}

.checkout-section__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-section__options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checkout-section__options > li,
#shipping_method.woocommerce-shipping-methods > li,
.woocommerce-shipping-methods.checkout-section__options > li,
.wc_payment_methods.checkout-section__options > li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: none;
}

#shipping_method.woocommerce-shipping-methods,
.woocommerce-shipping-methods.checkout-section__options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

#shipping_method.woocommerce-shipping-methods .form-option,
.woocommerce-shipping-methods .form-option,
.wc_payment_methods .form-option {
  display: flex;
  width: 100%;
  box-sizing: border-box;
}

#shipping_method.woocommerce-shipping-methods .form-option__input,
#shipping_method.woocommerce-shipping-methods input.shipping_method,
.woocommerce-shipping-methods .form-option__input,
.wc_payment_methods .form-option__input {
  float: none;
  margin: 0;
  position: static;
}

.woocommerce-shipping-totals,
.woocommerce-checkout-payment {
  width: 100%;
}

.woocommerce-checkout-payment .payment_box {
  margin-top: 0.5rem;
  margin-left: 2rem;
  padding: 0.75rem 1rem;
  border: 1px solid #DCDCDC;
  border-radius: 0.75rem;
  background: #ffffff;
  color: #555555;
  font-size: 0.875rem;
  line-height: 1.4;
}

.woocommerce-checkout-payment .payment_box p:last-child {
  margin-bottom: 0;
}

.checkout-section__group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.checkout-section__group[hidden] {
  display: none;
}

.checkout-section__group-title {
  margin: 0;
  color: #1E1E1E;
}

.checkout-section__grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .checkout-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.checkout-section__grid--full {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .checkout-section__span-full {
    grid-column: 1/-1;
  }
}

.checkout-section__choices {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .checkout-section__choices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.checkout-summary__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.25rem;
  border: 1px solid #DCDCDC;
  border-radius: 0.75rem;
  background-color: #F8F8F8;
}
@media (min-width: 992px) {
  .checkout-summary__inner {
    padding: 2rem;
  }
}

.checkout-summary__title {
  margin: 0;
  color: #1E1E1E;
}

.checkout-summary__products {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-summary__products-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1E1E1E;
  text-align: left;
  cursor: pointer;
}
.checkout-summary__products-toggle strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 1.0625rem;
  margin-left: 0.5rem;
  padding-inline: 0.5rem;
  border-radius: 5.625rem;
  background-color: #F1F1F1;
  color: #555555;
  font-size: 0.75rem;
  font-weight: 600;
}
.checkout-summary__products-toggle .icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
}
.checkout-summary__products-toggle[aria-expanded=false] .icon {
  transform: rotate(-90deg);
}

.checkout-summary__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checkout-summary__list.is-collapsed {
  display: none;
}

.checkout-summary__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.checkout-summary__item-main {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  min-width: 0;
}

.checkout-summary__thumb {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  overflow: hidden;
  border-radius: 0.375rem;
  background-color: #ffffff;
}
.checkout-summary__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-summary__item-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.checkout-summary__item-name {
  margin: 0;
  color: #1E1E1E;
  font-weight: 600;
}

.checkout-summary__item-qty {
  margin: 0;
  color: #717171;
  font-weight: 500;
}

.checkout-summary__item-price {
  flex-shrink: 0;
  color: #555555;
  font-weight: 600;
  white-space: nowrap;
}
.checkout-summary__item-price .woocommerce-Price-amount,
.checkout-summary__item-price .amount,
.checkout-summary__item-price bdi {
  font-weight: inherit;
}

.checkout-summary__rows {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-block: 1.5rem;
  border-block: 1px solid #DCDCDC;
}

.checkout-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #1E1E1E;
}

.checkout-summary__row-label {
  font-weight: 500;
}

.checkout-summary__row-value {
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}
.checkout-summary__row-value .woocommerce-Price-amount,
.checkout-summary__row-value .amount,
.checkout-summary__row-value bdi {
  font-weight: inherit;
}

.checkout-summary__row--discount {
  color: #084BCA;
}

.checkout-summary__total {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.checkout-summary__total-labels {
  display: flex;
  flex-direction: column;
}

.checkout-summary__total-label {
  color: #1E1E1E;
  font-weight: 600;
}

.checkout-summary__total-note {
  color: #717171;
  font-weight: 500;
}

.checkout-summary__total-value {
  margin: 0;
  color: #CC0066;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: right;
  white-space: nowrap;
}
.checkout-summary__total-value .woocommerce-Price-amount,
.checkout-summary__total-value .amount,
.checkout-summary__total-value bdi {
  font-weight: inherit;
}

.checkout-summary__cta {
  width: 100%;
}

.checkout-summary__legal {
  display: contents;
}

.checkout-summary__note {
  margin: 0;
  color: #717171;
  text-align: center;
  font-size: 11px;
  line-height: 1.5;
}

.checkout-review__data {
  display: grid;
  gap: 1rem;
}
@media (min-width: 992px) {
  .checkout-review__data {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.checkout-review__group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-review__group-title {
  margin: 0;
  color: #717171;
  font-weight: 700;
  line-height: 1.4;
}

.checkout-review__lines {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  color: #1E1E1E;
}
.checkout-review__lines p {
  margin: 0;
  letter-spacing: 0.01em;
}

.checkout-review__invoice {
  opacity: 0.7;
}

.checkout-review__comment {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding: 1rem 0.875rem;
  border-radius: 0.375rem;
  background-color: #F1F1F1;
}

.checkout-review__comment-title {
  margin: 0;
  color: #1E1E1E;
  font-weight: 700;
}

.checkout-review__comment-text {
  margin: 0;
  color: #717171;
}

.account-page {
  padding-block: 0 3rem;
}
@media (min-width: 992px) {
  .account-page {
    padding-block: 0 5rem;
  }
}

.account-page__layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 992px) {
  .account-page__layout {
    display: grid;
    grid-template-columns: 19.5rem minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
  }
}

.account-page__content {
  min-width: 0;
}

.account-list-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.account-list-heading__icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  color: #1E1E1E;
}

.account-list-heading__title {
  margin: 0;
  color: #1E1E1E;
}

.account-list-heading__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.5rem;
  border-radius: 5.625rem;
  background-color: #F1F1F1;
  color: #555555;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
}

.account-addresses {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 992px) {
  .account-addresses {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.account-address-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 11.125rem;
  min-width: 0;
  padding: 1.5rem;
  border: 1px solid #C3C3C3;
  border-radius: 0.75rem;
  background-color: #ffffff;
}
.account-address-card address {
  margin: 0;
  font-style: normal;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #393939;
}

.account-address-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.account-address-card__title {
  margin: 0;
  color: #1E1E1E;
}

.account-address-card__action.btn-text {
  flex-shrink: 0;
  padding-inline: 0;
}

.account-address-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 47.5rem;
}

.account-address-form__title {
  margin: 0;
  color: #1E1E1E;
}

.account-address-form__choices {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .account-address-form__choices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.account-address-form__grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .account-address-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .account-address-form__span-full {
    grid-column: 1/-1;
  }
}

.account-address-form__actions {
  margin-top: 1.5rem;
}

.account-address-form .hide {
  display: none !important;
}

.account-settings-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 33.5rem;
}
@media (min-width: 992px) {
  .account-settings-form {
    gap: 3rem;
  }
}

.account-settings-form__section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.account-settings-form__section-title {
  margin: 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid #C3C3C3;
  color: #1E1E1E;
}

.account-settings-form__fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.account-settings-form__fields .form-field:has(input[type=password]) .form-field__label::after {
  content: "*";
  color: #CC0066;
}

.account-settings-form__intro {
  margin: 0;
  color: #555555;
}

.account-settings-form__consents {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.account-settings-form__select-all {
  align-items: center;
}

.account-settings-form__password-submit,
.account-settings-form__actions .btn {
  align-self: flex-start;
}

.claim-form-page {
  padding-block: 0 3rem;
}
@media (min-width: 992px) {
  .claim-form-page {
    padding-block: 0 5rem;
  }
}

.claim-form-page__inner {
  width: 100%;
  max-width: 61.5rem;
  margin-inline: auto;
}

.claim-form-page__title {
  margin: 0 0 2rem;
}

.claim-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.claim-form__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.claim-form__back {
  padding-inline: 0;
}

.claim-form__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.claim-form__title,
.claim-form__subtitle {
  margin: 0;
}

.claim-form__subtitle {
  color: #717171;
  letter-spacing: 0.013em;
}

.claim-form__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.claim-form .checkout-section__body {
  gap: 2rem;
}

.claim-form__type-option .form-option__description {
  white-space: pre-line;
}

.claim-form__products {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.claim-form__product {
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
  width: 100%;
  cursor: pointer;
}

.claim-form__product-media {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  padding: 0.25rem;
  border-radius: 0.375rem;
  background-color: #ffffff;
}

.claim-form__product-thumb {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.375rem;
}

.claim-form__product-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.375rem;
}

.claim-form__product-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.claim-form__product-name,
.claim-form__product-note {
  margin: 0;
}

.claim-form__product-note {
  color: #717171;
}

.claim-form__product--disabled {
  cursor: not-allowed;
}
.claim-form__product--disabled .form-check__input,
.claim-form__product--disabled .claim-form__product-media,
.claim-form__product--disabled .claim-form__product-name {
  opacity: 0.5;
}

.claim-form__textarea .form-field__control--textarea {
  min-height: 14.0625rem;
}

.claim-form__attachments-title {
  margin: 0;
  color: #1E1E1E;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}

.claim-form__dropzone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-direction: column;
  width: 100%;
  min-height: 10.8125rem;
  padding: 1rem;
  border: 2px dashed #C3C3C3;
  border-radius: 0.5rem;
  background-color: #F8F8F8;
  cursor: pointer;
  text-align: center;
}
.claim-form__dropzone:hover, .claim-form__dropzone.is-dragover {
  border-color: #A9A9A9;
}
.claim-form__dropzone:focus-within {
  border-color: #1E1E1E;
}
.claim-form__dropzone.is-invalid {
  border-color: #CC0066;
}

.claim-form__file-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}

.claim-form__file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid #DCDCDC;
  border-radius: 0.375rem;
  background-color: #ffffff;
}

.claim-form__file-name {
  min-width: 0;
  margin: 0;
  word-break: break-word;
}

.claim-form__file-remove {
  flex-shrink: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #CC0066;
  cursor: pointer;
}
.claim-form__file-remove:focus-visible {
  outline: 2px solid #1E1E1E;
  outline-offset: 2px;
}

.claim-form__file-error,
.claim-form__products-error,
.claim-form__submit-error {
  margin: 0;
}

.claim-form__products.is-invalid {
  outline: 1px solid #CC0066;
  outline-offset: 0.5rem;
}

.claim-form__submit.is-loading,
.claim-form__submit:disabled {
  opacity: 0.7;
  pointer-events: none;
}

.claim-form__success {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem;
  border: 1px solid #DCDCDC;
  border-radius: 0.75rem;
  background-color: #F8F8F8;
}

.claim-form__success-title,
.claim-form__success-message {
  margin: 0;
}

.claim-form__success[hidden],
.claim-form__form[hidden] {
  display: none;
}

.claim-form__dropzone-icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  overflow: hidden;
}
.claim-form__dropzone-icon img {
  display: block;
  width: 48px;
  height: 48px;
}

.claim-form__dropzone-text,
.claim-form__dropzone-hint {
  margin: 0;
  width: 100%;
}

.claim-form__dropzone-hint {
  color: #555555;
}

.claim-form__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.claim-form__submit {
  width: 100%;
}
@media (min-width: 768px) {
  .claim-form__submit {
    width: auto;
  }
}

.claim-form__note {
  margin: 0;
  width: 100%;
  color: #555555;
  text-align: center;
}

.claim-form__note-mark {
  font-weight: 700;
  color: #CC0066;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.review-form__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.review-form__back {
  padding-inline: 0;
}

.review-form__title {
  margin: 0;
}

.review-form__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review-form .checkout-section__body {
  gap: 1.5rem;
}

.review-form__product {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.review-form__product-media {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  padding: 0.25rem;
  border-radius: 0.375rem;
  background-color: #ffffff;
}

.review-form__product-thumb {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.375rem;
}

.review-form__product-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.375rem;
}

.review-form__product-info {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.review-form__product-name,
.review-form__product-qty,
.review-form__product-meta {
  margin: 0;
}

.review-form__product-name {
  color: #1E1E1E;
}
.review-form__product-name a {
  color: inherit;
  text-decoration: none;
}
.review-form__product-name a:hover, .review-form__product-name a:focus-visible {
  color: #CC0066;
}

.review-form__product-qty,
.review-form__product-meta {
  color: #555555;
}

.review-form__rating {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.review-form__stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.review-form__star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  border: 0;
  background: transparent;
  color: #DCDCDC;
  cursor: pointer;
}
.review-form__star .icon {
  display: block;
  width: 1.25rem;
  height: 1.125rem;
}
.review-form__star.is-selected, .review-form__star.is-hover {
  color: #CC0066;
}
.review-form__star:focus-visible {
  outline: 2px solid #1E1E1E;
  outline-offset: 2px;
}

.review-form__textarea .form-field__control--textarea {
  min-height: 11.25rem;
}

.review-form__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.review-form__counter {
  margin: 0;
  align-self: flex-end;
  color: #717171;
}
.review-form__counter.is-limit {
  color: #CC0066;
  font-weight: 700;
}

.review-form__dropzone {
  position: relative;
  width: 100%;
}

.review-form__dropzone-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-direction: column;
  width: 100%;
  min-height: 10.8125rem;
  padding: 1rem;
  border: 2px dashed #C3C3C3;
  border-radius: 0.5rem;
  background-color: #F8F8F8;
  cursor: pointer;
  text-align: center;
}

.review-form__dropzone:hover .review-form__dropzone-label,
.review-form__dropzone.is-dragover .review-form__dropzone-label {
  border-color: #A9A9A9;
}

.review-form__dropzone:focus-within .review-form__dropzone-label {
  border-color: #1E1E1E;
}

.review-form__dropzone-overlay {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: rgba(248, 248, 248, 0.92);
  pointer-events: none;
}

.review-form__dropzone.is-dragover .review-form__dropzone-overlay {
  display: flex;
}

.review-form__dropzone-overlay-text {
  margin: 0;
  color: #555555;
}

.review-form__dropzone-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #555555;
}
.review-form__dropzone-icon .icon {
  width: 2rem;
  height: 2rem;
}

.review-form__dropzone-text,
.review-form__dropzone-hint {
  margin: 0;
  width: 100%;
}

.review-form__dropzone-text {
  color: #1E1E1E;
}

.review-form__dropzone-hint {
  color: #555555;
}

.review-form__gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.review-form__gallery-empty[hidden] {
  display: none;
}

.review-form__thumb {
  width: 6rem;
}

.review-form__thumb-card {
  position: relative;
  display: block;
  width: 6rem;
  height: 6rem;
  overflow: hidden;
  border: 1px solid #DCDCDC;
  border-radius: 0.375rem;
  background-color: #F8F8F8;
}

.review-form__thumb-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-form__thumb-file {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #555555;
}
.review-form__thumb-file .icon {
  width: 2rem;
  height: 2rem;
}

.review-form__thumb-remove {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  border: 0;
  border-radius: 0 0 0 0.375rem;
  background-color: #ffffff;
  color: #CC0066;
  cursor: pointer;
}
.review-form__thumb-remove .icon {
  width: 0.875rem;
  height: 0.875rem;
  pointer-events: none;
}
.review-form__thumb-remove:focus-visible {
  outline: 2px solid #1E1E1E;
  outline-offset: 2px;
}

.review-form__upload-status {
  margin: 0.75rem 0 0;
}

.review-form__agreement {
  margin-top: 0.5rem;
}

.review-form__submit-error {
  margin: 0;
}

.review-form__submit.is-loading,
.review-form__submit:disabled {
  opacity: 0.7;
  pointer-events: none;
}

.review-form__success {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem;
  border: 1px solid #DCDCDC;
  border-radius: 0.75rem;
  background-color: #F8F8F8;
}

.review-form__success-title,
.review-form__success-message {
  margin: 0;
}

.review-form__success[hidden],
.review-form__form[hidden],
.review-form__agreement[hidden] {
  display: none;
}

.review-form__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.review-form__submit {
  width: 100%;
}
@media (min-width: 768px) {
  .review-form__submit {
    width: auto;
  }
}

.review-form__note {
  margin: 0;
  width: 100%;
  color: #555555;
  text-align: center;
}

.review-form__note-mark {
  font-weight: 700;
  color: #CC0066;
}

.kariera-page {
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .kariera-page {
    padding-bottom: 5rem;
  }
}

.kariera-page__title {
  margin: 0 0 2rem;
  width: 100%;
}

.kariera-page__intro {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 992px) {
  .kariera-page__intro {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
}

.kariera-page__photos {
  display: flex;
  align-items: stretch;
  gap: 0.25rem;
  flex-direction: row;
  width: 100%;
}
@media (min-width: 992px) {
  .kariera-page__photos {
    gap: 0.5rem;
    flex: 0 1 40.5rem;
    min-width: 0;
    max-width: 100%;
  }
}

.kariera-page__photo {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  border-radius: 0.5rem;
}
.kariera-page__photo:first-child {
  flex: 318 1 0;
}
.kariera-page__photo:last-child {
  flex: 322 1 0;
}
@media (min-width: 992px) {
  .kariera-page__photo {
    border-radius: 0.75rem;
  }
}
.kariera-page__photo img {
  display: block;
  width: 100%;
  height: auto;
}

.kariera-page__copy {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}
@media (min-width: 992px) {
  .kariera-page__copy {
    flex: 544 1 0;
    max-width: 34rem;
  }
}

.kariera-page__lead,
.kariera-page__text {
  margin: 0;
  width: 100%;
}

.kariera-page__text strong {
  font-weight: 600;
}

.kariera-page__button {
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .kariera-page__button {
    width: auto;
    align-self: flex-start;
  }
}

.kariera-opinions {
  margin-top: 4rem;
}
@media (min-width: 992px) {
  .kariera-opinions {
    margin-top: 5rem;
  }
}

.kariera-opinions__inner {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 992px) {
  .kariera-opinions__inner {
    gap: 2rem;
  }
}

.kariera-opinions__header {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 992px) {
  .kariera-opinions__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.kariera-opinions__intro {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-direction: column;
  min-width: 0;
}

.kariera-opinions__label,
.kariera-opinions__title {
  margin: 0;
}

.kariera-opinions__nav {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex-direction: row;
  flex-shrink: 0;
}
.kariera-opinions__nav .swiper-button-prev,
.kariera-opinions__nav .swiper-button-next {
  position: static;
  margin: 0;
  width: 3rem;
  height: 3rem;
}
.kariera-opinions__nav .swiper-button-prev::after,
.kariera-opinions__nav .swiper-button-next::after {
  display: none;
}
.kariera-opinions__nav .swiper-button-prev.swiper-button-disabled,
.kariera-opinions__nav .swiper-button-next.swiper-button-disabled {
  background: #DCDCDC !important;
  color: #8D8D8D !important;
  opacity: 1;
  cursor: default;
  pointer-events: none;
}

.kariera-opinions__slider {
  width: 100%;
  min-width: 0;
  overflow: visible;
}
.kariera-opinions__slider .swiper-slide {
  height: auto;
}

.kariera-opinions__card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  flex-direction: column;
  height: 100%;
  min-height: 17.125rem;
  padding: 2rem;
  background-color: #F8F8F8;
  border-radius: 0.5rem;
}
@media (min-width: 992px) {
  .kariera-opinions__card {
    min-height: 17.5rem;
    gap: 3rem;
  }
}

.kariera-opinions__quote,
.kariera-opinions__name,
.kariera-opinions__role {
  margin: 0;
  width: 100%;
}

.kariera-opinions__name {
  text-box: trim-both cap alphabetic;
}

.kariera-opinions__person {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  flex-direction: column;
  width: 100%;
}

.kariera-benefits {
  margin-top: 4rem;
}
@media (min-width: 992px) {
  .kariera-benefits {
    margin-top: 5rem;
  }
}

.kariera-benefits__inner {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 992px) {
  .kariera-benefits__inner {
    gap: 2rem;
  }
}

.kariera-benefits__intro {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}

.kariera-benefits__label,
.kariera-benefits__title,
.kariera-benefits__lead,
.kariera-benefits__name {
  margin: 0;
}

.kariera-benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .kariera-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
@media (min-width: 992px) {
  .kariera-benefits__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.kariera-benefits__item {
  min-width: 0;
}

.kariera-benefits__card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-direction: column;
  height: 100%;
  padding: 1rem;
  background-color: #F8F8F8;
  border-radius: 0.75rem;
  text-align: center;
}

.kariera-benefits__icon {
  width: 5rem;
  height: 5rem;
  flex-shrink: 0;
  overflow: hidden;
}
.kariera-benefits__icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.kariera-process {
  margin-top: 4rem;
}
@media (min-width: 992px) {
  .kariera-process {
    margin-top: 5rem;
  }
}

.kariera-process__inner {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 992px) {
  .kariera-process__inner {
    display: grid;
    grid-template-columns: minmax(0, 33.5rem) minmax(0, 38.1875rem);
    grid-template-areas: "header ." "visual steps";
    justify-content: space-between;
    align-items: start;
    column-gap: 4rem;
    row-gap: 3rem;
  }
}

.kariera-process__header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}
@media (min-width: 992px) {
  .kariera-process__header {
    grid-area: header;
  }
}

.kariera-process__label,
.kariera-process__title,
.kariera-process__step-title,
.kariera-process__step-text {
  margin: 0;
}

.kariera-process__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: 100%;
}
@media (min-width: 992px) {
  .kariera-process__visual {
    grid-area: visual;
    justify-content: center;
  }
}

.kariera-process__circle {
  width: 13.4375rem;
  height: 13.4375rem;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 50%;
  background-color: #F4F5FF;
}
@media (min-width: 992px) {
  .kariera-process__circle {
    width: 24.3125rem;
    height: 24.3125rem;
  }
}

.kariera-process__mark {
  position: absolute;
  top: 9.25%;
  right: 47.04%;
  bottom: 9.25%;
  left: 0;
  display: block;
  max-width: none;
  pointer-events: none;
}

.kariera-process__photo {
  position: absolute;
  top: 0;
  left: 9.25%;
  width: 87.4%;
  height: 134.7%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.kariera-process__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.kariera-process__steps {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  position: relative;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0 0 0 2.875rem;
  list-style: none;
}
@media (min-width: 992px) {
  .kariera-process__steps {
    grid-area: steps;
    justify-self: start;
    width: 100%;
    max-width: 38.1875rem;
    padding-left: 2.25rem;
  }
}

.kariera-process__step {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 1.125rem;
  flex-direction: column;
}
.kariera-process__step:not(:last-child) {
  min-height: 10.125rem;
}
.kariera-process__step::before {
  position: absolute;
  top: 0;
  left: -2.875rem;
  width: 0.625rem;
  height: 0.625rem;
  content: "";
  border-radius: 50%;
  background-color: #CC0066;
}
@media (min-width: 992px) {
  .kariera-process__step::before {
    left: -2.25rem;
  }
}
.kariera-process__step:not(:last-child)::after {
  position: absolute;
  top: 1.125rem;
  left: -2.5625rem;
  width: 1px;
  height: calc(100% - 1.625rem);
  content: "";
  background-color: #CC0066;
}
@media (min-width: 992px) {
  .kariera-process__step:not(:last-child)::after {
    left: -1.9375rem;
  }
}

.kariera-jobs {
  margin-top: 4rem;
  scroll-margin-top: 7.5rem;
}
@media (min-width: 992px) {
  .kariera-jobs {
    margin-top: 5rem;
    scroll-margin-top: 8.75rem;
  }
}

.kariera-jobs__inner {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 992px) {
  .kariera-jobs__inner {
    max-width: 68.5rem;
    margin-inline: auto;
    gap: 2rem;
  }
}

.kariera-jobs__header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}

.kariera-jobs__label,
.kariera-jobs__title,
.kariera-jobs__head-position,
.kariera-jobs__head-location,
.kariera-jobs__position,
.kariera-jobs__location {
  margin: 0;
}

.kariera-jobs__list {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  flex-direction: column;
  width: 100%;
}

.kariera-jobs__head {
  display: none;
}
@media (min-width: 992px) {
  .kariera-jobs__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(6.5rem, max-content);
    grid-template-areas: "position location cta";
    align-items: center;
    width: 100%;
    padding: 0 1rem;
    min-height: 2.6875rem;
    background-color: #E6E9FF;
    border-radius: 0.75rem;
  }
}

.kariera-jobs__head-position {
  grid-area: position;
}

.kariera-jobs__head-location {
  grid-area: location;
}

.kariera-jobs__items {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.kariera-jobs__item {
  min-width: 0;
}

.kariera-jobs__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "position cta" "location cta";
  align-items: center;
  column-gap: 0;
  row-gap: 1rem;
  width: 100%;
  padding: 1rem;
  border: 1px solid #DCDCDC;
  border-radius: 0.75rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .kariera-jobs__card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(6.5rem, max-content);
    grid-template-areas: "position location cta";
    row-gap: 0;
  }
}

.kariera-jobs__position {
  grid-area: position;
  min-width: 0;
  padding-right: 1rem;
}

.kariera-jobs__location {
  grid-area: location;
  min-width: 0;
  padding-right: 1rem;
  font-weight: 500;
}
@media (min-width: 992px) {
  .kariera-jobs__location {
    font-weight: 600;
  }
}

.kariera-jobs__cta {
  grid-area: cta;
  justify-self: end;
  flex-shrink: 0;
}

.kariera-contact {
  margin-top: 4rem;
}
@media (min-width: 992px) {
  .kariera-contact {
    margin-top: 5rem;
  }
}

.kariera-contact__inner {
  display: flex;
  align-items: center;
  gap: 2.1875rem;
  flex-direction: column;
  width: 100%;
  text-align: center;
}

.kariera-contact__copy {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-direction: column;
  width: 100%;
}

.kariera-contact__title,
.kariera-contact__text {
  margin: 0;
  width: 100%;
}

.kariera-contact__button {
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .kariera-contact__button {
    width: auto;
  }
}

.job-offer {
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .job-offer {
    padding-bottom: 5rem;
  }
}

.job-offer__title {
  margin: 0 0 2rem;
  width: 100%;
}
@media (min-width: 992px) {
  .job-offer__title {
    margin-bottom: 1.25rem;
  }
}

.job-offer__meta {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  flex-direction: column;
  width: 100%;
  margin: 0 0 3rem;
  padding: 0;
  list-style: none;
}
@media (min-width: 992px) {
  .job-offer__meta {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0;
  }
}

.job-offer__chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-direction: row;
  width: 100%;
  min-width: 0;
  padding: 0.5rem;
  background-color: #F4F5FF;
  border-radius: 0.5rem;
}
@media (min-width: 992px) {
  .job-offer__chip {
    width: auto;
  }
}

.job-offer__chip-icon {
  display: block;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
}

.job-offer__chip-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0;
  min-width: 0;
}

.job-offer__body {
  display: flex;
  align-items: stretch;
  gap: 3rem;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 992px) {
  .job-offer__body {
    max-width: 68.5rem;
    margin: 4rem auto 0;
    gap: 4rem;
  }
}

.job-offer__block {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  flex-direction: column;
  width: 100%;
}

.job-offer__heading {
  margin: 0;
  width: 100%;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #DCDCDC;
}

.job-offer__list {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0 0 0 1.5rem;
  list-style: disc;
}

.job-offer__content {
  width: 100%;
  color: #1E1E1E;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
.job-offer__content > *:first-child {
  margin-top: 0;
}
.job-offer__content h2 {
  width: 100%;
  margin: 3rem 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #DCDCDC;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1E1E1E;
}
@media (min-width: 992px) {
  .job-offer__content h2 {
    margin-top: 4rem;
  }
}
.job-offer__content h2:first-child {
  margin-top: 0;
}
.job-offer__content h3 {
  margin: 2rem 0 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}
.job-offer__content p {
  margin: 0 0 1.5rem;
}
.job-offer__content ul,
.job-offer__content ol {
  width: 100%;
  margin: 0;
  padding: 0 0 0 1.5rem;
}
.job-offer__content ul {
  list-style: disc;
}
.job-offer__content ol {
  list-style: decimal;
}
.job-offer__content li + li {
  margin-top: 1.5rem;
}
.job-offer__content li > ul,
.job-offer__content li > ol {
  margin-top: 1rem;
  margin-bottom: 0;
  padding-left: 1.5rem;
}

.job-offer-benefits {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  flex-direction: column;
  width: 100%;
}

.job-offer-benefits__header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}
@media (min-width: 992px) {
  .job-offer-benefits__header {
    gap: 0;
  }
}

.job-offer-benefits__label,
.job-offer-benefits__lead {
  margin: 0;
  width: 100%;
}
@media (min-width: 992px) {
  .job-offer-benefits__label,
  .job-offer-benefits__lead {
    display: none;
  }
}

.job-offer-benefits__title {
  margin: 0;
  width: 100%;
}
@media (min-width: 992px) {
  .job-offer-benefits__title {
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #DCDCDC;
  }
}

.job-offer-benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .job-offer-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
@media (min-width: 992px) {
  .job-offer-benefits__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.job-offer-benefits__item {
  min-width: 0;
}

.job-offer-benefits__card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-direction: column;
  height: 100%;
  padding: 1rem;
  background-color: #F8F8F8;
  border-radius: 0.75rem;
  text-align: center;
}

.job-offer-benefits__icon {
  width: 5rem;
  height: 5rem;
  flex-shrink: 0;
  overflow: hidden;
}
.job-offer-benefits__icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.job-offer-benefits__name {
  margin: 0;
}

.job-offer-cta {
  width: 100%;
}

.job-offer-cta__inner {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-direction: column;
  width: 100%;
  padding: 2rem 1rem;
  border-radius: 0.75rem;
  overflow: hidden;
}
@media (min-width: 992px) {
  .job-offer-cta__inner {
    flex-direction: row;
    align-items: center;
    padding: 2rem;
  }
}

.job-offer-cta__title,
.job-offer-cta__text {
  margin: 0;
  width: 100%;
}
@media (min-width: 992px) {
  .job-offer-cta__title,
  .job-offer-cta__text {
    flex: 1 1 0;
    min-width: 0;
  }
}

.job-offer-cta__button {
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .job-offer-cta__button {
    width: auto;
  }
}

.job-apply {
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .job-apply {
    padding-bottom: 5rem;
  }
}
.job-apply .checkout-section {
  width: 100%;
  gap: 1.5rem;
  padding: 0;
  border: 0;
  border-radius: 0;
}
@media (min-width: 992px) {
  .job-apply .checkout-section {
    gap: 2rem;
    padding: 2rem;
    border: 1px solid #A9A9A9;
    border-radius: 0.75rem;
  }
}
.job-apply .checkout-section__body {
  gap: 1.5rem;
}
@media (min-width: 992px) {
  .job-apply .checkout-section__body {
    gap: 2rem;
  }
}
.job-apply .checkout-section__grid {
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 992px) {
  .job-apply .checkout-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.5rem;
  }
}
.job-apply .form-check--radio.form-check--plain {
  padding: 0.25rem 0;
  border: 0;
  border-radius: 0;
  background-color: transparent;
}
.job-apply .form-check--radio.form-check--plain:hover, .job-apply .form-check--radio.form-check--plain:has(.form-check__input:checked) {
  border: 0;
  background-color: transparent;
}

.job-apply__title {
  margin: 0 0 2rem;
  width: 100%;
  text-align: center;
}
@media (min-width: 992px) {
  .job-apply__title {
    max-width: 68.5rem;
    margin-inline: auto;
  }
}

.job-apply__layout {
  display: flex;
  align-items: stretch;
  gap: 3rem;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 992px) {
  .job-apply__layout {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 68.5rem;
    margin-inline: auto;
    gap: 1.5rem;
  }
}

.job-apply__form {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}
@media (min-width: 992px) {
  .job-apply__form {
    flex: 1 1 0;
    max-width: 40.5rem;
    gap: 1.5rem;
    align-items: center;
  }
}

.job-apply__aside {
  width: 100%;
  min-width: 0;
}
@media (min-width: 992px) {
  .job-apply__aside {
    flex: 0 0 26.5rem;
    max-width: 26.5rem;
    position: sticky;
    top: calc(var(--header-height, 0px) + 1.5rem);
  }
}

.job-apply__submit {
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .job-apply__submit {
    width: auto;
  }
}

.job-apply__note {
  margin: 0;
  width: 100%;
  text-align: center;
}

.job-apply__note-mark {
  font-weight: 700;
  color: #CC0066;
}

.job-apply-dropzone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-direction: column;
  width: 100%;
  min-height: 10.8125rem;
  padding: 1rem;
  border: 2px dashed #C3C3C3;
  border-radius: 0.5rem;
  background-color: #F8F8F8;
  cursor: pointer;
  text-align: center;
}
.job-apply-dropzone:hover {
  border-color: #A9A9A9;
}
.job-apply-dropzone:focus-within {
  border-color: #1E1E1E;
}

.job-apply-dropzone__icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  overflow: hidden;
}
.job-apply-dropzone__icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.job-apply-dropzone__text,
.job-apply-dropzone__hint {
  margin: 0;
  width: 100%;
}

.job-apply-dropzone__text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.125rem;
  flex-direction: column;
}

.job-apply-dropzone__link {
  color: #CC0066;
  text-decoration: underline;
}

.job-apply-radios {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.job-apply-radios legend {
  float: none;
  width: 100%;
  padding: 0;
}

.job-apply-radios__options {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 992px) {
  .job-apply-radios__options {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 0.75rem;
  }
}

.job-apply-legal {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex-direction: column;
  width: 100%;
}

.job-apply-legal__intro,
.job-apply-legal__more p {
  margin: 0;
}

.job-apply-legal__more a {
  color: #CC0066;
  text-decoration: underline;
}

.job-apply-legal__toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-direction: row;
  width: fit-content;
  color: #01184E;
  cursor: pointer;
  list-style: none;
}
.job-apply-legal__toggle::-webkit-details-marker, .job-apply-legal__toggle::marker {
  display: none;
  content: none;
}
.job-apply-legal__toggle .icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.job-apply-legal__details[open] .job-apply-legal__toggle .icon {
  transform: rotate(180deg);
}

.job-apply-legal__more {
  margin-top: 0.25rem;
}

.job-apply-process {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-direction: column;
  width: 100%;
  padding: 1.5rem 1rem;
  border: 1px solid #DCDCDC;
  border-radius: 0.75rem;
  background-color: #F8F8F8;
}
@media (min-width: 992px) {
  .job-apply-process {
    padding: 2rem;
  }
}

.job-apply-process__title {
  margin: 0;
  width: 100%;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #DCDCDC;
}

.job-apply-process__list {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  flex-direction: column;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0 0 0 2.125rem;
  list-style: none;
}

.job-apply-process__step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-direction: column;
  position: relative;
  width: 100%;
}
.job-apply-process__step::before {
  position: absolute;
  top: 0;
  left: -2.125rem;
  width: 0.625rem;
  height: 0.625rem;
  content: "";
  border-radius: 50%;
  background-color: #CC0066;
}
.job-apply-process__step:not(:last-child)::after {
  position: absolute;
  top: 1.125rem;
  left: -1.8125rem;
  width: 1px;
  height: calc(100% + 0.375rem);
  content: "";
  background-color: #CC0066;
}

.job-apply-process__step-title,
.job-apply-process__step-text {
  margin: 0;
  width: 100%;
}

.inspirations-archive {
  padding-bottom: 3rem;
}
@media (min-width: 992px) {
  .inspirations-archive {
    padding-bottom: 4rem;
  }
}

.inspirations-archive__heading {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  flex-direction: column;
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .inspirations-archive__heading {
    flex-direction: row;
    gap: 1.5rem;
  }
}
.inspirations-archive__heading h1 {
  flex: 1 1 50%;
  margin: 0;
  min-width: 0;
}

.inspirations-archive__lead {
  flex: 1 1 50%;
  min-width: 0;
  font-weight: 500;
}
.inspirations-archive__lead > *:last-child {
  margin-bottom: 0;
}

.inspirations-archive__toolbar {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .inspirations-archive__toolbar {
    margin-bottom: 1.5rem;
  }
}
.inspirations-archive__toolbar .filter-toolbar__all {
  margin-left: auto;
}

.inspirations-archive__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 768px) {
  .inspirations-archive__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .inspirations-archive__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.inspirations-archive__empty {
  grid-column: 1/-1;
}

.inspirations-archive__pagination {
  width: 100%;
  margin-top: 1.5rem;
}

.inspirations-archive__seo {
  margin-top: 3rem;
}
.inspirations-archive__seo > *:last-child {
  margin-bottom: 0;
}

.inspirations-filters {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.inspirations-filter__title {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: #1E1E1E;
}

.filters-sidebar.is-chip-focus .inspirations-filter__title {
  display: none;
}

.inspirations-filter__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.inspirations-filter__option {
  width: 100%;
  text-decoration: none;
  color: #1E1E1E;
}
.inspirations-filter__option:hover, .inspirations-filter__option:focus-visible {
  color: #1E1E1E;
}
.inspirations-filter__option:focus-visible {
  outline: 2px solid #1E1E1E;
  outline-offset: 2px;
}
.inspirations-filter__option.is-active .form-check__input,
.inspirations-filter__option .form-check__input.is-checked {
  border-color: #1E1E1E;
  background-color: #1E1E1E;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6.2L4.8 8.5L9.5 3.5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.75rem;
}
.inspirations-filter__option.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.inspirations-filters-reset.is-disabled {
  pointer-events: none;
  opacity: 0.5;
}

.tutorials-archive {
  padding-bottom: 3rem;
}
@media (min-width: 992px) {
  .tutorials-archive {
    padding-bottom: 4rem;
  }
}

.tutorials-archive__heading {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  flex-direction: column;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .tutorials-archive__heading {
    flex-direction: row;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
}
.tutorials-archive__heading h1 {
  flex: 1 1 50%;
  margin: 0;
  min-width: 0;
}

.tutorials-archive__lead {
  flex: 1 1 50%;
  min-width: 0;
  font-weight: 500;
}
.tutorials-archive__lead > *:last-child {
  margin-bottom: 0;
}

.tutorials-archive__body {
  max-width: 68.625rem;
  margin-inline: auto;
}

.tutorials-archive__categories {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.5rem;
  flex-direction: column;
  margin-bottom: 2.5rem;
}
@media (min-width: 992px) {
  .tutorials-archive__categories {
    gap: 2rem;
    margin-bottom: 3rem;
  }
}

.tutorials-archive__categories-intro {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  flex-direction: column;
}

.tutorials-archive__eyebrow {
  font-weight: 500;
}

.tutorials-archive__categories-title {
  margin: 0;
}

.tutorials-archive__tabs {
  width: 100%;
}

.tutorials-archive__tabs-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8125rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.tutorials-archive__tabs-list::-webkit-scrollbar {
  display: none;
}

.tutorials-archive__tabs-item {
  position: relative;
  flex-shrink: 0;
}
.tutorials-archive__tabs-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.4375rem;
  width: 1px;
  height: 0.75rem;
  background-color: #DCDCDC;
  transform: translateY(-50%);
}

.tutorials-archive__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  color: #555555;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  white-space: nowrap;
}
.tutorials-archive__tab:hover, .tutorials-archive__tab:focus-visible {
  color: #CC0066;
}
.tutorials-archive__tab:focus-visible {
  outline: 2px solid #01184E;
  outline-offset: 2px;
}
.tutorials-archive__tab.is-active {
  border-color: #CC0066;
  background-color: #FFECF0;
  color: #CC0066;
}

.tutorials-archive__tab-count {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  padding: 0.25rem 0.5rem;
  border-radius: 5.625rem;
  background-color: #F1F1F1;
  color: #555555;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
}
.tutorials-archive__tab.is-active .tutorials-archive__tab-count {
  background-color: #CC0066;
  color: #ffffff;
}

.tutorials-archive__fallback > p:empty {
  display: none;
}

.tutorials-archive__category {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 2rem;
  flex-direction: column;
}

.tutorials-archive__category-title {
  margin: 0;
}

.tutorials-archive__groups {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 3rem;
  flex-direction: column;
}

.tutorials-archive__group {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 1.5rem;
  flex-direction: column;
}

.tutorials-archive__group-title {
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 600;
  margin: 0;
  padding: 1rem;
  border-radius: 0.75rem;
  background-color: #E6E9FF;
}

.tutorials-archive__list {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 1rem;
  flex-direction: column;
}

.tutorials-archive__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem;
  border: 1px solid #DCDCDC;
  border-radius: 0.75rem;
}

.tutorials-archive__item-main {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  min-width: 0;
  flex: 1 1 15rem;
}

.tutorials-archive__item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  color: #1E1E1E;
}
.tutorials-archive__item-icon .icon,
.tutorials-archive__item-icon img {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  object-fit: contain;
}

.tutorials-archive__item-content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5rem;
  flex-direction: column;
  min-width: 0;
}

.tutorials-archive__item-title {
  color: #1E1E1E;
}

.tutorials-archive__item-meta {
  font-weight: 500;
}

.tutorials-archive__item-action {
  flex-shrink: 0;
  color: #01184E;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}
.tutorials-archive__item-action img {
  width: 1rem;
  height: 1rem;
  display: block;
  object-fit: contain;
}

.tutorials-archive__empty {
  margin-top: 0.5rem;
}

.tutorials-archive__seo {
  margin-top: 3rem;
}
.tutorials-archive__seo > *:last-child {
  margin-bottom: 0;
}

.faq-page__heading {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  flex-direction: column;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .faq-page__heading {
    flex-direction: row;
    gap: 1.5rem;
  }
}
.faq-page__heading h1 {
  flex: 1 1 50%;
  margin: 0;
  min-width: 0;
}

.faq-page__lead {
  flex: 1 1 50%;
  min-width: 0;
  font-weight: 500;
}

.faq-page__body {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2rem;
  flex-direction: column;
  margin-top: 2rem;
}
@media (min-width: 992px) {
  .faq-page__body {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
}

.faq-page__nav {
  flex: 0 0 auto;
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid #C3C3C3;
  border-radius: 1rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .faq-page__nav {
    position: sticky;
    top: calc(var(--header-height, 80px) + 1rem);
    width: 19.5rem;
  }
}

.faq-page__nav-list {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.5rem;
  flex-direction: column;
}

.faq-page__nav-link {
  display: flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.5rem;
  border-radius: 0.25rem;
  color: #1E1E1E;
  text-decoration: none;
}
.faq-page__nav-link:hover, .faq-page__nav-link:focus-visible {
  background-color: #F8F8F8;
  color: #1E1E1E;
}
.faq-page__nav-link:focus-visible {
  outline: 2px solid #01184E;
  outline-offset: 2px;
}
.faq-page__nav-link.is-active {
  background-color: #F8F8F8;
}

.faq-page__groups {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  max-width: 54.5rem;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 3rem;
  flex-direction: column;
}

.faq-page__group {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 1rem;
  flex-direction: column;
  scroll-margin-top: calc(var(--header-height, 80px) + 1rem);
}

.faq-page__group-title {
  margin: 0;
  padding: 1rem;
  border-radius: 0.75rem;
  background-color: #E6E9FF;
}

.faq-page .faq-section__list {
  gap: 1rem;
  max-width: none;
  margin-top: 0;
}

.faq-page .faq-section__item {
  margin-inline: 0;
  margin-bottom: 0 !important;
}

.faq-page .faq-section__question {
  padding: 1.375rem;
}

.faq-page .faq-section__question-text {
  font-size: 1.25rem;
  line-height: 1.4;
}

.faq-page .faq-section__answer {
  padding: 1rem 1.375rem 1.375rem;
}
.faq-page .faq-section__answer p,
.faq-page .faq-section__answer ul,
.faq-page .faq-section__answer ol {
  margin-bottom: 0.75rem;
}
.faq-page .faq-section__answer p:last-child,
.faq-page .faq-section__answer ul:last-child,
.faq-page .faq-section__answer ol:last-child {
  margin-bottom: 0;
}
.faq-page .faq-section__answer ul,
.faq-page .faq-section__answer ol {
  padding-left: 1.5rem;
}

.faq-page .faq-section__answer a {
  color: #CC0066;
  text-decoration: underline;
}

.dostawy-page {
  padding-bottom: 3rem;
}
@media (min-width: 992px) {
  .dostawy-page {
    padding-bottom: 5rem;
  }
}

.dostawy-page__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-direction: column;
  text-align: center;
}

.dostawy-page__title {
  margin: 0;
}

.dostawy-page__lead {
  margin: 0;
  max-width: 45rem;
}

.dostawy-page__sections {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 4rem;
  flex-direction: column;
  margin-top: 3rem;
}
@media (min-width: 992px) {
  .dostawy-page__sections {
    margin-top: 4rem;
  }
}

.dostawy-page__section {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  flex-direction: column;
}

.dostawy-page__section-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  margin: 0;
}
.dostawy-page__section-title .icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.dostawy-page__section-text {
  width: 100%;
}

.dostawy-page__cards {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 1.5rem;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 992px) {
  .dostawy-page__cards {
    flex-direction: row;
  }
}

.dostawy-page__card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-direction: column;
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
  padding: 2rem;
  border: 1px solid #C3C3C3;
  border-radius: 0.5rem;
  text-align: center;
}

.dostawy-page__card-price {
  margin: 0;
}

.dostawy-page__couriers {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2rem;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 992px) {
  .dostawy-page__couriers {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
}

.dostawy-page__courier-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12.8125rem;
  height: 6.625rem;
  flex-shrink: 0;
}
.dostawy-page__courier-logo img {
  display: block;
  object-fit: contain;
}

.dostawy-page__courier-logo--dpd img {
  width: 8.6875rem;
  height: 3.625rem;
}

.dostawy-page__courier-logo--fedex img {
  width: 8.4375rem;
  height: 2.5rem;
}

.dostawy-page__courier-logo--inpost img {
  width: 9.1875rem;
  height: 5.5rem;
}

.dostawy-page__paczkomaty-logo {
  padding: 1.25rem 1.125rem;
  width: 11.5rem;
  flex-shrink: 0;
}
.dostawy-page__paczkomaty-logo img {
  display: block;
  width: 9.1875rem;
  height: 3.375rem;
  object-fit: contain;
}

.platnosci-page {
  padding-bottom: 3rem;
}
@media (min-width: 992px) {
  .platnosci-page {
    padding-bottom: 5rem;
  }
}

.platnosci-page__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.platnosci-page__title {
  margin: 0;
}

.platnosci-page__body {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 2rem;
  flex-direction: column;
  margin-top: 2rem;
}
@media (min-width: 992px) {
  .platnosci-page__body {
    gap: 3rem;
    margin-top: 1.5rem;
  }
}

.platnosci-page__feature {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 1.5rem;
  flex-direction: column;
  width: 100%;
}

@media (min-width: 992px) {
  .platnosci-page__feature--cod {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
}

.platnosci-page__feature--online .platnosci-page__feature-copy {
  display: contents;
}
.platnosci-page__feature--online .platnosci-page__feature-title {
  order: 1;
}
.platnosci-page__feature--online .platnosci-page__media {
  order: 2;
}
.platnosci-page__feature--online .platnosci-page__feature-text {
  order: 3;
}
@media (min-width: 992px) {
  .platnosci-page__feature--online {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
  .platnosci-page__feature--online .platnosci-page__feature-copy {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 1 1 0;
    min-width: 0;
    order: 1;
  }
  .platnosci-page__feature--online .platnosci-page__media {
    order: 2;
  }
}

.platnosci-page__feature-copy {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2rem;
  flex-direction: column;
  min-width: 0;
}
@media (min-width: 992px) {
  .platnosci-page__feature-copy {
    flex: 1 1 0;
  }
}

.platnosci-page__feature-title {
  margin: 0;
  width: 100%;
}

.platnosci-page__feature-text {
  width: 100%;
}

.platnosci-page__media {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 100%;
  overflow: hidden;
  border-radius: 0.75rem;
}
.platnosci-page__media img {
  display: block;
  object-fit: contain;
}

.platnosci-page__media--cod {
  height: 11.4375rem;
}
.platnosci-page__media--cod img {
  width: 21.375rem;
  height: 12rem;
}
@media (min-width: 992px) {
  .platnosci-page__media--cod {
    width: 32.1875rem;
    height: 17.25rem;
  }
  .platnosci-page__media--cod img {
    width: 392px;
    height: 13.75rem;
  }
}

.platnosci-page__media--imoje {
  height: 6.5625rem;
}
.platnosci-page__media--imoje img {
  width: 18.875rem;
  height: 5.375rem;
}
@media (min-width: 992px) {
  .platnosci-page__media--imoje {
    width: 32.1875rem;
    height: 9.875rem;
  }
  .platnosci-page__media--imoje img {
    width: 28.375rem;
    height: 8.125rem;
  }
}

.platnosci-page__methods {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
}

.platnosci-page__row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2rem;
  flex-direction: column;
  width: 100%;
  padding-top: 1.5rem;
  border-top: 1px solid #DCDCDC;
}
@media (min-width: 992px) {
  .platnosci-page__row {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
    padding-top: 3rem;
  }
}

.platnosci-page__row + .platnosci-page__row {
  margin-top: 1.5rem;
}
@media (min-width: 992px) {
  .platnosci-page__row + .platnosci-page__row {
    margin-top: 3rem;
  }
}

.platnosci-page__row-title {
  margin: 0;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .platnosci-page__row-title {
    width: 15.625rem;
  }
}

.platnosci-page__method-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
  min-width: 0;
}

@media (min-width: 992px) {
  .platnosci-page__method-list--fast {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    flex: 1 1 0;
  }
}

@media (min-width: 992px) {
  .platnosci-page__method-list--deferred {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    flex: 1 1 0;
  }
}

.platnosci-page__method {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  flex-direction: column;
  min-width: 0;
  padding-inline: 0.5rem;
}

.platnosci-page__method-label {
  width: 100%;
}

.platnosci-page__method-logos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.platnosci-page__logo {
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.platnosci-page__logo--blik {
  width: 4.75rem;
  height: 2.25rem;
}

.platnosci-page__logo--google-pay,
.platnosci-page__logo--apple-pay {
  width: 4rem;
  height: 2.5625rem;
}

.platnosci-page__logo--visa {
  width: 3.4375rem;
  height: 1.125rem;
}

.platnosci-page__logo--mastercard {
  width: 2.9375rem;
  height: 2.3125rem;
}

.platnosci-page__logo--imoje-later {
  width: 7.25rem;
  height: 2.25rem;
}

.platnosci-page__logo--paypo {
  width: 7.3125rem;
  height: 2rem;
}

.platnosci-page__logo--twisto {
  width: 8.75rem;
  height: 2.875rem;
}

.platnosci-page__transfers {
  width: 100%;
  min-width: 0;
}
@media (min-width: 992px) {
  .platnosci-page__transfers {
    flex: 1 1 0;
  }
}
.platnosci-page__transfers img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 616/289;
  object-fit: contain;
}

.rabaty-page {
  padding-bottom: 3rem;
}
@media (min-width: 992px) {
  .rabaty-page {
    padding-bottom: 5rem;
  }
}

.rabaty-page__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-direction: column;
  width: 100%;
  text-align: center;
}

.rabaty-page__title {
  margin: 0;
  width: 100%;
}

.rabaty-page__lead {
  margin: 0;
  max-width: 100%;
}
@media (min-width: 992px) {
  .rabaty-page__lead {
    max-width: 40.75rem;
  }
}

.rabaty-page__coupons {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 1.5rem;
  flex-direction: column;
  width: 100%;
  margin-top: 1.5rem;
}
@media (min-width: 992px) {
  .rabaty-page__coupons {
    flex-direction: row;
  }
}

.rabaty-page__coupon {
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
}

.rabaty-page__card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 2rem;
  border: 1px solid #C3C3C3;
  border-radius: 0.5rem;
  background: #ffffff;
  color: inherit;
  font: inherit;
  text-align: center;
  cursor: pointer;
}

.rabaty-page__card-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-direction: column;
  width: 100%;
}

.rabaty-page__card-percent {
  margin: 0;
}

.rabaty-page__chip {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: #F1F1F1;
}

.rabaty-page__banner {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.5rem;
  flex-direction: column;
  width: 100%;
  margin-top: 3rem;
  padding: 2rem;
  border-radius: 0.75rem;
}
@media (min-width: 992px) {
  .rabaty-page__banner {
    flex-direction: row;
    align-items: center;
    margin-top: 5rem;
  }
}

.rabaty-page__banner-title {
  margin: 0;
  width: 100%;
}
@media (min-width: 992px) {
  .rabaty-page__banner-title {
    width: 17.5rem;
    flex-shrink: 0;
  }
}

.rabaty-page__banner-text {
  width: 100%;
  min-width: 0;
}
@media (min-width: 992px) {
  .rabaty-page__banner-text {
    flex: 1 1 0;
  }
}

.rabaty-page__banner-button {
  flex-shrink: 0;
}

.rabaty-page__rules {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.5rem;
  flex-direction: column;
  width: 100%;
  margin-top: 3rem;
}
@media (min-width: 992px) {
  .rabaty-page__rules {
    flex-direction: row;
    align-items: center;
    gap: 8.5rem;
    margin-top: 5rem;
  }
}

.rabaty-page__collage {
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .rabaty-page__collage {
    width: 33.5rem;
  }
}
.rabaty-page__collage img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 536/398;
}

.rabaty-page__rules-copy {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2rem;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}
@media (min-width: 992px) {
  .rabaty-page__rules-copy {
    width: 26.5rem;
    flex-shrink: 0;
  }
}

.rabaty-page__rules-title {
  margin: 0;
}

.rabaty-page__rules-list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.5rem;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding-left: 1.5rem;
}
.rabaty-page__rules-list li {
  margin: 0;
}

.rabaty-page__notice {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  width: 100%;
  margin-top: 3rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background-color: #F8F8F8;
}
@media (min-width: 992px) {
  .rabaty-page__notice {
    margin-top: 5rem;
  }
}
.rabaty-page__notice .icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.rabaty-page__notice-copy {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.25rem;
  flex-direction: column;
  min-width: 0;
  flex: 1 1 0;
}

.rabaty-page__notice-title {
  margin: 0;
  width: 100%;
}

.rabaty-page__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.1875rem;
  flex-direction: column;
  width: 100%;
  margin-top: 3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .rabaty-page__cta {
    margin-top: 5rem;
  }
}

.rabaty-page__cta-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-direction: column;
  width: 100%;
}

.rabaty-page__cta-title {
  margin: 0;
  width: 100%;
}

.rabaty-page__cta-text {
  margin: 0;
  width: 100%;
}
@media (min-width: 992px) {
  .rabaty-page__cta-text {
    max-width: 54.5rem;
  }
}

.rabaty-page__cta-button {
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .rabaty-page__cta-button {
    width: auto;
  }
}

.kontakt-page {
  padding-bottom: 3rem;
}
@media (min-width: 992px) {
  .kontakt-page {
    padding-bottom: 5rem;
  }
}
.kontakt-page .checkout-section {
  gap: 1.5rem;
}
.kontakt-page .checkout-section__body {
  gap: 1.5rem;
}
.kontakt-page .checkout-section__grid {
  gap: 1rem 1.5rem;
}

.kontakt-page__heading {
  margin: 0;
}

.kontakt-page__title {
  margin: 0;
}

.kontakt-page__layout {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 2rem;
  flex-direction: column;
  margin-top: 1.5rem;
}
@media (min-width: 992px) {
  .kontakt-page__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 1.25rem;
  }
}

.kontakt-page__form {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 1.5rem;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}
@media (min-width: 992px) {
  .kontakt-page__form {
    flex: 1 1 0;
  }
}

.kontakt-page__message .form-field__control--textarea {
  min-height: 8.75rem;
}

.kontakt-page__dropzone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-direction: column;
  width: 100%;
  min-height: 10.8125rem;
  padding: 1rem;
  border: 2px dashed #C3C3C3;
  border-radius: 0.5rem;
  background-color: #F8F8F8;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}
.kontakt-page__dropzone:hover, .kontakt-page__dropzone.is-dragover {
  border-color: #A9A9A9;
}
.kontakt-page__dropzone:focus-within {
  border-color: #1E1E1E;
}

.kontakt-page__dropzone-icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
}
.kontakt-page__dropzone-icon img {
  display: block;
  width: 3rem;
  height: 3rem;
}

.kontakt-page__dropzone-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.125rem;
  flex-direction: column;
  width: 100%;
}

.kontakt-page__dropzone-text,
.kontakt-page__dropzone-hint,
.kontakt-page__dropzone-files {
  margin: 0;
  width: 100%;
}

.kontakt-page__dropzone-link {
  color: #CC0066;
  text-decoration: underline;
}

.kontakt-page__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-direction: column;
  width: 100%;
}

.kontakt-page__submit {
  width: 100%;
}
@media (min-width: 992px) {
  .kontakt-page__submit {
    width: auto;
  }
}

.kontakt-page__note {
  margin: 0;
  text-align: center;
}

.kontakt-page__note-mark {
  font-weight: 700;
  color: #CC0066;
}

.kontakt-page__legal a {
  color: #CC0066;
  text-decoration: none;
}
.kontakt-page__legal a:hover, .kontakt-page__legal a:focus-visible {
  text-decoration: underline;
}

.kontakt-page__aside {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 1.5rem;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}
@media (min-width: 992px) {
  .kontakt-page__aside {
    flex: 0 0 26.5rem;
    max-width: 26.5rem;
    position: sticky;
    top: calc(var(--header-height, 80px) + 1.5rem);
  }
}

.kontakt-page__advisor {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.5rem;
  flex-direction: column;
  width: 100%;
  padding: 1.5rem 1rem;
  border: 1px solid #DCDCDC;
  border-radius: 0.75rem;
  background-image: linear-gradient(240deg, #01184E 48%, #084BCA 134%);
}
@media (min-width: 992px) {
  .kontakt-page__advisor {
    padding: 2rem;
  }
}

.kontakt-page__advisor-head {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  width: 100%;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.kontakt-page__advisor-avatar {
  width: 5.3125rem;
  height: 5.3125rem;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 5.625rem;
  background-color: #ffffff;
}
.kontakt-page__advisor-avatar img {
  display: block;
  width: 5.3125rem;
  height: 5.3125rem;
  object-fit: cover;
}

.kontakt-page__advisor-identity {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  flex-direction: column;
  min-width: 0;
  padding-top: 0.25rem;
}

.kontakt-page__advisor-label,
.kontakt-page__advisor-name {
  margin: 0;
}

.kontakt-page__advisor-points {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  flex-direction: column;
  width: 100%;
}
.kontakt-page__advisor-points li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
}
.kontakt-page__advisor-points .icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  color: #ffffff;
}

.kontakt-page__details {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.5rem;
  flex-direction: column;
  width: 100%;
  padding: 1.5rem 1rem;
  border: 1px solid #DCDCDC;
  border-radius: 0.75rem;
  background-color: #F8F8F8;
}
@media (min-width: 992px) {
  .kontakt-page__details {
    padding: 2rem;
  }
}

.kontakt-page__details-title,
.kontakt-page__details-label {
  margin: 0;
}

.kontakt-page__details-group {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  flex-direction: column;
  width: 100%;
}

.kontakt-page__details-link,
.kontakt-page__details-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.25rem;
  width: 100%;
  color: #1E1E1E;
  text-decoration: none;
}

.kontakt-page__details-link:hover,
.kontakt-page__details-link:focus-visible {
  color: #CC0066;
}

.kontakt-page__details-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: #1E1E1E;
}
.kontakt-page__details-icon .icon {
  width: 1rem;
  height: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 5.625rem;
  text-decoration: none;
  height: 3rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-weight: 600;
}
.btn.btn-small {
  padding: 0.5rem;
  height: 2rem;
}
.btn.btn-small .icon {
  width: 1rem;
}
.btn.btn-medium {
  padding: 0.625rem 1rem;
  height: 2.5rem;
}
.btn.btn-medium:has(> .icon:only-child) {
  padding: 0.625rem !important;
}
.btn.btn-medium .icon {
  width: 1.25rem;
}
.btn.btn-large {
  padding: 0.75rem 1.5rem;
  height: 3rem;
}
.btn.btn-large:has(> .icon:only-child) {
  padding: 0.75rem !important;
}
.btn.btn-large .icon {
  width: 1.5rem;
}
.btn.btn-primary {
  background-color: #CC0066;
  color: #ffffff;
}
.btn.btn-primary:hover {
  background: #F1007A;
}
.btn.btn-primary:active {
  background: #A80053;
}
.btn.btn-primary:focus {
  outline: 2px solid #ffffff;
  box-shadow: 0 0 0 5px #F1007A;
}
.btn.btn-secondary {
  background-color: #01184E;
  color: #ffffff;
}
.btn.btn-secondary:hover {
  background: #04399E;
}
.btn.btn-secondary:active {
  background: #022874;
}
.btn.btn-secondary:focus {
  outline: 2px solid #ffffff;
  box-shadow: 0 0 0 5px #04399E;
}
.btn.btn-outline-light {
  background: transparent;
  color: #000000;
  outline: 1px solid #C3C3C3;
}
.btn.btn-outline-light:hover {
  outline-color: #A9A9A9;
}
.btn.btn-outline-light:active {
  outline-color: #8D8D8D;
}
.btn.btn-outline-light:focus {
  box-shadow: 0 0 0 5px #F1F1F1;
}
.btn.btn-outline-light:disabled, .btn.btn-outline-light.disabled {
  background: none !important;
  outline-color: #F1F1F1 !important;
}
.btn.btn-text {
  display: inline-flex;
  background: transparent;
  color: #01184E;
  padding-block: 0 !important;
  height: auto !important;
}
.btn.btn-text:focus, .btn.btn-text:focus-visible {
  box-shadow: 0 0 0 5px #F1F1F1;
  outline: none;
}
.btn.btn-text:disabled, .btn.btn-text.disabled {
  color: #8D8D8D;
  background: none !important;
}
.btn.btn-text.btn-small {
  font-size: 0.75rem;
  line-height: 1.4;
  padding-inline: 0.5rem;
}
.btn.btn-text.btn-medium {
  font-size: 0.875rem;
  line-height: 1.4;
  padding-inline: 0.625rem;
}
.btn.btn-text.btn-large {
  font-size: 1rem;
  line-height: 1.5;
  padding-inline: 0.75rem;
}
.btn.btn-text:has(> .icon:only-child) {
  padding: 0 !important;
}
.btn:disabled, .btn.disabled {
  background: #DCDCDC !important;
  border-color: #DCDCDC !important;
  color: #8D8D8D !important;
  cursor: default !important;
  pointer-events: none !important;
}
.btn.hide-icons .icon {
  display: none;
}
.btn.show-icons-xs .icon {
  display: block;
}
@media (min-width: 576px) {
  .btn.show-icons-sm .icon {
    display: block;
  }
}
@media (min-width: 768px) {
  .btn.show-icons-md .icon {
    display: block;
  }
}
@media (min-width: 992px) {
  .btn.show-icons-lg .icon {
    display: block;
  }
}
@media (min-width: 1200px) {
  .btn.show-icons-xl .icon {
    display: block;
  }
}
@media (min-width: 1380px) {
  .btn.show-icons-xxl .icon {
    display: block;
  }
}

.icon.large {
  width: 2.5rem;
  height: 2.5rem;
}

.display-1 {
  font-size: 4rem;
  line-height: 1;
  font-weight: 600;
}

h1,
.heading-1 {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 600;
}

h2,
.heading-2 {
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 600;
}

h3,
.heading-3 {
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
}

h4,
.heading-4 {
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 600;
}

h5,
.heading-5 {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 600;
}

h6,
.heading-6 {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 600;
}

.title-1 {
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 600;
}

@media (min-width: 768px) {
  h1,
  .heading-md-1 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 600;
  }
  h2,
  .heading-md-2 {
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 600;
  }
  h3,
  .heading-md-3 {
    font-size: 2rem;
    line-height: 1;
    font-weight: 600;
  }
  h4,
  .heading-md-4 {
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 600;
  }
  h5,
  .heading-md-5 {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 600;
  }
  h6,
  .heading-md-6 {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 600;
  }
  .title-md-1 {
    font-size: 1.125rem;
    line-height: 1.4;
    font-weight: 600;
  }
}
@media (min-width: 992px) {
  h1,
  .heading-lg-1 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 600;
  }
  h2,
  .heading-lg-2 {
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 600;
  }
  h3,
  .heading-lg-3 {
    font-size: 2rem;
    line-height: 1;
    font-weight: 600;
  }
  h4,
  .heading-lg-4 {
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 600;
  }
  h5,
  .heading-lg-5 {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 600;
  }
  h6,
  .heading-lg-6 {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 600;
  }
  .title-lg-1 {
    font-size: 1.125rem;
    line-height: 1.4;
    font-weight: 600;
  }
}
@media (min-width: 1200px) {
  h1,
  .heading-xl-1 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 600;
  }
  h2,
  .heading-xl-2 {
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 600;
  }
  h3,
  .heading-xl-3 {
    font-size: 2rem;
    line-height: 1;
    font-weight: 600;
  }
  h4,
  .heading-xl-4 {
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 600;
  }
  h5,
  .heading-xl-5 {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 600;
  }
  h6,
  .heading-xl-6 {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 600;
  }
  .display-xl-1 {
    font-size: 4rem;
    line-height: 1;
    font-weight: 600;
  }
  .title-xl-1 {
    font-size: 1.125rem;
    line-height: 1.4;
    font-weight: 600;
  }
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.form-field__label {
  display: inline-flex;
  align-items: center;
  gap: 0.125rem;
  margin: 0;
  color: #717171;
}

.form-field__required {
  color: #CC0066;
}

.form-field.is-invalid .form-field__control,
.form-field.is-invalid .form-field__phone {
  border-color: #CC0066;
}

.form-check.is-invalid .form-check__input {
  border-color: #CC0066;
}

.form-field__control {
  display: block;
  width: 100%;
  min-height: 3.3125rem;
  padding: 1.125rem 0.8125rem;
  border: 1px solid #C3C3C3;
  border-radius: 0.375rem;
  background-color: #ffffff;
  color: #1E1E1E;
  font-size: 0.875rem;
  line-height: 1.2;
  transition: all 0.2s ease;
}
.form-field__control::placeholder {
  color: #717171;
}
.form-field__control:hover:not(:disabled):not(:focus) {
  border-color: #A9A9A9;
}
.form-field__control:focus {
  outline: none;
  border-color: #1E1E1E;
}
.form-field__control:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-field__control-wrap {
  position: relative;
}

.form-field__control--password {
  padding-right: 2.75rem;
}

.form-field__password-toggle {
  position: absolute;
  top: 50%;
  right: 0.8125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #555555;
  cursor: pointer;
  transform: translateY(-50%);
}
.form-field__password-toggle .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.form-field__error {
  margin: 0;
  color: #CC0066;
}

.form-field__hint {
  margin: 0;
  color: #717171;
}

.form-field__select-wrap {
  position: relative;
}

.form-field__control--select {
  appearance: none;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-field__select-icon {
  position: absolute;
  top: 50%;
  right: 0.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555555;
  pointer-events: none;
  transform: translateY(-50%);
}
.form-field__select-icon .icon {
  width: 1rem;
  height: 1rem;
}

.form-field__control--textarea {
  min-height: 7.25rem;
  resize: vertical;
}

.form-field__phone {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-height: 3.3125rem;
  padding: 1.125rem 0.8125rem;
  border: 1px solid #C3C3C3;
  border-radius: 0.375rem;
  background-color: #ffffff;
  transition: all 0.2s ease;
}
.form-field__phone:focus-within {
  border-color: #1E1E1E;
}

.form-field__phone-prefix {
  flex-shrink: 0;
  color: #1E1E1E;
  line-height: 1.2;
}

.form-field__control--phone {
  flex: 1;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  letter-spacing: 0.1em;
}
.form-field__control--phone:focus {
  outline: none;
  border: 0;
}

.form-check {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.625rem;
  margin: 0;
  cursor: pointer;
}

.form-check__input {
  appearance: none;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin: 0.125rem 0 0;
  border: 1.5px solid #8D8D8D;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
}
.form-check__input:checked {
  border-color: #1E1E1E;
  background-color: #1E1E1E;
}
.form-check__input:focus-visible {
  outline: 2px solid #F1007A;
  outline-offset: 2px;
}
.form-check__input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-check--checkbox .form-check__input {
  border-radius: 0.25rem;
}
.form-check--checkbox .form-check__input:checked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6.2L4.8 8.5L9.5 3.5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.75rem;
}
.form-check--checkbox .form-check__input:indeterminate {
  border-color: #1E1E1E;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Crect x='3' y='3' width='10' height='10' rx='2' fill='%231E1E1E'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.form-check--radio {
  padding: 0.75rem 1rem;
  border: 1px solid #DCDCDC;
  border-radius: 0.375rem;
  background-color: #ffffff;
  transition: all 0.2s ease;
}
.form-check--radio:hover {
  border-color: #A9A9A9;
}
.form-check--radio:has(.form-check__input:checked) {
  border-color: #CC0066;
  background-color: #fff9fa;
}

.form-check--radio .form-check__input {
  border-radius: 5.625rem;
  margin-top: 0;
}
.form-check--radio .form-check__input:checked {
  background-color: #ffffff;
  background-image: radial-gradient(circle, #1E1E1E 0 38%, transparent 40%);
}

.form-check__label {
  flex: 1;
  min-width: 0;
  color: #1E1E1E;
  cursor: pointer;
}

.form-check--legal {
  align-items: flex-start;
}
.form-check--legal .form-check__label {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
}
.form-check--legal .form-check__label a {
  color: #CC0066;
  text-decoration: underline;
}

.form-check__required {
  color: #CC0066;
}

.form-check__error {
  flex: 1 0 100%;
  margin: 0;
  color: #CC0066;
}

.form-option {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem;
  border: 1px solid #DCDCDC;
  border-radius: 0.75rem;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
}
.form-option:hover {
  border-color: #A9A9A9;
}
.form-option:has(.form-option__input:checked) {
  border-color: #CC0066;
  background-color: #fff9fa;
}

.form-option__main {
  display: flex;
  align-items: flex-start;
  flex: 1 1 auto;
  gap: 1rem;
  min-width: 0;
}

.form-option__input {
  appearance: none;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin: 0.125rem 0 0;
  border: 1.5px solid #8D8D8D;
  border-radius: 5.625rem;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
}
.form-option__input:checked {
  border-color: #1E1E1E;
  background-image: radial-gradient(circle, #1E1E1E 0 38%, transparent 40%);
}
.form-option__input:focus-visible {
  outline: 2px solid #F1007A;
  outline-offset: 2px;
}

.form-option:has(.form-option__input:checked) .form-option__input {
  border-color: #1E1E1E;
}

.form-option__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.form-option__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.form-option__media {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  max-height: 1.25rem;
  gap: 0.25rem;
}
.form-option__media img {
  display: block;
  width: auto;
  height: 1.25rem;
  max-width: 3rem;
  object-fit: contain;
  float: none !important;
  margin: 0 !important;
}

.form-option__title {
  color: #1E1E1E;
}

.form-option__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3125rem 0.4375rem;
  border: 1px solid #1E1E1E;
  border-radius: 5.625rem;
  background-color: #01184E;
  color: #ffffff;
  line-height: 1;
  white-space: nowrap;
}

.form-option__description {
  color: #717171;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.form-option__meta {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
  margin-left: auto;
  color: #1E1E1E;
  text-align: right;
  line-height: 1.4;
  white-space: normal;
  overflow-wrap: anywhere;
}

.form-option--readonly {
  cursor: default;
}
.form-option--readonly:hover, .form-option--readonly:has(.form-option__input:checked) {
  border-color: #DCDCDC;
  background-color: #ffffff;
}
.form-option--readonly .form-option__main {
  gap: 0.5rem;
}

.form-option--compact {
  align-items: flex-start;
  padding: 0.75rem 1rem;
}
.form-option--compact .form-option__main {
  align-items: flex-start;
  flex: 1;
  min-width: 0;
}
.form-option--compact .form-option__input {
  margin-top: 0.125rem;
}
.form-option--compact .form-option__body {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  width: 100%;
  min-width: 0;
}
.form-option--compact .form-option__description {
  margin-left: 0;
  width: 100%;
}
.form-option--compact .form-option__meta {
  text-align: left;
}

.form-option--review {
  align-items: center;
  padding: 1rem;
}
@media (min-width: 992px) {
  .form-option--review {
    padding: 1rem 2rem;
  }
}
.form-option--review .form-option__meta {
  color: #717171;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: right;
}

.form-option--compact.form-option--review {
  align-items: center;
  padding: 1rem;
}
@media (min-width: 992px) {
  .form-option--compact.form-option--review {
    padding: 1rem 2rem;
  }
}

@media (max-width: 767.98px) {
  .form-option {
    flex-direction: column;
    gap: 0.5rem;
  }
  .form-option__meta {
    margin-left: 2rem;
    text-align: left;
    max-width: calc(100% - 2rem);
  }
  .form-option--readonly .form-option__meta,
  .form-option--review .form-option__meta {
    margin-left: 0;
    max-width: 100%;
    text-align: left;
  }
  .form-option--compact .form-option__description {
    margin-left: 0;
    width: 100%;
  }
}
.product-colors {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
}
.product-colors .list {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.product-colors .color {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  border-radius: 5.625rem;
  overflow: hidden;
  border: 1px solid #C3C3C3;
}
.product-colors .swatch {
  display: block;
  width: 100%;
  height: 100%;
}
.product-colors .image {
  display: block;
  width: 100%;
  height: 100%;
}
.product-colors .image picture,
.product-colors .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-colors .more {
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 500;
  color: #1E1E1E;
}

.product-card {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.5rem;
  flex-direction: column;
  background: #F8F8F8;
  border-radius: 0.75rem;
  padding: 1rem 0.5rem;
}
@media (min-width: 768px) {
  .product-card {
    padding: 1rem;
    flex-direction: column;
  }
}
.product-card.type-2 {
  flex-direction: row;
  gap: 0.5rem;
}
@media (max-width: 767.98px) {
  .product-card > div {
    flex: 1;
  }
}
.product-card .product-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card .product-category a {
  display: inline-block;
  background: #ffffff;
  border-radius: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .product-card .product-category a {
    font-size: 0.875rem;
    line-height: 1.4;
  }
}
.product-card .product-category a:hover {
  background: #F1F1F1;
}
.product-card .product-title {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
.product-card hr {
  border: none;
  background: #DCDCDC;
  height: 1px;
  margin: 1rem 0;
}
@media (min-width: 768px) {
  .product-card hr {
    margin: 1.875rem 0;
  }
}
.product-card .product-price {
  font-size: 1.125rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .product-card .product-price {
    margin-bottom: 1.875rem;
  }
}
.product-card .product-price strong {
  font-size: 1.25rem;
  line-height: 1.3;
}

.product-page-wrapper .woocommerce-before-product-summary {
  background: transparent;
  padding: 0;
  position: relative;
}

.product-gallery {
  width: 100%;
  max-width: 47.5rem;
  margin-inline: auto;
  overflow: hidden;
}
.product-gallery.woocommerce-product-gallery {
  float: none;
  width: 100%;
  opacity: 1;
}
.product-gallery .product-gallery__slider {
  width: 100%;
  max-width: 30.875rem;
  aspect-ratio: 1;
  height: auto;
  margin-inline: auto;
}
.product-gallery .product-gallery__main {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.product-gallery .product-gallery__slide {
  height: 100%;
}
.product-gallery .product-gallery__slide-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 0.3375rem;
  overflow: hidden;
  background: #ffffff;
  cursor: pointer;
}
@media (min-width: 768px) {
  .product-gallery .product-gallery__slide-inner {
    border-radius: 0;
    background: transparent;
  }
}
.product-gallery .product-gallery__slide-inner picture,
.product-gallery .product-gallery__slide-inner .product-gallery__image {
  display: block;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .product-gallery .product-gallery__slide-inner picture,
  .product-gallery .product-gallery__slide-inner .product-gallery__image {
    border-radius: 0.75rem;
    overflow: hidden;
  }
}
.product-gallery .product-gallery__slide-inner picture img,
.product-gallery .product-gallery__slide-inner .product-gallery__image img,
.product-gallery .product-gallery__slide-inner video,
.product-gallery .product-gallery__slide-inner .product-gallery__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.3375rem;
}
@media (min-width: 768px) {
  .product-gallery .product-gallery__slide-inner picture img,
  .product-gallery .product-gallery__slide-inner .product-gallery__image img,
  .product-gallery .product-gallery__slide-inner video,
  .product-gallery .product-gallery__slide-inner .product-gallery__video {
    border-radius: 0.75rem;
  }
}
.product-gallery .product-gallery__media-video {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.3375rem;
}
@media (min-width: 768px) {
  .product-gallery .product-gallery__media-video {
    border-radius: 0.75rem;
  }
}
.product-gallery .product-gallery__media-video lite-youtube {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  max-width: none;
  contain: none;
  background-color: #1E1E1E;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
}
.product-gallery .product-gallery__media-video lite-youtube::before, .product-gallery .product-gallery__media-video lite-youtube::after {
  display: none;
  content: none;
  padding: 0;
}
.product-gallery .product-gallery__media-video lite-youtube > iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.product-gallery .product-gallery__media-video lite-youtube > .lty-playbtn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  margin: 0;
  transform: none;
  background: none;
  filter: none;
  cursor: pointer;
  appearance: none;
}
.product-gallery .product-gallery__media-video lite-youtube.lyt-activated + .product-gallery__play {
  display: none;
}
.product-gallery .product-gallery__media-video:has(video:playing) .product-gallery__play {
  display: none;
}
.product-gallery .product-gallery__thumbnails {
  margin-top: 0.25rem;
}
@media (min-width: 768px) {
  .product-gallery .product-gallery__thumbnails {
    margin-top: 1.5rem;
  }
}
.product-gallery .product-gallery__thumbs-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
}
.product-gallery .product-gallery__thumbs {
  width: 100%;
  max-width: calc(5 * 2.5rem + (5 - 1) * 0.375rem);
  margin-inline: auto;
  overflow: hidden;
}
@media (min-width: 768px) {
  .product-gallery .product-gallery__thumbs {
    max-width: calc(5 * 5.625rem + (5 - 1) * 0.8125rem);
  }
}
.product-gallery .product-gallery__thumbs.swiper {
  height: auto;
}
.product-gallery .product-gallery__thumbs .swiper-wrapper {
  align-items: stretch;
}
.product-gallery .product-gallery__thumbs .swiper-slide {
  height: auto;
}
.product-gallery .product-gallery__thumb {
  box-sizing: border-box;
  display: grid;
  aspect-ratio: 1;
  height: auto;
  min-height: 0;
  border: 0.0625rem solid #DCDCDC;
  border-radius: 0.125rem;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease, border-width 0.2s ease;
}
@media (min-width: 768px) {
  .product-gallery .product-gallery__thumb {
    border-radius: 0.25rem;
  }
}
.product-gallery .product-gallery__thumb::before {
  display: none;
}
.product-gallery .product-gallery__thumb picture,
.product-gallery .product-gallery__thumb figure {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}
.product-gallery .product-gallery__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-gallery .product-gallery__thumb .product-gallery__play img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
}
.product-gallery .product-gallery__thumb.swiper-slide-thumb-active {
  border: 0.125rem solid #1E1E1E;
}
.product-gallery .product-gallery__thumb-video {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.product-gallery .product-gallery__thumb-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  border-radius: inherit;
  z-index: 1;
}
.product-gallery .product-gallery__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.875rem;
  height: 0.875rem;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}
.product-gallery .product-gallery__play img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 768px) {
  .product-gallery .product-gallery__play {
    width: 1.875rem;
    height: 1.875rem;
  }
}
.product-gallery .product-gallery__play--lg {
  width: 3.125rem;
  height: 3.125rem;
}
@media (min-width: 768px) {
  .product-gallery .product-gallery__play--lg {
    width: 3.125rem;
    height: 3.125rem;
  }
}
.product-gallery .product-gallery__scrollbar.swiper-scrollbar {
  position: relative;
  left: auto !important;
  bottom: auto !important;
  top: auto !important;
  width: calc(5 * 2.5rem + (5 - 1) * 0.375rem);
  height: 0.4375rem;
  background: #F1F1F1;
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  .product-gallery .product-gallery__scrollbar.swiper-scrollbar {
    width: calc(5 * 5.625rem + (5 - 1) * 0.8125rem);
  }
}
.product-gallery .product-gallery__scrollbar.is-hidden {
  display: none;
}
.product-gallery .product-gallery__scrollbar .swiper-scrollbar-drag {
  background: #1E1E1E;
  border-radius: 0.5rem;
  cursor: grab;
}
.product-gallery .swiper-button-prev,
.product-gallery .swiper-button-next {
  display: none;
}

.product-page-wrapper:has(.configurator) {
  padding-bottom: calc(var(--configurator-bar-height, 4.125rem) + env(safe-area-inset-bottom, 0px));
}
.product-page-wrapper > .container:has(.product) {
  max-width: 68.5rem;
}
.product-page-wrapper .woocommerce-product-summary {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  flex-direction: column;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .product-page-wrapper .woocommerce-product-summary {
    display: grid;
    grid-template-columns: minmax(0, 1.42fr) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 4rem;
  }
}
.product-page-wrapper .woocommerce-before-product-summary {
  position: relative;
  min-width: 0;
}
.product-page-wrapper .product-actions {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}

.product-summary {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-direction: column;
  min-width: 0;
}
.product-summary .woocommerce-single-product-summary-details {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-direction: column;
  width: 100%;
}
.product-summary .woocommerce-single-product-summary-cart {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-direction: column;
  width: 100%;
}
.product-summary .woocommerce-single-product-summary-cart .quantity {
  display: none;
}
.product-summary .product-badges {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  flex-direction: row;
  flex-wrap: wrap;
}

.product-summary__title {
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 600;
  color: #1E1E1E;
  width: 100%;
}
@media (min-width: 1200px) {
  .product-summary__title {
    font-size: 2rem;
    line-height: 1;
    font-weight: 600;
  }
}

.product-summary__excerpt {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  color: #1E1E1E;
  width: 100%;
  margin-top: 0.5rem;
}
.product-summary__excerpt p {
  margin: 0;
}

.product-summary__price {
  width: 100%;
}
.product-summary__price .woocommerce-Price-amount,
.product-summary__price p,
.product-summary__price bdi {
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  color: #1E1E1E;
}
.product-summary__price del .woocommerce-Price-amount,
.product-summary__price del bdi {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  color: #717171;
}
.product-summary__price .fixable-price {
  display: none;
}

.product-summary__cta {
  width: 100%;
}

.woocommerce-product-details__quantity-form {
  width: 100%;
}
.woocommerce-product-details__quantity-form .cart,
.woocommerce-product-details__quantity-form .variations_button {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  flex-direction: column;
}
.woocommerce-product-details__quantity-form .single_add_to_cart_button {
  width: 100%;
}

.product-summary__facts {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-direction: column;
  width: 100%;
  padding: 1rem;
  border: 1px solid #DCDCDC;
  border-radius: 1rem;
}

.product-summary__fact {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  flex-direction: row;
  width: 100%;
}

.product-summary__fact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  flex-shrink: 0;
  color: #1E1E1E;
}
.product-summary__fact-icon .icon {
  width: 1.5rem;
}

.product-summary__fact-body {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex-direction: column;
  min-width: 0;
}

.product-summary__fact-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.3125rem;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 500;
  color: #1E1E1E;
  letter-spacing: 0.013rem;
}
.product-summary__fact-title .woocommerce-product-details__details--value,
.product-summary__fact-title strong {
  font-weight: 600;
  letter-spacing: 0;
}

.product-summary__fact-note {
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 500;
  color: #717171;
  margin: 0;
}

.product-summary__contact {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 992px) {
  .product-summary__contact {
    flex-direction: row;
    align-items: center;
  }
}

.product-summary__contact-text {
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 500;
  color: #1E1E1E;
  letter-spacing: 0.013rem;
  margin: 0;
}

.product-summary__contact-link {
  height: auto !important;
  padding: 0 !important;
  color: #01184E;
}
.product-summary__contact-link .icon {
  width: 1.25rem;
}

.product-summary__nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem 1.5rem;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
.product-summary__nav a {
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 500;
  color: #084BCA;
  text-decoration: underline;
}

html:has(.product-summary__nav) {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html:has(.product-summary__nav) {
    scroll-behavior: auto;
  }
}

.accordion[id^=tab-],
.product-section[id^=section-] {
  scroll-margin-top: 7.5rem;
}

.product-rating {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.25rem;
  flex-direction: row;
}

.product-rating__stars {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.25rem;
  flex-direction: row;
  height: 0.8125rem;
}

.product-rating__star {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.875rem;
  height: 0.8125rem;
  flex-shrink: 0;
  color: #CC0066;
}
.product-rating__star .icon {
  width: 0.875rem;
  height: 0.8125rem;
  display: block;
  flex-shrink: 0;
}
.product-rating__star.is-empty {
  color: #DCDCDC;
}

.product-rating__value {
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 600;
  color: #393939;
}

.product-rating__count {
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 500;
  color: #717171;
  letter-spacing: 0.013rem;
}

.product-rating__reviews {
  text-decoration: underline;
  cursor: pointer;
}

.product-sections {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  margin-top: 3rem;
}
@media (min-width: 992px) {
  .product-sections {
    gap: 8rem;
    margin-top: 4rem;
  }
}

.product-section {
  width: 100%;
  min-width: 0;
  scroll-margin-top: 7.5rem;
}

.product-section__header {
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #C3C3C3;
}
@media (min-width: 992px) {
  .product-section__header {
    padding-bottom: 2rem;
  }
}

.product-section__title {
  margin: 0;
  color: #1E1E1E;
}

.product-section__body {
  width: 100%;
}

.product-specification {
  width: 100%;
  max-width: 47.5rem;
  margin-inline: auto;
}

.product-specification__row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.625rem;
  flex-direction: row;
  padding: 1.25rem 0.5rem;
  border-radius: 0.5rem;
}
.product-specification__row:nth-child(odd) {
  background: #F1F1F1;
}

.product-specification__label {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  flex-shrink: 0;
  color: #1E1E1E;
}

.product-specification__value {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  color: #1E1E1E;
}

.product-specification__files {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  max-width: 47.5rem;
  margin-top: 1.5rem;
  margin-inline: auto;
}

.product-package {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.5rem;
  flex-direction: column;
}
@media (min-width: 992px) {
  .product-package {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.product-package__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  flex-direction: row;
}
@media (min-width: 992px) {
  .product-package__item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    flex-direction: column;
    min-width: 12.5rem;
  }
}

.product-package__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.5rem;
  height: 7.5rem;
  flex-shrink: 0;
  border: 1px solid #DCDCDC;
  border-radius: 1rem;
  overflow: hidden;
}
.product-package__icon img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.product-package__label {
  flex: 1;
  min-width: 0;
  margin: 0;
  color: #1E1E1E;
  font-weight: 600;
}
@media (min-width: 992px) {
  .product-package__label {
    flex: none;
    width: 100%;
    text-align: center;
  }
}

.product-section:has(.product-video) .product-section__header {
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .product-section:has(.product-video) .product-section__header {
    margin-bottom: 3rem;
  }
}

.product-video {
  width: 100%;
  max-width: 54.375rem;
  margin-inline: auto;
}

.product-video__embed {
  width: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #1E1E1E;
  transform: translateZ(0);
}
.product-video__embed lite-youtube {
  display: block;
  width: 100%;
  max-width: none;
  aspect-ratio: 16/9;
  border-radius: inherit;
}
.product-video__embed lite-youtube::after {
  display: none;
}
.product-video__embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.product-accessories,
.product-related,
.product-last-seen {
  width: 100%;
  min-width: 0;
}

.product-last-seen {
  margin-block: 4rem;
}
@media (min-width: 992px) {
  .product-last-seen {
    margin-block: 5rem;
  }
}
.product-last-seen > .container {
  min-width: 0;
}

.product-last-seen__mobile {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-direction: column;
}
@media (min-width: 768px) {
  .product-last-seen__mobile {
    display: none;
  }
}
.product-last-seen__mobile .product-last-seen__item:nth-child(n+3) {
  display: none;
}
.product-last-seen__mobile .product-card-inline__image {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
  aspect-ratio: 1;
}

.product-last-seen__slider {
  display: none;
  min-width: 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .product-last-seen__slider {
    display: block;
  }
}
.product-last-seen__slider .swiper {
  overflow: hidden;
}
.product-last-seen__slider .swiper-slide {
  height: auto;
}
.product-last-seen__slider .swiper-slide .product-card {
  height: 100%;
  width: 100%;
}

.product-accessories__mobile,
.product-related__mobile {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-direction: column;
}
@media (min-width: 992px) {
  .product-accessories__mobile,
  .product-related__mobile {
    display: none;
  }
}

.product-accessories__desktop,
.product-related__desktop {
  display: none;
}
@media (min-width: 992px) {
  .product-accessories__desktop,
  .product-related__desktop {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.5rem;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .product-accessories__desktop .product-card,
  .product-related__desktop .product-card {
    width: 19.5rem;
  }
}

.product-card-inline {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5rem;
  flex-direction: row;
  width: 100%;
  padding: 1rem 0.5rem;
  background: #F8F8F8;
  border-radius: 0.75rem;
}

.product-card-inline__image {
  width: 7.5rem;
  flex-shrink: 0;
  border-radius: 0.5rem;
  overflow: hidden;
}
.product-card-inline__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-inline__info {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.product-card-inline__category {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: #ffffff;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 500;
  color: #1E1E1E;
}

.product-card-inline__title {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
}
.product-card-inline__title a {
  color: #1E1E1E;
  text-decoration: none;
}

.product-card-inline__divider {
  width: 100%;
  height: 1px;
  margin: 0;
  border: 0;
  background: #DCDCDC;
}

.product-card-inline__price {
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 500;
  color: #1E1E1E;
}
.product-card-inline__price strong {
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 700;
}

.product-card-inline__price-from {
  margin-right: 0.25rem;
}

.product-reviews__summary {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.5rem;
  flex-direction: column;
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .product-reviews__summary {
    flex-direction: row;
    align-items: center;
    gap: 3.125rem;
  }
}

.product-reviews__score-block {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  flex-direction: column;
}

.product-reviews__score {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 600;
  color: #1E1E1E;
}

.product-reviews__stars {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.125rem;
  flex-direction: row;
}

.product-reviews__star {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.625rem;
  color: #DCDCDC;
}
.product-reviews__star .icon {
  width: 0.625rem;
}
.product-reviews__star.is-filled, .product-reviews__star.is-half {
  color: #CC0066;
}

.product-reviews__count {
  margin: 0;
  color: #1E1E1E;
}

.product-reviews__breakdown {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex-direction: column;
  width: 100%;
  max-width: 23.75rem;
}

.product-reviews__breakdown-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.25rem;
  flex-direction: row;
  width: 100%;
}

.product-reviews__breakdown-label {
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 500;
  width: 0.75rem;
  color: #1E1E1E;
}

.product-reviews__breakdown-star {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.625rem;
  color: #CC0066;
}
.product-reviews__breakdown-star .icon {
  width: 0.625rem;
}

.product-reviews__breakdown-bar {
  flex: 1;
  height: 0.375rem;
  background: #F1F1F1;
  border-radius: 5.625rem;
  overflow: hidden;
}

.product-reviews__breakdown-fill {
  display: block;
  height: 100%;
  background: #CC0066;
  border-radius: 5.625rem;
}

.product-reviews__breakdown-count {
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 500;
  min-width: 1.5rem;
  text-align: right;
  color: #717171;
}

.product-reviews__gallery {
  margin-bottom: 1.5rem;
}

.product-reviews__gallery-title {
  margin-bottom: 0.75rem;
}

.product-reviews__gallery-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  flex-direction: row;
  flex-wrap: wrap;
}

.product-reviews__gallery-item {
  width: 4rem;
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 0.5rem;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
}
.product-reviews__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-reviews__gallery-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(30, 30, 30, 0.6);
  color: #ffffff;
  font-weight: 600;
}

.product-reviews__list {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-direction: column;
}

.product-reviews__item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #DCDCDC;
}
.product-reviews__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.product-reviews__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  margin-bottom: 0.5rem;
}

.product-reviews__item-stars {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.125rem;
  flex-direction: row;
}

.product-reviews__item-star {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.875rem;
  color: #DCDCDC;
}
.product-reviews__item-star .icon {
  width: 0.875rem;
}
.product-reviews__item-star.is-filled {
  color: #CC0066;
}

.product-reviews__item-date {
  color: #717171;
}

.product-reviews__item-author {
  margin: 0 0 0.5rem;
  color: #1E1E1E;
}

.product-reviews__item-content {
  color: #555555;
}
.product-reviews__item-content p {
  margin: 0;
}

.product-reviews__item-images {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.product-reviews__pagination-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-direction: row;
  margin-top: 1.5rem;
}

.product-reviews__pagination-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  padding: 0;
  border: 1px solid #DCDCDC;
  border-radius: 0.5rem;
  background: #ffffff;
  color: #1E1E1E;
  font-weight: 600;
  cursor: pointer;
}
.product-reviews__pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.product-reviews__pagination-btn.is-active {
  border-color: #01184E;
  background: #01184E;
  color: #ffffff;
}
.product-reviews__pagination-btn .icon {
  width: 1rem;
}

.product-reviews__pagination-ellipsis {
  color: #717171;
}

.woocommerce-after-single-product-summary {
  width: 100%;
}

.product-description {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  flex-direction: column;
  width: 100%;
  color: #1E1E1E;
}
@media (min-width: 992px) {
  .product-description {
    gap: 8rem;
  }
}
.product-description .product-description {
  display: contents;
}

.product-description__row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 992px) {
  .product-description__row {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
}

.product-description__accordion,
.product-description__copy {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-direction: column;
  order: -1;
  width: 100%;
  min-width: 0;
  flex: 0 0 auto;
}
@media (min-width: 992px) {
  .product-description__accordion,
  .product-description__copy {
    order: 0;
    flex: 1 1 0;
  }
}

.product-description__copy {
  gap: 2rem;
}

.product-description__media,
.product-description__row > img,
.product-description__row > figure,
.product-description__row > p:has(> img) {
  width: 100%;
  min-width: 0;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  border-radius: 0.75rem;
}
@media (min-width: 992px) {
  .product-description__media,
  .product-description__row > img,
  .product-description__row > figure,
  .product-description__row > p:has(> img) {
    flex: 1 1 0;
  }
}
.product-description__media img,
.product-description__row > img img,
.product-description__row > figure img,
.product-description__row > p:has(> img) img {
  display: block;
  width: 100%;
  height: 15.875rem;
  object-fit: cover;
  border-radius: 0.75rem;
}
@media (min-width: 992px) {
  .product-description__media img,
  .product-description__row > img img,
  .product-description__row > figure img,
  .product-description__row > p:has(> img) img {
    height: 23.875rem;
  }
}

.product-description__item {
  width: 100%;
  padding-bottom: 1rem;
  border-bottom: 1px solid #C3C3C3;
}
.product-description__item[open] {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-direction: column;
}

.product-description__item summary {
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 600;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1.5rem;
  align-items: center;
  gap: 1rem;
  color: #1E1E1E;
  list-style: none;
  cursor: pointer;
}
.product-description__item summary::-webkit-details-marker {
  display: none;
}
.product-description__item summary::marker {
  content: "";
}
.product-description__item summary p {
  margin: 0;
}
.product-description__item summary::after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background-color: #1E1E1E;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9L12 15L18 9' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 1.5rem;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9L12 15L18 9' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 1.5rem;
  transition: transform 0.2s ease;
}

.product-description__item[open] summary::after {
  transform: rotate(180deg);
}

.product-description__item > *:not(summary) {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  padding-right: 0;
  color: #1E1E1E;
}
@media (min-width: 992px) {
  .product-description__item > *:not(summary) {
    padding-right: 2rem;
  }
}

.product-description h2,
.product-description h3,
.product-description h4 {
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 600;
  margin: 0 0 2rem;
  color: #1E1E1E;
}

.product-description__copy h2,
.product-description__copy h3,
.product-description__copy h4 {
  margin: 0;
}

.product-description p {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  margin: 0 0 0.5rem;
  color: #1E1E1E;
}
.product-description p:last-child {
  margin-bottom: 0;
}

.product-description > img,
.product-description > figure,
.product-description > p img {
  width: 100%;
  height: auto;
  margin-block: 1.5rem;
  border-radius: 0.75rem;
}

.product-description__row img,
.product-description__media img {
  margin-block: 0;
}

.configurator {
  width: 100%;
  padding-block: 1rem;
}
@media (min-width: 992px) {
  .configurator {
    padding-bottom: 1.5rem;
  }
}

.configurator__form {
  display: flex;
  align-items: stretch;
  gap: 3rem;
  flex-direction: column;
  width: 100%;
}
.configurator__form.is-loading {
  pointer-events: none;
  opacity: 0.6;
}

.configurator__section {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  flex-direction: column;
  width: 100%;
}

.configurator__step {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  flex-direction: row;
  width: 100%;
  padding-block: 0.25rem;
}

.configurator__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.9375rem;
  height: 1.9375rem;
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.011375rem;
  flex-shrink: 0;
  aspect-ratio: 1;
  color: #ffffff;
  background: #1E1E1E;
  border-radius: 5.625rem;
}

.configurator__step.has-divider {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #DCDCDC;
}

.configurator__step-title {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  color: #1E1E1E;
  margin: 0;
}

.configurator__description {
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.011375rem;
  color: #717171;
  margin: 0;
}
.configurator__description p {
  margin: 0;
}
.configurator__description a {
  color: #555555;
  text-decoration: underline;
}

.configurator__chosen {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  flex-direction: row;
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 500;
  color: #717171;
}

.configurator__chosen-value {
  color: #1E1E1E;
}

.configurator__fields {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 992px) {
  .configurator__fields {
    flex-direction: row;
  }
}

.configurator__field {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.configurator__field.is-hidden {
  display: none;
}

.configurator__label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  flex-direction: row;
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 500;
  color: #717171;
  margin: 0;
}

.configurator__input-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-direction: row;
  position: relative;
  width: 100%;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #C3C3C3;
  border-radius: 0.5rem;
  overflow: hidden;
}

.configurator__input {
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 600;
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1E1E1E;
  appearance: textfield;
}
.configurator__input:focus {
  outline: none;
}
.configurator__input::-webkit-outer-spin-button, .configurator__input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

.configurator__input-wrap:focus-within {
  border-color: #1E1E1E;
}

.configurator__unit {
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 500;
  flex-shrink: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #717171;
  cursor: pointer;
  text-transform: lowercase;
}
.configurator__unit:hover, .configurator__unit:focus-visible {
  color: #1E1E1E;
}

.configurator__range,
.configurator__error {
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 500;
  color: #717171;
  margin: 0;
}

.configurator__error {
  color: #CC0066;
}

.configurator__swatches {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.125rem 1.25rem;
  width: 100%;
}
@media (min-width: 992px) {
  .configurator__swatches {
    grid-template-columns: repeat(auto-fill, minmax(3rem, 1fr));
  }
}

.configurator__swatch {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
}
.configurator__swatch input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.configurator__swatch-face,
.configurator__swatch-more {
  width: 100%;
  height: 100%;
  display: block;
  border: 1px solid #C3C3C3;
  border-radius: 0.25rem;
  overflow: hidden;
  background: #ffffff;
  cursor: pointer;
}

.configurator__swatch-face {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.configurator__swatch-face img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.configurator__swatch-face svg:not(.configurator__icon) {
  width: 60%;
  height: 60%;
  color: #A9A9A9;
}
.configurator__swatch-face .configurator__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.875rem;
  z-index: 1;
  color: #ffffff;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.4));
  transform: translate(-50%, -50%);
  opacity: 0;
}

.configurator__swatch.is-selected .configurator__swatch-face {
  border-color: transparent;
  outline: 2px solid #CC0066;
  outline-offset: 2px;
  box-shadow: inset 0 0 0 2px #ffffff;
}
.configurator__swatch.is-selected .configurator__swatch-face .configurator__icon {
  opacity: 1;
}

.configurator__swatch.is-unavailable .configurator__swatch-face {
  cursor: not-allowed;
  opacity: 0.4;
}

.configurator__swatch-more {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 500;
  aspect-ratio: 1;
  color: #393939;
  border-color: #DCDCDC;
  border-radius: 0.5rem;
}

.configurator__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
  width: 100%;
}
@media (min-width: 992px) {
  .configurator__cards {
    grid-template-columns: repeat(auto-fill, minmax(10.375rem, 1fr));
    gap: 1.5rem 1rem;
  }
}

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

.configurator__card-face {
  display: flex;
  align-items: stretch;
  gap: 0.875rem;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #DCDCDC;
  border-radius: 0.5rem;
  cursor: pointer;
}

.configurator__card.is-selected .configurator__card-face {
  border-color: #1E1E1E;
}

.configurator__card.is-unavailable .configurator__card-face {
  cursor: not-allowed;
  opacity: 0.5;
}

.configurator__card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-height: 6.25rem;
}
.configurator__card-media img,
.configurator__card-media svg {
  display: block;
  width: 6.25rem;
  height: 6.25rem;
  object-fit: contain;
}

.configurator__card.is-unavailable .configurator__card-media::after {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 500;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "Niedostępne";
  color: #ffffff;
  background: rgba(30, 30, 30, 0.55);
  opacity: 0;
  transition: all 0.2s ease;
}

.configurator__card.is-unavailable:hover .configurator__card-media::after {
  opacity: 1;
}

.configurator__card-label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 500;
  flex: 1;
  color: #1E1E1E;
  text-align: center;
  margin: 0;
}

.configurator__card-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5625rem;
  height: 1.5625rem;
  position: absolute;
  top: 0.4375rem;
  right: 0.5rem;
  aspect-ratio: 1;
  color: #ffffff;
  background: #1E1E1E;
  border-radius: 0.25rem;
  pointer-events: none;
}
.configurator__card-check .configurator__icon {
  width: 1.125rem;
  height: 1.125rem;
}

.configurator__samples {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.25rem;
  flex-direction: row;
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 500;
  color: #1E1E1E;
  text-decoration: underline;
  width: fit-content;
}
.configurator__samples .configurator__icon {
  width: 1rem;
}
.configurator__samples:hover {
  color: #555555;
}

.configurator__select {
  width: 100%;
}

.configurator__submit {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 992px) {
  .configurator__submit {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.configurator__qty {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.875rem;
  flex-direction: row;
}

.configurator__qty-label {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  color: #1E1E1E;
  margin: 0;
}

.configurator__qty-control {
  display: flex;
  align-items: center;
  width: 9.375rem;
  background: #ffffff;
  border: 1px solid #DCDCDC;
  border-radius: 5.625rem;
  overflow: hidden;
}
@media (min-width: 576px) {
  .configurator__qty-control {
    width: 15rem;
  }
}

.configurator__qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.0625rem;
  flex-shrink: 0;
  padding: 0;
  border: 0;
  background: #ffffff;
  color: #1E1E1E;
  cursor: pointer;
}
@media (min-width: 576px) {
  .configurator__qty-btn {
    width: 3.25rem;
  }
}
.configurator__qty-btn:first-child {
  border-right: 1px solid #DCDCDC;
}
.configurator__qty-btn:last-child {
  border-left: 1px solid #DCDCDC;
}
.configurator__qty-btn:hover {
  background: #F8F8F8;
}
.configurator__qty-btn .configurator__icon {
  width: 1rem;
}

.configurator__qty-input {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  width: 100%;
  height: 3.0625rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1E1E1E;
  text-align: center;
}
@media (min-width: 576px) {
  .configurator__qty-input {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 600;
    height: 3.25rem;
  }
}
.configurator__qty-input:focus {
  outline: none;
}

.configurator__unavailable {
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 600;
  color: #CC0066;
}

.configurator__cta {
  width: 100%;
}
@media (min-width: 992px) {
  .configurator__cta {
    width: auto;
    min-width: 15rem;
  }
}
.configurator__cta.loading {
  pointer-events: none;
  opacity: 0.7;
}

.configurator__message {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  flex-direction: row;
  width: 100%;
  padding: 1rem;
  border: 1px solid #DCDCDC;
  border-left: 0.5rem solid #CC0066;
  border-radius: 0.25rem;
}
.configurator__message .configurator__icon {
  width: 1.5rem;
  flex-shrink: 0;
  color: #CC0066;
}

.configurator__alerts {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  flex-direction: column;
  width: 100%;
  margin-top: 0.5rem;
}

.configurator__alert {
  position: relative;
  padding: 1rem 3rem 1rem 1rem;
  border-radius: 0.5rem;
}
.configurator__alert.is-error {
  background: #FFECF0;
  border-left: 0.25rem solid #CC0066;
}
.configurator__alert.is-warning {
  background: #F8F8F8;
  border-left: 0.25rem solid #717171;
}

.configurator__alert-title {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.configurator__alert ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.configurator__alert.is-error .configurator__alert-title {
  color: #CC0066;
}

.configurator__alert.is-warning .configurator__alert-title {
  color: #555555;
}

.configurator__alert-item {
  margin: 0 0 0.75rem;
}
.configurator__alert-item:last-child {
  margin-bottom: 0;
}

.configurator__alert-item-title {
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 600;
  color: #1E1E1E;
  margin: 0 0 0.25rem;
}

.configurator__alert-item-body {
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 400;
  color: #555555;
}
.configurator__alert-item-body p {
  margin: 0;
}
.configurator__alert-item-body img {
  max-width: 100%;
  height: auto;
  border-radius: 0.25rem;
}

.configurator__hint-wrap {
  display: flex;
  align-items: center;
}

.configurator__hint-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #717171;
  cursor: pointer;
}
.configurator__hint-btn .configurator__icon {
  width: 1rem;
}
.configurator__hint-btn:hover, .configurator__hint-btn.is-active {
  color: #1E1E1E;
}

.configurator__popup {
  z-index: 20;
  max-width: 17.5rem;
  padding: 0.75rem 1rem;
  background: #ffffff;
  border: 1px solid #DCDCDC;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1.5rem rgba(30, 30, 30, 0.08);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.configurator__popup.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.configurator__popup-title {
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 600;
  color: #1E1E1E;
  margin: 0 0 0.25rem;
}

.configurator__popup-body {
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 500;
  color: #717171;
}
.configurator__popup-body p {
  margin: 0;
}

.configurator__modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5200;
  padding: 1rem;
  background: rgba(30, 30, 30, 0.4);
}

.configurator__modal-dialog {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  position: relative;
  width: 100%;
  max-width: 45rem;
  max-height: 90vh;
  background: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
}

.configurator__modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 1;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1E1E1E;
  cursor: pointer;
}
.configurator__modal-close .configurator__icon {
  width: 1.5rem;
}

.configurator__modal-title {
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 700;
  padding: 1.25rem 3.5rem 1rem 1.5rem;
  margin: 0;
  color: #1E1E1E;
}

.configurator__modal-body {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 400;
  overflow-y: auto;
  padding: 0 1.5rem 1.5rem;
  color: #555555;
}
.configurator__modal-body img {
  max-width: 100%;
  height: auto;
  border-radius: 0.25rem;
}

.configurator__loader {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 10rem;
}

.configurator__loader-inner {
  width: 2.5rem;
  border: 3px solid #DCDCDC;
  border-top-color: #CC0066;
  border-radius: 5.625rem;
  animation: configurator-spin 0.8s linear infinite;
}

@keyframes configurator-spin {
  to {
    transform: rotate(360deg);
  }
}
.configurator__icon {
  display: block;
  flex-shrink: 0;
}

.configurator-bar-dock {
  position: sticky;
  top: calc(100vh - var(--configurator-bar-height, 4.125rem));
  top: calc(100dvh - var(--configurator-bar-height, 4.125rem));
  z-index: 40;
  width: 100%;
  height: var(--configurator-bar-height, 4.125rem);
  margin-bottom: calc(-1 * var(--configurator-bar-height, 4.125rem));
  pointer-events: none;
}
.configurator-bar-dock:empty {
  display: none;
}

.configurator__bar {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  flex-direction: row;
  pointer-events: auto;
  width: 100%;
  padding: 0.625rem 1.5rem;
  padding-bottom: calc(0.625rem + env(safe-area-inset-bottom, 0px));
  background: #ffffff;
  border-top: 1px solid #DCDCDC;
}
@media (min-width: 992px) {
  .configurator__bar {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
    background: #F1F1F1;
    border-top: 0;
  }
}

.configurator__bar-title {
  display: none;
  margin: 0;
  color: #1E1E1E;
}
@media (min-width: 992px) {
  .configurator__bar-title {
    display: block;
  }
}

.configurator__bar-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-direction: row;
  min-width: 0;
  width: 100%;
}

.configurator__bar-main {
  display: none;
  min-width: 0;
}
@media (min-width: 992px) {
  .configurator__bar-main {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex-direction: row;
    flex: 1;
  }
}

.configurator__bar-thumb {
  width: 5.6875rem;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0.75rem;
  background: #ffffff;
}
.configurator__bar-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.configurator__bar-details {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  flex-direction: row;
  flex-wrap: wrap;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.configurator__bar-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  flex-direction: column;
}

.configurator__bar-detail-label {
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 600;
  color: #1E1E1E;
}

.configurator__bar-detail-value {
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 500;
  color: #1E1E1E;
}

.configurator__bar-pricing {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-direction: row;
  flex: 1;
  min-width: 0;
}
@media (min-width: 992px) {
  .configurator__bar-pricing {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    flex-direction: column;
    flex: 0 0 25.1875rem;
    max-width: 25.1875rem;
  }
}

.configurator__bar-price {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .configurator__bar-price {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.625rem;
    flex-direction: row;
    width: 100%;
  }
}

.configurator__bar-price-label {
  color: #717171;
}
.configurator__bar-price-label--mobile {
  font-size: 0.625rem;
  line-height: 1.15;
  font-weight: 400;
}
@media (min-width: 992px) {
  .configurator__bar-price-label--mobile {
    display: none;
  }
}
.configurator__bar-price-label--desktop {
  display: none;
  font-size: 0.8125rem;
  line-height: 1.38;
  font-weight: 400;
  color: #1E1E1E;
}
@media (min-width: 992px) {
  .configurator__bar-price-label--desktop {
    display: block;
  }
}

.configurator__bar-price-value {
  font-size: 1.0625rem;
  line-height: 1.15;
  font-weight: 700;
  color: #1E1E1E;
}
@media (min-width: 992px) {
  .configurator__bar-price-value {
    font-size: 2rem;
    line-height: 1;
    font-weight: 700;
  }
}
.configurator__bar-price-value p,
.configurator__bar-price-value .woocommerce-Price-amount,
.configurator__bar-price-value bdi {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
}

.configurator__bar-cta {
  flex: 1;
  min-width: 0;
  height: 2.875rem;
  padding: 0.75rem 1rem;
}
@media (min-width: 992px) {
  .configurator__bar-cta {
    flex: none;
    width: 100%;
    height: 2.5rem;
  }
}

.configurator__bar-cta-icon {
  width: 1rem;
}
@media (min-width: 992px) {
  .configurator__bar-cta-icon {
    display: none;
  }
}

.category-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.25rem;
  flex-direction: column;
  padding: 1rem 0.5rem;
  background: #F4F5FF;
  border-radius: 0.75rem;
  border: 1px solid #F4F5FF;
  transition: all 0.3s ease;
  flex: 1;
}
@media (min-width: 768px) {
  .category-card {
    padding: 1rem;
    flex-direction: row;
    align-items: center;
  }
}
.category-card:hover {
  background: #E6E9FF;
  border: 1px solid #1E1E1E;
}
.category-card .image {
  width: 10rem;
  height: 10rem;
  border-radius: 0.75rem;
  overflow: hidden;
}
.category-card .name {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  color: #1E1E1E;
}
@media (min-width: 768px) {
  .category-card .name {
    font-size: 1.25rem;
    line-height: 1.4;
  }
}
.category-card .icon {
  width: 1.125rem;
  height: 1.125rem;
}
@media (min-width: 768px) {
  .category-card .icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.cart-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.4);
}
.cart-popup .cart-popup__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 1rem;
}
.cart-popup .cart-popup__dialog {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 35rem;
  overflow: hidden;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 1.5rem 3.75rem -1.25rem rgba(0, 0, 0, 0.4);
}
.cart-popup .cart-popup__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.25rem;
  border-bottom: 1px solid #C3C3C3;
}
.cart-popup .cart-popup__heading {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  min-width: 0;
}
.cart-popup .cart-popup__badge {
  flex-shrink: 0;
  width: 2.625rem;
  height: 2.625rem;
}
.cart-popup .cart-popup__heading-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}
.cart-popup .cart-popup__title {
  color: #1E1E1E;
}
.cart-popup .cart-popup__subtitle {
  color: #717171;
}
.cart-popup .cart-popup__close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1E1E1E;
  cursor: pointer;
}
.cart-popup .cart-popup__close .icon {
  width: 1.5rem;
  height: 1.5rem;
}
.cart-popup .cart-popup__body {
  padding: 0.75rem 1.25rem;
}
.cart-popup .cart-popup__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.25rem;
}
.cart-popup .cart-popup__product-image {
  flex-shrink: 0;
  width: 5.625rem;
  height: 5.25rem;
  overflow: hidden;
  border: 1px solid #F1F1F1;
  border-radius: 0.25rem;
}
.cart-popup .cart-popup__product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-popup .cart-popup__product-name {
  flex: 1;
  min-width: 0;
  color: #1E1E1E;
}
.cart-popup .cart-popup__product-price {
  flex-shrink: 0;
  color: #1E1E1E;
  white-space: nowrap;
}
.cart-popup .cart-popup__actions {
  display: flex;
  flex-direction: column;
  gap: 0.6875rem;
  padding: 0rem 1.25rem 1.25rem;
}
@media (min-width: 768px) {
  .cart-popup .cart-popup__actions {
    flex-direction: row;
    align-items: center;
  }
}
.cart-popup .cart-popup__actions .btn {
  flex: 1 1 0;
  min-width: 0;
}
.cart-popup .cart-popup__actions .cart-popup__btn-continue {
  color: #01184E;
}

.cart-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "media heading" "specs specs" "footer footer";
  column-gap: 1rem;
  row-gap: 1.5rem;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #A9A9A9;
  border-radius: 0.75rem;
}
@media (min-width: 992px) {
  .cart-item {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "media heading actions" "media specs specs" "media footer footer";
    column-gap: 1.5rem;
    padding: 2rem;
  }
}
.cart-item .cart-item__invalid-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.72);
  border-radius: inherit;
}
.cart-item .cart-item__invalid-text {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0.5rem 1rem;
  background: #ffffff;
  border-radius: 0.5rem;
  color: #CC0066;
  font-weight: 600;
  text-align: center;
}
.cart-item .cart-item__media {
  grid-area: media;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .cart-item .cart-item__media {
    padding: 0.5rem;
  }
}
.cart-item .cart-item__thumb-wrap,
.cart-item .cart-item__thumb-link {
  display: block;
  width: 6.9375rem;
  height: 6.9375rem;
  overflow: hidden;
  border-radius: 0.75rem;
}
.cart-item .cart-item__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item .cart-item__heading {
  grid-area: heading;
  min-width: 0;
}
.cart-item .cart-item__title {
  margin: 0;
  color: #1E1E1E;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
}
@media (min-width: 992px) {
  .cart-item .cart-item__title {
    font-size: 1.125rem;
    line-height: 1.4;
  }
}
.cart-item .cart-item__actions {
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
  flex-shrink: 0;
}
.cart-item .cart-item__actions--desktop {
  display: none;
  grid-area: actions;
}
@media (min-width: 992px) {
  .cart-item .cart-item__actions--desktop {
    display: flex;
  }
}
.cart-item .cart-item__actions--mobile {
  display: flex;
  margin-left: auto;
}
@media (min-width: 992px) {
  .cart-item .cart-item__actions--mobile {
    display: none;
  }
}
.cart-item .cart-item__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem;
  color: #717171;
  border: 1px solid #C3C3C3;
  border-radius: 0.5rem;
  background: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cart-item .cart-item__action .icon {
  width: 1rem;
  height: 1rem;
}
.cart-item .cart-item__action:hover {
  color: #CC0066;
  border-color: #A9A9A9;
}
.cart-item .cart-item__specs {
  grid-area: specs;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cart-item .cart-item__specs-toggle {
  align-self: flex-start;
  color: #01184E;
  padding-inline: 0 !important;
}
.cart-item .cart-item__specs-toggle .icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
}
.cart-item.is-expanded .cart-item__specs-chevron {
  transform: rotate(180deg);
}
.cart-item.is-expanded .cart-item__chips {
  display: flex;
}
.cart-item .cart-item__chips {
  display: none;
  flex-wrap: wrap;
  gap: 0.375rem;
}
@media (min-width: 992px) {
  .cart-item .cart-item__chips {
    display: flex;
  }
}
.cart-item .cart-item__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem;
  background: #F8F8F8;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.4;
}
@media (min-width: 992px) {
  .cart-item .cart-item__chip {
    background: #ffffff;
    border: 1px solid #DCDCDC;
  }
}
.cart-item .cart-item__chip-key {
  color: #1E1E1E;
  font-weight: 600;
}
.cart-item .cart-item__chip-value {
  color: #717171;
  font-weight: 500;
}
.cart-item .cart-item__footer {
  grid-area: footer;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.cart-item .cart-item__quantity {
  display: flex;
  align-items: center;
  gap: 0.6875rem;
}
.cart-item .cart-item__quantity-label {
  color: #717171;
  font-weight: 600;
}
.cart-item .cart-item__quantity-box {
  display: inline-flex;
  align-items: stretch;
}
.cart-item .cart-item__qty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.125rem;
  height: 2.125rem;
  padding: 0;
  border: 1px solid #C3C3C3;
  background: #ffffff;
  color: #1E1E1E;
  cursor: pointer;
}
.cart-item .cart-item__qty-btn .icon {
  width: 1rem;
  height: 1rem;
}
.cart-item .cart-item__qty-btn.quantity--button__minus {
  border-radius: 0.5rem 0 0 0.5rem;
  border-right: 0;
}
.cart-item .cart-item__qty-btn.quantity--button__plus {
  border-radius: 0 0.5rem 0.5rem 0;
  border-left: 0;
}
.cart-item .cart-item__qty-input {
  width: 3rem;
  height: 2.125rem;
  margin: 0;
  padding: 0;
  border: 1px solid #C3C3C3;
  border-radius: 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: #1E1E1E;
  appearance: textfield;
  -moz-appearance: textfield;
}
.cart-item .cart-item__qty-input::-webkit-outer-spin-button, .cart-item .cart-item__qty-input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}
.cart-item .cart-item__prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.625rem;
  text-align: right;
}
.cart-item .cart-item__unit-price {
  margin: 0;
  color: #717171;
}
.cart-item .cart-item__line-total {
  margin: 0;
  color: #1E1E1E;
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 600;
}
.cart-item .cart-item__promo {
  grid-area: promo;
  display: none;
}

.cart-item--with-promo {
  grid-template-areas: "media heading" "specs specs" "footer footer" "promo promo";
}
@media (min-width: 992px) {
  .cart-item--with-promo {
    grid-template-areas: "media heading actions" "media specs specs" "media footer footer" "promo promo promo";
  }
}
.cart-item--with-promo .cart-item__promo {
  display: block;
}

.cart-item--invalid {
  pointer-events: none;
}

@media (min-width: 992px) {
  .cart-item--review {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "media heading prices" "media specs prices";
    column-gap: 1rem;
    border-color: #DCDCDC;
  }
  .cart-item--review .cart-item__media {
    padding: 0.375rem;
  }
  .cart-item--review .cart-item__thumb-wrap,
  .cart-item--review .cart-item__thumb-link {
    width: 5.1875rem;
    height: 5.1875rem;
    border-radius: 0.5625rem;
  }
  .cart-item--review .cart-item__footer {
    display: contents;
  }
  .cart-item--review .cart-item__quantity {
    display: none;
  }
  .cart-item--review .cart-item__prices {
    grid-area: prices;
  }
  .cart-item--review .cart-item__chip {
    background: #F8F8F8;
    border: 0;
  }
}
.cart-item--review .cart-item__qty-btn:disabled {
  opacity: 1;
  color: #1E1E1E;
  cursor: default;
}

.cart-promo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background: #E6E9FF;
  border-radius: 0.75rem;
}

.cart-promo__content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}

.cart-promo__title {
  margin: 0;
  color: #1E1E1E;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 600;
}

.cart-promo__description {
  margin: 0;
  color: #1E1E1E;
  font-size: 0.875rem;
  line-height: 1.5;
}

.cart-promo__button {
  flex-shrink: 0;
  width: 100%;
}

.checkout-steps__list {
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checkout-steps__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.checkout-steps__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: #A9A9A9;
}
.checkout-steps__icon .icon {
  width: 1rem;
  height: 1rem;
}
.checkout-steps__icon.is-active, .checkout-steps__item.is-active .checkout-steps__icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 5.625rem;
  background-color: #CC0066;
  color: #ffffff;
}
.checkout-steps__item.is-completed .checkout-steps__icon {
  color: #CC0066;
}

.checkout-steps__label {
  margin: 0;
  color: #555555;
  white-space: nowrap;
}
.checkout-steps__item.is-active .checkout-steps__label, .checkout-steps__mobile-current .checkout-steps__label {
  color: #1E1E1E;
}
.checkout-steps__item.is-completed .checkout-steps__label {
  color: #1E1E1E;
}

.checkout-steps__divider {
  flex: 1 0 0;
  min-width: 1.5rem;
  height: 0.125rem;
  border-radius: 0.0625rem;
  background-color: #A9A9A9;
  list-style: none;
}

.checkout-steps__mobile {
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.checkout-steps__mobile-current {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.checkout-steps__progress {
  margin: 0;
  color: #1E1E1E;
  white-space: nowrap;
}

.auth-screen {
  padding-block: 1rem 3rem;
}
@media (min-width: 992px) {
  .auth-screen {
    padding-block: 0 5rem;
  }
}
.auth-screen:not(.auth-screen--checkout) {
  padding-block: 1.5rem 3rem;
}
@media (min-width: 992px) {
  .auth-screen:not(.auth-screen--checkout) {
    padding-block: 0 5rem;
  }
}
.auth-screen:not(.auth-screen--checkout) .auth-screen__tabs {
  margin-top: 0;
}
.auth-screen .auth-screen__nav {
  margin-bottom: 1rem;
}
.auth-screen .auth-screen__back-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 5.625rem;
  background-color: #ffffff;
  color: #1E1E1E;
  box-shadow: 0 0.25rem 0.9375rem -0.1875rem rgba(0, 0, 0, 0.3);
  text-decoration: none;
}
.auth-screen .auth-screen__back-circle .icon {
  width: 1.125rem;
  height: 1.125rem;
}
.auth-screen .auth-screen__back-circle:hover {
  color: #CC0066;
}
.auth-screen .checkout-steps {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .auth-screen .checkout-steps {
    margin-bottom: 1.5rem;
  }
}
.auth-screen .auth-screen__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .auth-screen .auth-screen__header {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
}
.auth-screen .auth-screen__title {
  margin: 0;
  color: #1E1E1E;
}
.auth-screen .auth-screen__lead {
  margin: 0;
  color: #1E1E1E;
  max-width: 35rem;
}
.auth-screen .auth-screen__tabs {
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.auth-screen .auth-screen__tab {
  display: inline-flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 0;
  padding: 0.75rem 1rem;
  border: 1px solid #C3C3C3;
  border-radius: 0.5rem;
  background-color: #ffffff;
  color: #1E1E1E;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  cursor: pointer;
  transition: all 0.2s ease;
}
.auth-screen .auth-screen__tab .icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  color: #555555;
}
.auth-screen .auth-screen__tab.is-active {
  border-color: #CC0066;
  background-color: #fff9fa;
  border-radius: 0.375rem;
}
.auth-screen .auth-screen__tab.is-active .icon {
  color: #CC0066;
}
.auth-screen .auth-screen__grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 992px) {
  .auth-screen .auth-screen__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
  }
}
.auth-screen .auth-screen__register-view {
  display: none;
}
.auth-screen .auth-screen__register-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 992px) {
  .auth-screen .auth-screen__register-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
  }
}
.auth-screen .auth-screen__register-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 992px) {
  .auth-screen .auth-screen__register-form {
    padding: 2rem;
    border: 1px solid #A9A9A9;
    border-radius: 0.75rem;
    background-color: #ffffff;
  }
}
.auth-screen .auth-screen__register-form .form-check--legal .form-check__label {
  font-size: 0.875rem;
  font-weight: 500;
}
.auth-screen .auth-screen__register-form .auth-screen__submit {
  margin-top: 0;
}
.auth-screen .auth-screen__register-aside {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
}
@media (min-width: 992px) {
  .auth-screen .auth-screen__register-aside {
    display: flex;
    padding: 2rem;
    border: 1px solid #DCDCDC;
    border-radius: 0.75rem;
    background-color: #F8F8F8;
  }
}
.auth-screen .auth-screen__register-media {
  display: block;
  width: 100%;
  height: 18.375rem;
  object-fit: cover;
  border-radius: 0.5rem;
}
.auth-screen .auth-screen__register-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.auth-screen .auth-screen__register-login {
  margin: 0;
  text-align: center;
  color: #1E1E1E;
}
.auth-screen .auth-screen__register-login-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: #CC0066;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}
.auth-screen .auth-screen__register-login-link:hover {
  color: #A80053;
}
.auth-screen.is-register-view .auth-screen__grid[data-auth-view=choice] {
  display: none !important;
}
.auth-screen.is-register-view .auth-screen__register-view {
  display: block;
}
.auth-screen .auth-screen__panel {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 992px) {
  .auth-screen .auth-screen__panel {
    display: flex !important;
    padding: 2rem;
    border-radius: 0.75rem;
  }
}
.auth-screen .auth-screen__panel.is-active {
  display: flex;
}
@media (min-width: 992px) {
  .auth-screen .auth-screen__panel--login {
    border: 1px solid #A9A9A9;
    background-color: #ffffff;
  }
}
@media (min-width: 992px) {
  .auth-screen .auth-screen__panel--register {
    justify-content: space-between;
    border: 1px solid #DCDCDC;
    background-color: #F8F8F8;
  }
}
.auth-screen .auth-screen__panel-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.auth-screen .auth-screen__panel-title {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin: 0;
  color: #1E1E1E;
}
.auth-screen .auth-screen__panel-title .icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  color: #CC0066;
}
.auth-screen .auth-screen__panel-desc {
  margin: 0;
  color: #1E1E1E;
}
.auth-screen .auth-screen__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
}
.auth-screen .auth-screen__field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  width: 100%;
}
.auth-screen .auth-screen__label {
  display: flex;
  gap: 0.375rem;
  margin: 0;
  color: #1E1E1E;
}
.auth-screen .auth-screen__required {
  color: #CC0066;
}
.auth-screen .auth-screen__input {
  width: 100%;
  height: 2.75rem;
  padding: 0.75rem 0.875rem;
  border: 1px solid #C3C3C3;
  border-radius: 0.375rem;
  background-color: #ffffff;
  color: #1E1E1E;
  font-size: 0.875rem;
  line-height: 1.4;
}
.auth-screen .auth-screen__input::placeholder {
  color: #717171;
}
.auth-screen .auth-screen__input:focus {
  outline: none;
  border-color: #CC0066;
  box-shadow: 0 0 0 3px rgba(204, 0, 102, 0.15);
}
.auth-screen .auth-screen__form-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
}
.auth-screen .auth-screen__remember {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  color: #1E1E1E;
  cursor: pointer;
}
.auth-screen .auth-screen__checkbox {
  width: 1rem;
  height: 1rem;
  margin: 0;
  border: 1.5px solid #8D8D8D;
  border-radius: 0.25rem;
  accent-color: #CC0066;
  flex-shrink: 0;
}
.auth-screen .auth-screen__lost-password {
  color: #1E1E1E;
  text-decoration: underline;
  white-space: nowrap;
}
.auth-screen .auth-screen__lost-password:hover {
  color: #CC0066;
}
.auth-screen .auth-screen__submit {
  margin-top: 0.5rem;
}
@media (min-width: 992px) {
  .auth-screen .auth-screen__submit {
    margin-top: 0;
  }
}
.auth-screen .auth-screen__benefits {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}
.auth-screen .auth-screen__benefit {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  color: #1E1E1E;
}
.auth-screen .auth-screen__benefit .icon {
  width: 0.9375rem;
  height: 0.9375rem;
  flex-shrink: 0;
  color: #01184E;
}
.auth-screen .auth-screen__register-cta,
.auth-screen .auth-screen__guest-cta {
  color: #01184E !important;
}
.auth-screen .auth-screen__guest {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1.5rem 1rem;
  border-radius: 0.75rem;
  background-color: #F4F5FF;
  box-shadow: 0 0.0625rem 0.0625rem rgba(0, 0, 0, 0.04);
}
@media (min-width: 992px) {
  .auth-screen .auth-screen__guest {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 1rem;
  }
}
.auth-screen .auth-screen__guest-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}
.auth-screen .auth-screen__guest-title {
  margin: 0;
  color: #1E1E1E;
}
.auth-screen .auth-screen__guest-desc {
  margin: 0;
  color: #1E1E1E;
}
.auth-screen .auth-screen__guest-cta {
  flex-shrink: 0;
  align-self: flex-start;
}
@media (min-width: 992px) {
  .auth-screen .auth-screen__guest-cta {
    align-self: center;
  }
}
.auth-screen .auth-screen__footer-nav {
  margin-top: 3rem;
}
.auth-screen .auth-screen__back-link {
  color: #01184E !important;
}

.newsletter-signup {
  padding-block: 1rem 3rem;
}
@media (min-width: 992px) {
  .newsletter-signup {
    padding-block: 0 5rem;
  }
}
.newsletter-signup .newsletter-signup__grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: stretch;
}
@media (min-width: 992px) {
  .newsletter-signup .newsletter-signup__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}
.newsletter-signup .newsletter-signup__form-card {
  padding: 1rem;
  border: 1px solid #A9A9A9;
  border-radius: 0.75rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .newsletter-signup .newsletter-signup__form-card {
    padding: 2rem;
  }
}
.newsletter-signup .newsletter-signup__form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 0;
}
.newsletter-signup .newsletter-signup__intro {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 992px) {
  .newsletter-signup .newsletter-signup__intro {
    gap: 2rem;
  }
}
.newsletter-signup .newsletter-signup__title {
  margin: 0;
  color: #1E1E1E;
}
.newsletter-signup .newsletter-signup__lead {
  margin: 0;
  color: #1E1E1E;
}
.newsletter-signup .newsletter-signup__fields {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 992px) {
  .newsletter-signup .newsletter-signup__fields {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    column-gap: 1.0625rem;
    row-gap: 2rem;
  }
}
.newsletter-signup .newsletter-signup__field {
  min-width: 0;
  gap: 0.375rem;
}
@media (min-width: 992px) {
  .newsletter-signup .newsletter-signup__field {
    grid-column: 1;
    grid-row: 1;
  }
}
.newsletter-signup .newsletter-signup__field .form-field__label {
  color: #1E1E1E;
  font-weight: 600;
}
.newsletter-signup .newsletter-signup__field .form-field__control {
  min-height: 2.75rem;
  height: 2.75rem;
  padding: 0.75rem 0.875rem;
  line-height: 1.4;
}
.newsletter-signup .newsletter-signup__submit {
  width: 100%;
  height: 2.75rem;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .newsletter-signup .newsletter-signup__submit {
    grid-column: 2;
    grid-row: 1;
    width: auto;
  }
}
.newsletter-signup .newsletter-signup__consent {
  flex-wrap: nowrap;
  gap: 0.5rem;
  max-width: 36.5rem;
}
@media (min-width: 992px) {
  .newsletter-signup .newsletter-signup__consent {
    grid-column: 1/-1;
    grid-row: 2;
  }
}
.newsletter-signup .newsletter-signup__consent .form-check__label {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}
.newsletter-signup .newsletter-signup__consent-text {
  color: #1E1E1E;
  font-weight: 500;
}
.newsletter-signup .newsletter-signup__consent-text .form-check__required {
  white-space: nowrap;
}
.newsletter-signup .newsletter-signup__legal {
  color: #717171;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
}
.newsletter-signup .newsletter-signup__legal a {
  color: #CC0066;
  text-decoration: underline;
}
.newsletter-signup .newsletter-signup__legal a:hover {
  color: #A80053;
}
.newsletter-signup .newsletter-signup__benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background-color: #F4F5FF;
}
@media (min-width: 992px) {
  .newsletter-signup .newsletter-signup__benefits {
    padding: 2rem;
  }
}
.newsletter-signup .newsletter-signup__benefits-title {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin: 0;
  color: #1E1E1E;
}
.newsletter-signup .newsletter-signup__benefits-title .icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  color: #CC0066;
}
.newsletter-signup .newsletter-signup__list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.newsletter-signup .newsletter-signup__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  color: #1E1E1E;
}
@media (min-width: 992px) {
  .newsletter-signup .newsletter-signup__item {
    align-items: center;
  }
}
.newsletter-signup .newsletter-signup__item .icon {
  width: 0.9375rem;
  height: 0.9375rem;
  flex-shrink: 0;
  margin-top: 0.15em;
  color: #01184E;
}
@media (min-width: 992px) {
  .newsletter-signup .newsletter-signup__item .icon {
    margin-top: 0;
  }
}

.error-404 {
  padding-block: 1rem 3rem;
}
@media (min-width: 992px) {
  .error-404 {
    padding-block: 0 5rem;
  }
}
.error-404 .error-404__grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 992px) {
  .error-404 .error-404__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 3rem;
    align-items: start;
  }
}
@media (min-width: 1380px) {
  .error-404 .error-404__grid {
    grid-template-columns: minmax(0, 31.625rem) minmax(0, 1fr);
    column-gap: 8.5rem;
  }
}
.error-404 .error-404__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}
@media (min-width: 992px) {
  .error-404 .error-404__content {
    gap: 3rem;
  }
}
.error-404 .error-404__intro {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 992px) {
  .error-404 .error-404__intro {
    gap: 1.5rem;
  }
}
.error-404 .error-404__label {
  margin: 0;
  color: #A9A9A9;
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 1.3%;
}
@media (min-width: 992px) {
  .error-404 .error-404__label {
    color: #1E1E1E;
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0;
  }
}
.error-404 .error-404__title {
  margin: 0;
  color: #1E1E1E;
}
@media (min-width: 992px) {
  .error-404 .error-404__title-space {
    display: none;
  }
}
.error-404 .error-404__media {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .error-404 .error-404__media--mobile {
    display: none;
  }
}
.error-404 .error-404__media--desktop {
  display: none;
}
@media (min-width: 992px) {
  .error-404 .error-404__media--desktop {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.error-404 .error-404__image {
  display: block;
  width: 100%;
  max-width: 33.375rem;
  height: auto;
}
.error-404 .error-404__copy {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.5rem;
}
@media (min-width: 992px) {
  .error-404 .error-404__copy {
    align-items: flex-start;
    gap: 3rem;
  }
}
.error-404 .error-404__description {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  color: #1E1E1E;
  font-weight: 500;
}
.error-404 .error-404__description p {
  margin: 0;
}
.error-404 .error-404__button {
  width: 100%;
}
@media (min-width: 992px) {
  .error-404 .error-404__button {
    width: auto;
  }
}

.legal-document {
  padding-block: 1rem 3rem;
}
@media (min-width: 992px) {
  .legal-document {
    padding-block: 0 5rem;
  }
}
.legal-document .legal-document__title {
  margin: 0 0 1.5rem;
  color: #1E1E1E;
}
@media (min-width: 992px) {
  .legal-document .legal-document__title {
    margin-bottom: 1rem;
  }
}
.legal-document .legal-document__layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 992px) {
  .legal-document .legal-document__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }
}
.legal-document .legal-document__nav {
  flex: 0 0 19.5rem;
  width: 19.5rem;
}
.legal-document .legal-document__nav-inner {
  position: sticky;
  top: calc(var(--header-height, 80px) + 1.5rem);
  padding: 1.5rem 1rem;
}
.legal-document .legal-document__main {
  min-width: 0;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .legal-document .legal-document__main {
    padding-inline: 3rem 0;
  }
}
.legal-document .legal-document__content {
  color: #1E1E1E;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}
.legal-document .legal-document__content > *:first-child {
  margin-top: 0;
}
.legal-document .legal-document__content p {
  margin: 0 0 1.5rem;
}
.legal-document .legal-document__content a {
  color: #CC0066;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.legal-document .legal-document__content a:hover {
  color: #A80053;
}
.legal-document .legal-document__content a:focus-visible {
  outline: 2px solid #A80053;
  outline-offset: 2px;
  border-radius: 2px;
}
.legal-document .legal-document__content h2,
.legal-document .legal-document__content .article-heading {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 3rem 0 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1E1E1E;
  scroll-margin-top: calc(var(--header-height, 80px) + 1rem);
}
@media (min-width: 992px) {
  .legal-document .legal-document__content h2,
  .legal-document .legal-document__content .article-heading {
    align-items: center;
  }
}
.legal-document .legal-document__content h2:first-child,
.legal-document .legal-document__content .article-heading:first-child {
  margin-top: 0;
}
.legal-document .legal-document__content h3 {
  margin: 2rem 0 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}
.legal-document .legal-document__content ul,
.legal-document .legal-document__content ol {
  margin: 0 0 1.5rem;
  padding-left: 1.5rem;
}
.legal-document .legal-document__content ul {
  list-style: disc;
}
.legal-document .legal-document__content ol {
  list-style: decimal;
}
.legal-document .legal-document__content li + li {
  margin-top: 1.5rem;
}
.legal-document .legal-document__content li > ul,
.legal-document .legal-document__content li > ol {
  margin-top: 1rem;
  margin-bottom: 0;
}

.upsell-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #ffffff;
  border: 1px solid #C3C3C3;
  border-radius: 1rem;
}

.upsell-card__image {
  flex-shrink: 0;
  width: 5.6875rem;
  height: 5.6875rem;
  overflow: hidden;
}
.upsell-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upsell-card__image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.upsell-card__name-link {
  color: inherit;
  text-decoration: none;
}
.upsell-card__name-link:hover {
  color: #CC0066;
}

.upsell-card__content {
  display: flex;
  flex-direction: column;
  gap: 1.0625rem;
  min-width: 0;
  flex: 1;
}

.upsell-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.upsell-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.4375rem 0.1875rem;
  background: #F1007A;
  color: #ffffff;
  border-radius: 5.625rem;
  white-space: nowrap;
}

.upsell-card__name {
  margin: 0;
  color: #1E1E1E;
  font-weight: 500;
}

.upsell-card__prices {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.upsell-card__price-old {
  color: #717171;
  font-size: 0.625rem;
  line-height: 1.4;
  font-weight: 500;
  text-decoration: line-through;
}

.upsell-card__price {
  color: #1E1E1E;
}

.upsell-card__add {
  align-self: flex-start;
  color: #01184E;
  font-size: 0.75rem;
  line-height: 1.4;
}
.upsell-card__add .icon {
  width: 1rem;
  height: 1rem;
}

.frequently-bought {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.frequently-bought--popup {
  padding: 1rem 1.25rem 1.5rem;
  background: #F4F5FF;
}

.frequently-bought--cart {
  padding: 1rem 1.25rem;
  background: #F4F5FF;
  border-radius: 0.75rem;
}

.frequently-bought__heading {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.frequently-bought--popup .frequently-bought__heading {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0;
}

.frequently-bought__eyebrow-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.frequently-bought__icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #CC0066;
  flex-shrink: 0;
}

.frequently-bought__eyebrow {
  margin: 0;
  color: #CC0066;
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 700;
}

.frequently-bought__title {
  margin: 0;
  color: #1E1E1E;
}

.frequently-bought__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .frequently-bought--popup .frequently-bought__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .frequently-bought--cart .frequently-bought__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.woocommerce-breadcrumb {
  margin-block: 1.5rem 1.875rem;
  padding-inline: 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5625rem;
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 500;
  color: #C3C3C3;
  overflow: auto;
}
.woocommerce-breadcrumb .delimiter {
  color: #C3C3C3;
  margin-inline: 0 !important;
  padding-inline: 0;
}
.woocommerce-breadcrumb a {
  color: #C3C3C3;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.woocommerce-breadcrumb a:hover {
  color: #CC0066;
}
.woocommerce-breadcrumb ol {
  display: flex;
  gap: 0.5625rem;
}
.woocommerce-breadcrumb li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5625rem;
}
.woocommerce-breadcrumb .current,
.woocommerce-breadcrumb li.current a,
.woocommerce-breadcrumb li .current {
  color: #1E1E1E;
  font-weight: 600;
}
.woocommerce-breadcrumb .breadcrumb-home-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.woocommerce-breadcrumb .breadcrumb-home-icon svg {
  width: 1rem;
  height: 1rem;
}
.woocommerce-breadcrumb .breadcrumb-home-text {
  display: none;
}
@media (min-width: 992px) {
  .woocommerce-breadcrumb .breadcrumb-home-icon {
    display: none;
  }
  .woocommerce-breadcrumb .breadcrumb-home-text {
    display: inline;
  }
}

.category-tree {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1.5rem;
}

.category-tree__title {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 600;
  color: #1E1E1E;
  margin: 0;
}
@media (min-width: 992px) {
  .category-tree__title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 2.625rem;
  }
}

.category-tree__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.category-tree__item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.category-tree__item.is-child {
  gap: 0;
}

.category-tree__row {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  position: relative;
}

.category-tree__link {
  display: flex;
  flex: 1;
  align-items: center;
  min-width: 0;
  padding: 0.5rem 0;
  border-radius: 0.5rem;
  color: #1E1E1E;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.category-tree__link:hover {
  color: #CC0066;
}

.category-tree__meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  flex-shrink: 0;
}

.category-tree__toggle-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.category-tree__item.is-child > .category-tree__row {
  padding: 0.5rem 0;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.category-tree__item.is-child .category-tree__link {
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 500;
  padding: 0;
  color: #555555;
}

.category-tree__item.is-child .category-tree__toggle-slot {
  display: none;
}

.category-tree__item:not(.is-child) .category-tree__name {
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 600;
}

.category-tree__item:not(.is-child):not(.is-expanded) .category-tree__name {
  font-weight: 500;
}

.category-tree__name {
  min-width: 0;
}

.category-tree__badge {
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 1.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 5.625rem;
  background: #F1F1F1;
  color: #555555;
}

.category-tree__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1E1E1E;
  cursor: pointer;
}
.category-tree__toggle:hover, .category-tree__toggle:focus-visible {
  color: #CC0066;
}

.category-tree__chevron {
  width: 0.75rem;
  height: 0.75rem;
  display: block;
}

.category-tree__children {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
  padding-left: 1.75rem;
  border-left: 2px solid #DCDCDC;
}

.category-tree__children[hidden] {
  display: none !important;
}

.category-tree__item:not(.is-child) > .category-tree__row {
  border: 1px solid transparent;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.category-tree__item.is-active > .category-tree__row::before {
  content: "";
  position: absolute;
  top: 0;
  left: -0.75rem;
  width: calc(100% + 1.5rem);
  height: 100%;
  background: #CC0066;
  z-index: -1;
  background: #fff9fa;
  border-radius: 0.5rem;
  border: 1px solid #CC0066;
}

.category-tree__item.is-active:not(.is-child) > .category-tree__row {
  position: relative;
}

.category-tree__item.is-active > .category-tree__row .category-tree__link {
  color: #CC0066;
}

.category-tree__item.is-active > .category-tree__row .category-tree__badge {
  background: #CC0066;
  color: #ffffff;
}

.category-tree__item.is-active.is-child > .category-tree__row .category-tree__name {
  font-weight: 500;
}

.category-tree__item.is-active:not(.is-child) > .category-tree__row .category-tree__name {
  font-weight: 600;
}

.woocommerce-MyAccount-navigation.account-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  background-color: #ffffff;
  position: static;
  height: auto;
  left: auto;
  bottom: auto;
  z-index: auto;
  overflow: visible;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  transform: none;
}
@media (min-width: 992px) {
  .woocommerce-MyAccount-navigation.account-nav {
    padding: 2rem 1.5rem;
    border: 1px solid #C3C3C3;
    border-radius: 1rem;
  }
}

.account-nav__greeting {
  margin: 0;
  color: #1E1E1E;
}

.account-nav__greeting-hello {
  font-weight: 400;
}

.account-nav__divider {
  width: 100%;
  height: 1px;
  background-color: #DCDCDC;
}

.account-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  width: 100%;
}

.account-nav__item {
  width: 100%;
}

.account-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  color: #1E1E1E;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.account-nav__link:hover {
  color: #1E1E1E;
  background-color: #F8F8F8;
}
.account-nav__link:focus-visible {
  outline: 2px solid #CC0066;
  outline-offset: 2px;
}

.account-nav__item.is-active .account-nav__link {
  background-color: #F8F8F8;
}

.account-nav__link-main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.account-nav__icon {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #CC0066;
}
.account-nav__icon .icon {
  width: 100%;
  height: 100%;
}

.account-nav__label {
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 600;
  color: #1E1E1E;
}

.account-nav__chevron {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #1E1E1E;
}
.account-nav__chevron .icon {
  width: 100%;
  height: 100%;
}

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 33.5625rem;
  min-height: 21.4375rem;
  margin-inline: auto;
  padding-block: 1.5rem;
  text-align: center;
}

.empty-state__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20rem;
  max-width: 100%;
}

.empty-state__image {
  display: block;
  width: var(--empty-state-image-width, 9.4375rem);
  height: var(--empty-state-image-height, 10.25rem);
  max-width: 100%;
  object-fit: contain;
}

.empty-state__title {
  margin: 0;
  color: #1E1E1E;
}

.empty-state__description {
  margin: 0;
}

.empty-state__button {
  flex-shrink: 0;
}

.order-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem;
  border: 1px solid #DCDCDC;
  border-radius: 5.625rem;
  color: #393939;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
  background-color: #F1F1F1;
}

.order-status-badge--production {
  background-color: #fff3a6;
}

.order-status-badge--shipped {
  background-color: #c8efe6;
}

.order-status-badge--paid {
  background-color: #daefc8;
}

.order-status-badge--completed {
  background-color: #ebdfff;
}

.order-status-badge--default {
  background-color: #F1F1F1;
}

.orders-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.orders-pagination {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.order-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  border-radius: 0.75rem;
}

.order-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 2rem;
  background-color: #F8F8F8;
  border: 1px solid #C3C3C3;
  border-bottom: 0;
  border-radius: 0.75rem 0.75rem 0 0;
}
@media (min-width: 992px) {
  .order-card__header {
    align-items: center;
  }
}

.order-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  min-width: 0;
}
@media (min-width: 992px) {
  .order-card__meta {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}

.order-card__number,
.order-card__date,
.order-card__total {
  margin: 0;
}

.order-card__number {
  color: #1E1E1E;
}

.order-card__date {
  color: #555555;
}

.order-card__total {
  flex-shrink: 0;
  color: #1E1E1E;
  text-align: right;
}
.order-card__total .woocommerce-Price-amount,
.order-card__total .amount {
  font-weight: 600;
}

.order-card__body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem;
  background-color: #ffffff;
  border: 1px solid #C3C3C3;
  border-radius: 0 0 0.75rem 0.75rem;
}
@media (min-width: 992px) {
  .order-card__body {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
    padding: 1rem 2rem;
  }
}

.order-card__products {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 0;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .order-card__products {
    gap: 1rem;
  }
}

.order-card__product {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  min-width: 0;
}

.order-card__product-media {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  padding: 0.25rem;
  background-color: #ffffff;
  border-radius: 0.375rem;
  overflow: hidden;
}

.order-card__product-thumb {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.375rem;
}
.order-card__product-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.375rem;
}

.order-card__product-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.375rem;
}

.order-card__product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  min-width: 0;
  flex: 1 1 auto;
}

.order-card__product-name,
.order-card__product-qty {
  margin: 0;
}

.order-card__product-name {
  color: #1E1E1E;
}

.order-card__product-qty {
  color: #555555;
}

.order-card--complaint .order-card__header,
.order-card--refund .order-card__header {
  padding: 1rem;
}
@media (min-width: 992px) {
  .order-card--complaint .order-card__header,
  .order-card--refund .order-card__header {
    padding: 1rem 2rem;
  }
}
.order-card--complaint .order-card__actions,
.order-card--refund .order-card__actions {
  width: auto;
}
.order-card--complaint .order-card__actions .order-card__action,
.order-card--refund .order-card__actions .order-card__action {
  width: auto;
}

@media (min-width: 992px) {
  .order-card--refund .order-card__body {
    align-items: center;
  }
}

.order-card__product-info--complaint {
  gap: 1rem;
}

.order-card__product-info--refund {
  gap: 1rem;
}
@media (min-width: 992px) {
  .order-card__product-info--refund {
    gap: 0.5rem;
  }
}

.order-card__product-facts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
@media (min-width: 992px) {
  .order-card__product-facts {
    flex-direction: row;
    align-items: flex-start;
  }
}

.order-card__product-fact {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
}

.order-card__product-fact-label {
  color: #1E1E1E;
}

.order-card__product-fact-value {
  color: #717171;
}

.order-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .order-card__actions {
    width: auto;
    gap: 1rem;
    align-items: stretch;
  }
}
.order-card__actions .order-card__action {
  width: 100%;
  color: #01184E;
}
@media (min-width: 992px) {
  .order-card__actions .order-card__action {
    width: auto;
  }
}
@media (max-width: 991.98px) {
  .order-card__actions .order-card__action {
    height: 2.5rem;
    padding: 0.75rem 1rem;
  }
  .order-card__actions .order-card__action .icon {
    width: 1.25rem;
  }
}
.order-card__actions .order-card__action.action-pay {
  color: #ffffff;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  padding: 1.5rem;
  background-color: #ffffff;
  border: 1px solid #C3C3C3;
  border-radius: 0.75rem;
}

.review-card__product {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  min-width: 0;
}
@media (min-width: 992px) {
  .review-card__product {
    flex-direction: row;
    gap: 0.625rem;
  }
}

.review-card__media {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  padding: 0.25rem;
  background-color: #ffffff;
  border-radius: 0.375rem;
  overflow: hidden;
}

.review-card__thumb {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.375rem;
}
.review-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.375rem;
}

.review-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.375rem;
}

.review-card__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  min-width: 0;
  flex: 1 1 auto;
}

.review-card__name,
.review-card__qty,
.review-card__meta {
  margin: 0;
}

.review-card__name {
  color: #1E1E1E;
}
.review-card__name a {
  color: inherit;
  text-decoration: none;
}
.review-card__name a:hover, .review-card__name a:focus-visible {
  color: #CC0066;
}

.review-card__qty,
.review-card__meta {
  color: #555555;
}

.review-card__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.375rem;
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .review-card__actions {
    width: auto;
    align-items: flex-start;
  }
}

.review-card__add {
  width: 100%;
  color: #01184E;
}
@media (min-width: 992px) {
  .review-card__add {
    width: auto;
  }
}

.inspirations-list {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 992px) {
  .inspirations-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.inspiration-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
  min-width: 0;
  padding: 0.75rem;
  background-color: #ffffff;
  border: 1px solid #DCDCDC;
  border-radius: 0.75rem;
}

.inspiration-card__media {
  position: relative;
  width: 100%;
  height: 12.625rem;
  overflow: hidden;
  border-radius: 0.75rem;
}

.inspiration-card__image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.inspiration-card__image-wrap {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.75rem;
}
.inspiration-card__image-wrap picture,
.inspiration-card__image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
}

.inspiration-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inspiration-card__zoom {
  width: 1.75rem;
  height: 1.75rem;
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  overflow: hidden;
  pointer-events: none;
}
.inspiration-card__zoom img {
  display: block;
  width: 28px;
  height: 28px;
}

.inspiration-card__like {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 0.6875rem;
  right: 0.625rem;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  border: 0;
  border-radius: 5.625rem;
  background-color: #ffffff;
  cursor: pointer;
}
.inspiration-card__like img {
  display: block;
  width: 24px;
  height: 24px;
  pointer-events: none;
}
.inspiration-card__like .inspiration-card__like-icon--on {
  display: none;
}
.inspiration-card__like.liked {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(1px);
}
.inspiration-card__like.liked .inspiration-card__like-icon--off {
  display: none;
}
.inspiration-card__like.liked .inspiration-card__like-icon--on {
  display: block;
}
.inspiration-card__like.loading {
  pointer-events: none;
  opacity: 0.7;
}
.inspiration-card__like:focus-visible {
  outline: 2px solid #1E1E1E;
  outline-offset: 2px;
}

.inspiration-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  width: 100%;
}

.inspiration-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1.5625rem;
  padding: 0 0.5rem;
  border: 1px solid #A9A9A9;
  border-radius: 5.625rem;
  color: #000000;
  font-weight: 500;
  line-height: 1.4 !important;
  white-space: nowrap;
}

.inspiration-card__product {
  display: flex;
  align-items: center;
  gap: 0.6875rem;
  width: 100%;
  min-width: 0;
  margin-top: auto;
  padding: 0.5rem;
  border-radius: 0.75rem;
  background-color: #F8F8F8;
  text-decoration: none;
  color: #1E1E1E;
}
.inspiration-card__product:hover, .inspiration-card__product:focus-visible {
  color: #1E1E1E;
}
.inspiration-card__product:focus-visible {
  outline: 2px solid #1E1E1E;
  outline-offset: 2px;
}

.inspiration-card__product-thumb {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0.25rem;
}
.inspiration-card__product-thumb picture,
.inspiration-card__product-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.25rem;
}

.inspiration-card__product-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inspiration-card__product-name {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  line-height: 1.4;
}

.inspiration-card__product-chevron {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: inherit;
}
.inspiration-card__product-chevron .icon {
  display: block;
  width: 16px;
  height: 16px;
}

.order-preview {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 992px) {
  .order-preview {
    gap: 2rem;
  }
}
.order-preview .order-details-table,
.order-preview .woocommerce-order-details,
.order-preview .woocommerce-customer-details {
  display: none;
}

.order-preview__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 992px) {
  .order-preview__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.order-preview__head-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.order-preview__back-btn {
  padding-inline: 0;
}

.order-preview__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.order-preview__title,
.order-preview__date {
  margin: 0;
}

.order-preview__title {
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 600;
  color: #1E1E1E;
}

.order-preview__date {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #717171;
}

.order-preview__invoice-btn {
  width: fit-content;
}

.order-preview__details-card {
  width: 100%;
  max-width: 40.625rem;
  padding: 1.5rem;
  background-color: #ffffff;
  border: 1px solid #C3C3C3;
  border-radius: 0.75rem;
}

.order-preview__details-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  cursor: pointer;
  color: #393939;
}
.order-preview__details-toggle::-webkit-details-marker {
  display: none;
}
.order-preview__details-toggle::marker {
  content: "";
  display: none;
}
.order-preview__details-toggle:focus-visible {
  outline: 2px solid #0C5FFA;
  outline-offset: 0.25rem;
  border-radius: 0.25rem;
}

.order-preview__details-title {
  color: #393939;
}

.order-preview__details-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  color: #393939;
  transition: transform 0.2s ease;
}

.order-preview__details-card[open] .order-preview__details-icon {
  transform: rotate(180deg);
}

.order-preview__details {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #DCDCDC;
}

.order-preview__meta-list {
  margin: 0;
}

.order-preview__meta-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #393939;
}
.order-preview__meta-row + .order-preview__meta-row {
  margin-top: 1rem;
}
.order-preview__meta-row dt,
.order-preview__meta-row dd {
  margin: 0;
}
.order-preview__meta-row dt {
  min-width: 0;
}
.order-preview__meta-row dd {
  flex-shrink: 0;
  text-align: right;
  white-space: nowrap;
}
.order-preview__meta-row dd .woocommerce-Price-amount,
.order-preview__meta-row dd .amount {
  font-weight: 500;
}

.order-preview__info-cards {
  display: grid;
  gap: 1rem;
  width: 100%;
}
@media (min-width: 992px) {
  .order-preview__info-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.order-preview__info-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  padding: 1.5rem;
  border: 1px solid #C3C3C3;
  border-radius: 0.75rem;
  background-color: #ffffff;
}
.order-preview__info-card .order-preview__meta-row dt {
  color: #393939;
}
.order-preview__info-card .order-preview__meta-row dd {
  color: #717171;
  white-space: normal;
}

.order-preview__info-title,
.order-preview__info-lead {
  margin: 0;
}

.order-preview__info-title {
  padding-bottom: 1rem;
  border-bottom: 1px solid #DCDCDC;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  color: #1E1E1E;
}

.order-preview__info-body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.order-preview__info-lead {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  color: #393939;
}

.order-preview__addresses {
  display: grid;
  gap: 1rem;
}
@media (min-width: 992px) {
  .order-preview__addresses {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.125rem;
  }
}

.order-preview__address-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 11.125rem;
  padding: 1.5rem;
  border: 1px solid #C3C3C3;
  border-radius: 0.75rem;
  background-color: #ffffff;
}
.order-preview__address-card h3,
.order-preview__address-card address {
  margin: 0;
}
.order-preview__address-card .order-preview__address-title {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  color: #1E1E1E;
}
.order-preview__address-card address {
  font-style: normal;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #393939;
}

.order-preview__items {
  border: 1px solid #C3C3C3;
  border-radius: 0.75rem;
  overflow: hidden;
  background-color: #ffffff;
}

.order-preview__items-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}
@media (min-width: 992px) {
  .order-preview__items-header {
    padding: 1rem 2rem;
  }
}
.order-preview__items-header {
  border-bottom: 1px solid #C3C3C3;
  background-color: #F8F8F8;
}
.order-preview__items-header p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #1E1E1E;
}
.order-preview__items-header p:first-child {
  display: flex;
  gap: 0.5rem;
  font-weight: 600;
}
.order-preview__items-header p:last-child {
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: right;
}

.order-preview__items-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0;
  padding: 1rem 0.75rem 0.75rem;
  list-style: none;
}
@media (min-width: 992px) {
  .order-preview__items-list {
    padding: 1rem 2rem 2rem;
  }
}

.order-preview-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-bottom: 1px solid #DCDCDC;
  padding-bottom: 1.5rem;
}
.order-preview-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.order-preview-item__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.order-preview-item__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem;
  flex-shrink: 0;
  min-height: 4rem;
}

.order-preview-item__main {
  display: flex;
  gap: 0.75rem;
  min-width: 0;
}

.order-preview-item__media {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  padding: 0.25rem;
  border-radius: 0.375rem;
}

.order-preview-item__thumb {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.375rem;
  overflow: hidden;
}

.order-preview-item__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.375rem;
}

.order-preview-item__content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}

.order-preview-item--refund .order-preview-item__content {
  gap: 1rem;
  justify-content: center;
}

.order-preview-item__heading {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5rem;
}

.order-preview-item__title,
.order-preview-item__qty,
.order-preview-item__return-note {
  margin: 0;
}

.order-preview-item__title {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  color: #1E1E1E;
}

.order-preview-item__qty {
  padding: 0.25rem 0.5rem;
  border-radius: 5.625rem;
  background-color: #F1F1F1;
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 600;
  color: #555555;
}

.order-preview-item__return-note {
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 600;
  color: #717171;
}

.order-preview-item__meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.order-preview-item__meta-list li {
  display: inline-flex;
  gap: 0.375rem;
  align-items: center;
  padding: 0.25rem 0.5rem;
  border: 1px solid #DCDCDC;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #555555;
}

.order-preview-item__meta-label {
  color: #1E1E1E;
  font-weight: 600;
}

.order-preview-item__price-wrap {
  flex-shrink: 0;
  text-align: right;
}

.order-preview-item__price,
.order-preview-item__unit-price {
  margin: 0;
}

.order-preview-item__price {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  color: #1E1E1E;
}

.order-preview-item__unit-price {
  font-size: 0.75rem;
  line-height: 1.4;
  color: #717171;
}

.order-preview-item__link {
  width: fit-content;
  margin-left: auto;
  color: #01184E;
}

.order-preview__returns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  background-color: #F4F5FF;
}

.order-preview__returns-title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 700;
  color: #1E1E1E;
}

.order-preview__returns-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 992px) {
  .order-preview__returns-body {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.order-preview__returns-text {
  margin: 0;
  max-width: 32.5rem;
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 500;
  color: #1E1E1E;
}

.order-preview__returns-actions {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.order-preview__notes-title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  color: #1E1E1E;
}

.order-preview__notes ol {
  margin: 0;
  padding-left: 1.25rem;
}
.order-preview__notes li + li {
  margin-top: 0.75rem;
}

.order-preview__note-date {
  margin: 0 0 0.375rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #717171;
}

.order-preview__note-content p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #393939;
}

.order-preview__items--complaint .order-preview__items-list,
.order-preview__items--refund .order-preview__items-list {
  padding-bottom: 2rem;
}
@media (min-width: 992px) {
  .order-preview__items--complaint .order-preview__items-list,
  .order-preview__items--refund .order-preview__items-list {
    gap: 2rem;
  }
}

@media (max-width: 991.98px) {
  .order-preview__items--refund .order-preview__items-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .order-preview__items--refund .order-preview__items-header p:last-child {
    text-align: left;
  }
}

.order-preview__complaint-extras {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0 0.75rem 0.75rem;
}
@media (min-width: 992px) {
  .order-preview__complaint-extras {
    padding: 0 2rem 2rem;
  }
}

.order-preview__complaint-block {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.order-preview__complaint-heading,
.order-preview__complaint-text {
  margin: 0;
}

.order-preview__complaint-heading {
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 700;
  color: #1E1E1E;
}

.order-preview__complaint-text {
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 500;
  color: #1E1E1E;
}

.order-preview__attachments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.order-preview__attachment {
  display: block;
  width: 4rem;
  height: 4rem;
  overflow: hidden;
  border-radius: 0.5rem;
}
.order-preview__attachment img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.order-preview__attachment:focus-visible {
  outline: 2px solid #0C5FFA;
  outline-offset: 0.125rem;
}

.order-preview__attachment-file {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0.25rem;
  background-color: #F1F1F1;
  color: #393939;
  font-size: 0.625rem;
  line-height: 1.2;
  text-align: center;
  word-break: break-word;
}

@media (max-width: 991.98px) {
  .order-preview__items-header,
  .order-preview__items-list {
    padding-inline: 0.75rem;
  }
  .order-preview__items-list {
    padding-bottom: 0.75rem;
  }
  .order-preview__items--complaint,
  .order-preview__items--refund {
    background-color: transparent;
    border: 0;
    border-radius: 0;
    overflow: visible;
  }
  .order-preview__items--complaint .order-preview__items-header,
  .order-preview__items--refund .order-preview__items-header {
    border: 1px solid #C3C3C3;
    border-radius: 0.75rem 0.75rem 0 0;
  }
  .order-preview__items--complaint .order-preview__items-list,
  .order-preview__items--refund .order-preview__items-list {
    border: 1px solid #C3C3C3;
    border-top: 0;
    border-radius: 0 0 0.75rem 0.75rem;
    background-color: #ffffff;
    padding-bottom: 2rem;
  }
  .order-preview__items--complaint .order-preview__complaint-extras,
  .order-preview__items--refund .order-preview__complaint-extras {
    padding: 1.5rem 0 0;
    gap: 1.5rem;
  }
  .order-preview-item {
    gap: 0.5rem;
    padding-bottom: 1rem;
  }
  .order-preview-item__top {
    flex-direction: column;
    gap: 0.5rem;
  }
  .order-preview-item--refund {
    gap: 1rem;
    padding-bottom: 2rem;
  }
  .order-preview-item--refund .order-preview-item__top {
    gap: 1rem;
  }
  .order-preview-item--refund .order-preview-item__main {
    flex-direction: column;
    gap: 2rem;
  }
  .order-preview-item--refund .order-preview-item__media {
    width: 6.25rem;
    height: 6.25rem;
    padding: 0;
  }
  .order-preview-item--refund .order-preview-item__side {
    display: none;
  }
  .order-preview-item__main {
    width: 100%;
  }
  .order-preview-item__side {
    width: 100%;
    min-height: 0;
    align-items: flex-start;
    padding-left: 4.75rem;
  }
  .order-preview-item__price-wrap {
    width: 100%;
    text-align: left;
  }
  .order-preview-item__link {
    margin-left: 0;
    padding-inline: 0;
  }
  .order-preview__returns-actions {
    width: 100%;
    flex-wrap: nowrap;
  }
  .order-preview__returns-actions .btn {
    flex: 1 1 50%;
    min-width: 0;
  }
}
.filter-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}

.filter-toolbar__chips {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  flex-wrap: wrap;
  display: none;
  min-width: 0;
}
@media (min-width: 992px) {
  .filter-toolbar__chips {
    display: flex;
  }
}

.filter-toolbar__all {
  flex-shrink: 0;
  color: #01184E;
  font-weight: 500;
  outline-color: #C3C3C3;
}
@media (min-width: 992px) {
  .filter-toolbar__all {
    margin-left: auto;
  }
}
.filter-toolbar__all:hover {
  outline-color: #A9A9A9;
  color: #01184E;
}
.filter-toolbar__all:focus, .filter-toolbar__all:focus-visible {
  outline: 1px solid #C3C3C3;
  box-shadow: 0 0 0 5px #F1F1F1;
  color: #01184E;
}

.filter-chip__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  height: 2.625rem;
  padding: 0.75rem 1rem;
  border: 1px solid #DCDCDC;
  border-radius: 5.625rem;
  background: #ffffff;
  color: #01184E;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.filter-chip__button:hover, .filter-chip__button:focus-visible {
  border-color: #A9A9A9;
  color: #01184E;
}
.filter-chip__button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 5px #F1F1F1;
}

.filter-chip.is-open .filter-chip__button,
.filter-chip.is-active .filter-chip__button {
  border-color: #01184E;
}

.filters-sidebar {
  position: fixed;
  inset: 0;
  z-index: 5100;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
  visibility: hidden;
}

.filters-sidebar.open {
  pointer-events: auto;
  visibility: visible;
}

.filters-sidebar__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 24, 78, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.filters-sidebar.open .filters-sidebar__backdrop {
  opacity: 1;
}

.filters-panel {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  position: relative;
  z-index: 1;
  width: min(100%, 25rem);
  height: 100%;
  background: #ffffff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.filters-sidebar.open .filters-panel {
  transform: translateX(0);
}

.filters-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-shrink: 0;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #DCDCDC;
}

.filters-panel__title {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 600;
  margin: 0;
  color: #1E1E1E;
}

.filters-panel__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #01184E;
  cursor: pointer;
}
.filters-panel__close .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.filters-panel__body {
  flex: 1;
  overflow: auto;
  padding: 1.5rem;
}

.filters-panel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-shrink: 0;
  padding: 0 1rem;
  height: 4.875rem;
  background: #ffffff;
  box-shadow: 0 0.0625rem 7.15px rgba(0, 0, 0, 0.25);
}

.filters-panel__clear {
  flex-shrink: 0;
  color: #01184E;
}
.filters-panel__clear.btn-outline-light {
  color: #01184E;
}

.filters-panel__apply {
  flex: 1;
  min-width: 0;
}

.wcapf-single-filter.is-chip-hidden,
.inspirations-filter.is-chip-hidden {
  display: none;
}

.filters-sidebar.is-chip-focus .wcapf-field-title {
  display: none;
}
.filters-sidebar.is-chip-focus .wcapf-single-filter:not(.is-chip-hidden) {
  margin-bottom: 0;
}

.shop-filters .wcapf-single-filter,
.filters-panel__body .wcapf-single-filter {
  margin-bottom: 1.5rem;
}
.shop-filters .wcapf-single-filter:last-child,
.filters-panel__body .wcapf-single-filter:last-child {
  margin-bottom: 0;
}
.shop-filters .wcapf-field-title,
.filters-panel__body .wcapf-field-title {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: #1E1E1E;
}
.shop-filters .wcapf-layered-nav ul,
.shop-filters .wcapf-labeled-nav ul,
.filters-panel__body .wcapf-layered-nav ul,
.filters-panel__body .wcapf-labeled-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.shop-filters .wcapf-layered-nav li,
.shop-filters .wcapf-labeled-nav li,
.filters-panel__body .wcapf-layered-nav li,
.filters-panel__body .wcapf-labeled-nav li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  margin: 0;
}
.shop-filters .wcapf-layered-nav label,
.shop-filters .wcapf-labeled-nav label,
.filters-panel__body .wcapf-layered-nav label,
.filters-panel__body .wcapf-labeled-nav label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 500;
  flex: 1;
  color: #1E1E1E;
  cursor: pointer;
}
.shop-filters .wcapf-field-hidden,
.filters-panel__body .wcapf-field-hidden {
  display: none;
}

.woocommerce-pagination {
  width: 100%;
}
.woocommerce-pagination nav,
.woocommerce-pagination .listing-pagination {
  width: 100%;
  max-width: 100%;
}

.listing-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (min-width: 992px) {
  .listing-pagination.listing-pagination--split {
    justify-content: space-between;
  }
}

.listing-pagination__per-page {
  display: none;
  align-items: center;
  flex-shrink: 0;
  gap: 0.5rem;
}
@media (min-width: 992px) {
  .listing-pagination__per-page {
    display: flex;
  }
}

.listing-pagination__options,
.listing-pagination__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

@media (min-width: 992px) {
  .listing-pagination--split .listing-pagination__nav {
    margin-left: auto;
  }
}

.listing-pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.625rem;
  height: 2.625rem;
  padding: 0;
  border: 1px solid #DCDCDC;
  border-radius: 0.5rem;
  background: #ffffff;
  color: #1E1E1E;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  transition: all 0.3s ease;
}
.listing-pagination__item .icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}
.listing-pagination__item:hover {
  border-color: #A9A9A9;
  color: #1E1E1E;
}
.listing-pagination__item:focus, .listing-pagination__item:focus-visible {
  outline: none;
  box-shadow: 0 0 0 5px #F1F1F1;
}
.listing-pagination__item.is-active {
  border-color: transparent;
  color: #ffffff;
}
.listing-pagination__item.is-active:hover, .listing-pagination__item.is-active:focus, .listing-pagination__item.is-active:focus-visible {
  color: #ffffff;
}
.listing-pagination__item.is-disabled {
  color: #A9A9A9;
  pointer-events: none;
  cursor: default;
}

.listing-pagination__options .listing-pagination__item.is-active {
  background: #01184E;
}
.listing-pagination__options .listing-pagination__item.is-active:hover {
  background: #04399E;
  border-color: transparent;
}

.listing-pagination__nav .listing-pagination__item.is-active {
  background: #CC0066;
}
.listing-pagination__nav .listing-pagination__item.is-active:hover {
  background: #F1007A;
  border-color: transparent;
}

.listing-pagination__dots {
  color: #717171;
  font-size: 0.875rem;
  line-height: 1.4;
  padding-inline: 0.125rem;
}

.sales-slider-section {
  padding-top: 0rem;
}
@media (min-width: 992px) {
  .sales-slider-section {
    padding-top: 1.5rem;
  }
}
.sales-slider-section .sales-slider {
  margin-inline: -0.75rem;
}
@media (min-width: 992px) {
  .sales-slider-section .sales-slider {
    margin-inline: 0;
  }
}
.sales-slider-section .sales-slider .swiper-slide {
  height: 32.5rem;
  position: relative;
}
.sales-slider-section .sales-slider .swiper-slide .image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (min-width: 992px) {
  .sales-slider-section .sales-slider .swiper-slide .image {
    border-radius: 0.75rem;
  }
}
.sales-slider-section .sales-slider .swiper-slide .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sales-slider-section .sales-slider .swiper-slide .content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 1.5rem;
  flex-direction: column;
  position: absolute;
  color: #ffffff;
  inset: 0;
  padding: 1.5rem;
}
@media (min-width: 992px) {
  .sales-slider-section .sales-slider .swiper-slide .content {
    padding: 3rem;
    gap: 2rem;
  }
}
.sales-slider-section .sales-slider .swiper-slide .content .sales-slider__title {
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
}
@media (min-width: 992px) {
  .sales-slider-section .sales-slider .swiper-slide .content .sales-slider__title {
    font-size: 3rem;
    line-height: 1.2;
  }
}
.sales-slider-section .sales-slider .swiper-slide .content .sales-slider__description {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}
.sales-slider-section .sales-slider .swiper-slide .content .sales-slider__button {
  width: 100%;
}
@media (min-width: 992px) {
  .sales-slider-section .sales-slider .swiper-slide .content .sales-slider__button {
    width: auto;
  }
}
.sales-slider-section .sales-slider .swiper-pagination {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.875rem;
  position: static;
  padding: 0.75rem 1.5rem;
}
@media (min-width: 992px) {
  .sales-slider-section .sales-slider .swiper-pagination {
    padding: 1.5rem 0rem;
    gap: 1rem;
  }
}
.sales-slider-section .sales-slider .swiper-pagination .swiper-pagination-bullet {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-direction: column;
  flex: 1;
  height: auto;
  margin: 0;
  background: transparent;
  opacity: 1;
  border-radius: 0;
}
.sales-slider-section .sales-slider .swiper-pagination .sales-slider__pagination-bar {
  width: 100%;
  height: 0.25rem;
  border-radius: 0.3125rem;
  background-color: #DCDCDC;
  transition: all 0.3s ease;
}
.sales-slider-section .sales-slider .swiper-pagination .swiper-pagination-bullet-active .sales-slider__pagination-bar {
  background-color: #01184E;
}
.sales-slider-section .sales-slider .swiper-pagination .sales-slider__pagination-name {
  display: none;
  color: #1E1E1E;
  text-align: center;
}
@media (min-width: 992px) {
  .sales-slider-section .sales-slider .swiper-pagination .sales-slider__pagination-name {
    font-size: 0.875rem;
    line-height: 1.4;
    font-weight: 600;
    display: block;
  }
}

.categories-grid-section {
  margin-block: 4rem;
}
@media (min-width: 992px) {
  .categories-grid-section {
    margin-block: 5rem;
  }
}
.categories-grid-section .categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 1rem;
}
@media (min-width: 992px) {
  .categories-grid-section .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}

.discount-banner-section {
  margin-block: 4rem;
}
@media (min-width: 992px) {
  .discount-banner-section {
    margin-block: 5rem;
  }
}
.discount-banner-section .discount-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-direction: column;
  background: linear-gradient(246.32deg, #01184E 48.17%, #084BCA 134.08%);
  border-radius: 0.75rem;
  padding: 1.5rem;
  color: #ffffff;
}
@media (min-width: 992px) {
  .discount-banner-section .discount-banner {
    padding: 1.5rem 2.5rem;
    flex-direction: row;
  }
}
.discount-banner-section .discount-banner .discount-banner__discount-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-direction: column;
  border: 2px solid #D9E623;
  border-radius: 0.625rem;
  padding: 1rem;
  width: 100%;
}
@media (min-width: 992px) {
  .discount-banner-section .discount-banner .discount-banner__discount-info {
    width: auto;
    flex-direction: row;
  }
}
.discount-banner-section .discount-banner .discount-banner__discount-info .discount-banner__percent {
  color: #D9E623;
  line-height: 40px;
  font-variant-numeric: lining-nums;
  display: inline-block;
  vertical-align: middle;
}
.discount-banner-section .discount-banner .discount-banner__button {
  width: 100%;
}
@media (min-width: 992px) {
  .discount-banner-section .discount-banner .discount-banner__button {
    width: auto;
    min-width: 12.25rem;
  }
}

.product-list-section {
  margin-block: 4rem;
}
@media (min-width: 992px) {
  .product-list-section {
    margin-block: 5rem;
  }
}
.product-list-section .product-list-section__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.product-list-section .product-list-slider {
  overflow: visible;
}
@media (min-width: 992px) {
  .product-list-section .product-list-slider {
    overflow: hidden;
  }
}

.product-list-slider .swiper-slide {
  height: auto;
}
.product-list-slider .swiper-slide .product-card {
  height: 100%;
}

.info-slider-section {
  margin-block: 4rem;
}
@media (min-width: 992px) {
  .info-slider-section {
    margin-block: 5rem;
  }
}
.info-slider-section .info-slider__header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
@media (min-width: 992px) {
  .info-slider-section .info-slider__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.info-slider-section .info-slider__intro {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}
.info-slider-section .info-slider__nav {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.info-slider-section .info-slider__nav .swiper-button-prev,
.info-slider-section .info-slider__nav .swiper-button-next {
  position: static;
  margin: 0;
  width: 3rem;
  height: 3rem;
}
.info-slider-section .info-slider__nav .swiper-button-prev::after,
.info-slider-section .info-slider__nav .swiper-button-next::after {
  display: none;
}
.info-slider-section .info-slider__nav .swiper-button-prev.swiper-button-disabled,
.info-slider-section .info-slider__nav .swiper-button-next.swiper-button-disabled {
  background: #DCDCDC !important;
  color: #8D8D8D !important;
  opacity: 1;
  cursor: default;
  pointer-events: none;
}
.info-slider-section .info-slider {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}
.info-slider-section .info-slider .swiper-slide {
  width: 17.8125rem;
  height: 23.875rem;
  position: relative;
  overflow: hidden;
  padding: 2rem 1rem;
}
@media (min-width: 992px) {
  .info-slider-section .info-slider .swiper-slide {
    width: auto;
    padding: 1.5rem 1.875rem;
    border-radius: 0.875rem;
  }
}
.info-slider-section .info-slider .swiper-slide .info-slider__image {
  margin: -2rem -1rem;
  height: 23.875rem;
}
@media (min-width: 992px) {
  .info-slider-section .info-slider .swiper-slide .info-slider__image {
    margin: -1.5rem -1.875rem;
  }
}
.info-slider-section .info-slider .swiper-slide .info-slider__image picture,
.info-slider-section .info-slider .swiper-slide .info-slider__image img {
  display: block;
  width: 100%;
  height: 23.875rem;
  max-height: 23.875rem;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
@media (min-width: 992px) {
  .info-slider-section .info-slider .swiper-slide .info-slider__image picture,
  .info-slider-section .info-slider .swiper-slide .info-slider__image img {
    width: auto;
  }
}
.info-slider-section .info-slider .swiper-slide .info-slider__text {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 1rem;
  flex-direction: column;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 2rem 1rem;
  color: #ffffff;
  pointer-events: none;
}
@media (min-width: 992px) {
  .info-slider-section .info-slider .swiper-slide .info-slider__text {
    padding: 1.5rem 1.875rem;
  }
}
.info-slider-section .info-slider .swiper-slide .info-slider__text strong,
.info-slider-section .info-slider .swiper-slide .info-slider__text b {
  font-weight: 700;
}

.cta-callouts-section {
  margin-block: 4rem;
}
@media (min-width: 992px) {
  .cta-callouts-section {
    margin-block: 5rem;
  }
}
.cta-callouts-section .cta-callouts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 992px) {
  .cta-callouts-section .cta-callouts {
    flex-direction: row;
    gap: 2rem;
    align-items: stretch;
  }
}
.cta-callouts-section .cta-callouts__expert,
.cta-callouts-section .cta-callouts__samples {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  width: 100%;
}
@media (min-width: 992px) {
  .cta-callouts-section .cta-callouts__expert,
  .cta-callouts-section .cta-callouts__samples {
    width: auto;
    flex-basis: calc(50% - 16px);
  }
}
.cta-callouts-section .cta-callouts__expert {
  display: flex;
  align-items: flex-start;
  justify-content: stretch;
  gap: 1.5rem;
  flex-direction: column;
  padding: 2rem 1rem;
  background-image: linear-gradient(252deg, #01184E 48%, #084BCA 134%);
}
@media (min-width: 1380px) {
  .cta-callouts-section .cta-callouts__expert {
    min-width: 0;
    padding: 1.625rem 1.5rem;
    justify-content: center;
    background-image: linear-gradient(229deg, #01184E 48%, #084BCA 134%);
  }
}
.cta-callouts-section .cta-callouts__expert .cta-callouts__title,
.cta-callouts-section .cta-callouts__expert .cta-callouts__description {
  color: #ffffff;
}
@media (min-width: 1380px) {
  .cta-callouts-section .cta-callouts__expert .cta-callouts__title {
    font-size: 2rem;
    line-height: 1;
    font-weight: 600;
  }
}
.cta-callouts-section .cta-callouts__expert-text {
  display: flex;
  align-items: flex-start;
  justify-content: stretch;
  gap: 1.5rem;
  flex-direction: column;
  width: 100%;
}
.cta-callouts-section .cta-callouts__title {
  margin: 0;
}
.cta-callouts-section .cta-callouts__description {
  margin: 0;
  font-weight: 400;
}
.cta-callouts-section .cta-callouts__advisor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-direction: column;
  width: 100%;
  padding: 1.1875rem 1rem;
  border: 1px solid #084BCA;
  border-radius: 0.875rem;
}
@media (min-width: 1380px) {
  .cta-callouts-section .cta-callouts__advisor {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.1875rem 0.75rem;
  }
}
.cta-callouts-section .cta-callouts__advisor-main {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
  row-gap: 1rem;
  width: 100%;
  min-width: 0;
}
@media (min-width: 1380px) {
  .cta-callouts-section .cta-callouts__advisor-main {
    width: auto;
    flex: 1 1 auto;
    column-gap: 1.1875rem;
  }
}
.cta-callouts-section .cta-callouts__avatar {
  grid-column: 1;
  grid-row: 1;
  flex-shrink: 0;
  width: 5.3125rem;
  height: 5.3125rem;
  border-radius: 5.625rem;
  overflow: hidden;
  background: #000000;
}
@media (min-width: 1380px) {
  .cta-callouts-section .cta-callouts__avatar {
    grid-row: 1/3;
    align-self: start;
  }
}
.cta-callouts-section .cta-callouts__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-callouts-section .cta-callouts__advisor-identity {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
  align-self: center;
}
@media (min-width: 1380px) {
  .cta-callouts-section .cta-callouts__advisor-identity {
    align-self: start;
  }
}
.cta-callouts-section .cta-callouts__advisor-label {
  margin: 0;
  color: #AAB7FE;
  font-weight: 500;
}
.cta-callouts-section .cta-callouts__advisor-name {
  margin: 0;
  color: #ffffff;
}
.cta-callouts-section .cta-callouts__contacts {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.125rem;
  flex-direction: column;
  grid-column: 1/-1;
  grid-row: 2;
  width: 100%;
}
@media (min-width: 1380px) {
  .cta-callouts-section .cta-callouts__contacts {
    grid-column: 2;
  }
}
.cta-callouts-section .cta-callouts__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  flex-direction: row;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}
.cta-callouts-section .cta-callouts__contact .icon {
  width: 1rem;
  flex-shrink: 0;
}
.cta-callouts-section .cta-callouts__contact:hover {
  text-decoration: underline;
}
.cta-callouts-section .cta-callouts__hours {
  margin: 0;
  color: #AAB7FE;
  font-weight: 600;
}
.cta-callouts-section .cta-callouts__expert-button {
  width: 100%;
}
@media (min-width: 1380px) {
  .cta-callouts-section .cta-callouts__expert-button {
    width: auto;
    flex-shrink: 0;
    padding: 18px 15px;
  }
}
.cta-callouts-section .cta-callouts__samples {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1.5rem;
  flex-direction: column;
  padding: 2rem 1rem;
  background-color: #F4F5FF;
}
@media (min-width: 992px) {
  .cta-callouts-section .cta-callouts__samples {
    flex-direction: row;
    align-items: flex-end;
    gap: 0.625rem;
    padding: 2rem;
  }
}
.cta-callouts-section .cta-callouts__samples-visual {
  position: relative;
  width: 100%;
  height: 13.9375rem;
  flex-shrink: 0;
  margin-bottom: -0.9375rem;
}
@media (min-width: 992px) {
  .cta-callouts-section .cta-callouts__samples-visual {
    position: absolute;
    right: 0;
    top: 0;
    pointer-events: none;
  }
}
.cta-callouts-section .cta-callouts__samples-image {
  position: absolute;
  top: -1.875rem;
  left: calc(50% - 10rem);
  transform-origin: center center;
}
@media (min-width: 992px) {
  .cta-callouts-section .cta-callouts__samples-image {
    left: 230px;
    top: 18px;
  }
}
.cta-callouts-section .cta-callouts__samples-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-callouts-section .cta-callouts__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  left: calc(50% + 2.1875rem);
  top: 4.375rem;
  width: 4.75rem;
  height: 4.75rem;
  padding: 1.0625rem 0.5rem;
  border-radius: 5.625rem;
  background-color: #CC0066;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 0.6875rem 0.6875rem rgba(255, 76, 143, 0.25);
}
@media (min-width: 992px) {
  .cta-callouts-section .cta-callouts__badge {
    top: 6.875rem;
    left: 26.875rem;
    width: 5.75rem;
    height: 5.75rem;
    padding: 1.3125rem 0.625rem;
    box-shadow: 0 0.8125rem 0.875rem rgba(255, 76, 143, 0.25);
  }
}
.cta-callouts-section .cta-callouts__badge .cta-callouts__badge-label {
  font-size: 0.6875rem;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 1.3%;
}
@media (min-width: 992px) {
  .cta-callouts-section .cta-callouts__badge .cta-callouts__badge-label {
    font-size: 0.8125rem;
    line-height: 1.4;
    font-weight: 500;
  }
}
.cta-callouts-section .cta-callouts__badge .cta-callouts__badge-price {
  font-size: 1.125rem;
  line-height: 1.3;
  font-weight: 600;
}
@media (min-width: 992px) {
  .cta-callouts-section .cta-callouts__badge .cta-callouts__badge-price {
    font-size: 1.375rem;
    line-height: 1.3;
    font-weight: 600;
  }
}
.cta-callouts-section .cta-callouts__samples-content {
  display: flex;
  align-items: flex-start;
  justify-content: stretch;
  gap: 1.5rem;
  flex-direction: column;
  position: relative;
  z-index: 1;
  width: 100%;
}
.cta-callouts-section .cta-callouts__samples-content .cta-callouts__title,
.cta-callouts-section .cta-callouts__samples-content .cta-callouts__description {
  color: #1E1E1E;
}
.cta-callouts-section .cta-callouts__samples-button {
  align-self: flex-start;
  color: #1E1E1E;
}
@media (min-width: 992px) {
  .cta-callouts-section.cta-callouts-section--banner .cta-callouts__expert {
    width: 100%;
    flex-basis: auto;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-width: 0;
    padding: 1.5rem;
    background-image: linear-gradient(199deg, #01184E 48%, #084BCA 134%);
  }
}
@media (min-width: 1380px) {
  .cta-callouts-section.cta-callouts-section--banner .cta-callouts__expert {
    gap: 0;
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cta-callouts-section.cta-callouts-section--banner .cta-callouts__expert-text {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    padding-right: 1rem;
    gap: 1rem;
    justify-content: center;
  }
}
@media (min-width: 1380px) {
  .cta-callouts-section.cta-callouts-section--banner .cta-callouts__expert-text {
    flex: 0 0 39.75rem;
    width: 39.75rem;
    max-width: 39.75rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 992px) {
  .cta-callouts-section.cta-callouts-section--banner .cta-callouts__advisor {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
  }
}
@media (min-width: 1380px) {
  .cta-callouts-section.cta-callouts-section--banner .cta-callouts__advisor {
    padding: 1.1875rem 1rem;
  }
}
@media (min-width: 1380px) {
  .cta-callouts-section.cta-callouts-section--banner .cta-callouts__advisor-identity {
    gap: 0.5rem;
  }
}
@media (min-width: 1380px) {
  .cta-callouts-section.cta-callouts-section--banner .cta-callouts__expert-button {
    width: 16rem;
    padding: 0.75rem 1.5rem;
  }
}

.cta-banner-section {
  margin-block: 4rem;
}
@media (min-width: 992px) {
  .cta-banner-section {
    margin-block: 5rem;
  }
}

.cta-banner {
  display: flex;
  align-items: flex-start;
  justify-content: stretch;
  gap: 1.5rem;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: 2rem 2rem 0;
  background-color: #E6E9FF;
  border-radius: 0.75rem;
}
@media (min-width: 992px) {
  .cta-banner {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.cta-banner__content {
  display: flex;
  align-items: flex-start;
  justify-content: stretch;
  gap: 1.5rem;
  flex-direction: column;
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
}
@media (min-width: 992px) {
  .cta-banner__content {
    max-width: 31.3125rem;
    flex: 1 1 31.3125rem;
    align-self: center;
    margin-bottom: 2rem;
  }
}

.cta-banner__title {
  margin: 0;
  color: #1E1E1E;
}

.cta-banner__description {
  margin: 0;
  color: #1E1E1E;
  font-weight: 400;
}
.cta-banner__description p {
  margin: 0;
}

.cta-banner__button {
  width: 100%;
}
@media (min-width: 992px) {
  .cta-banner__button {
    width: auto;
    align-self: flex-start;
  }
}

.cta-banner__visual {
  position: relative;
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .cta-banner__visual {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 36.9375rem;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    align-self: stretch;
  }
}

.cta-banner__image {
  width: 17.625rem;
  max-width: 100%;
  margin-top: 0;
  border-radius: 0.25rem 0.25rem 0 0;
  overflow: hidden;
  margin-inline: auto;
}
@media (min-width: 992px) {
  .cta-banner__image {
    width: min(100%, 27.3125rem);
    margin-top: -1.125rem;
    border-radius: 0.25rem;
    margin-inline: unset;
  }
}
.cta-banner__image img {
  display: block;
  width: 100%;
  height: auto;
}

.inspirations-slider-section {
  margin-block: 4rem;
  overflow-x: clip;
}
@media (min-width: 992px) {
  .inspirations-slider-section {
    margin-block: 5rem;
    overflow-x: visible;
  }
}
.inspirations-slider-section .inspirations-slider__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.inspirations-slider-section .inspirations-slider__header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
@media (min-width: 992px) {
  .inspirations-slider-section .inspirations-slider__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.inspirations-slider-section .inspirations-slider__intro {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}
.inspirations-slider-section .inspirations-slider__name {
  margin: 0;
}
.inspirations-slider-section .inspirations-slider__title {
  margin: 0;
}
.inspirations-slider-section .inspirations-slider__description {
  margin: 0;
}
.inspirations-slider-section .inspirations-slider__description p {
  margin: 0;
}
.inspirations-slider-section .inspirations-slider__description p + p {
  margin-top: 0.5rem;
}
.inspirations-slider-section .inspirations-slider__nav {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.inspirations-slider-section .inspirations-slider__nav .swiper-button-prev,
.inspirations-slider-section .inspirations-slider__nav .swiper-button-next {
  position: static;
  margin: 0;
  width: 3rem;
  height: 3rem;
}
.inspirations-slider-section .inspirations-slider__nav .swiper-button-prev::after,
.inspirations-slider-section .inspirations-slider__nav .swiper-button-next::after {
  display: none;
}
.inspirations-slider-section .inspirations-slider__nav .swiper-button-prev.swiper-button-disabled,
.inspirations-slider-section .inspirations-slider__nav .swiper-button-next.swiper-button-disabled {
  background: #DCDCDC !important;
  color: #8D8D8D !important;
  opacity: 1;
  cursor: default;
  pointer-events: none;
}
.inspirations-slider-section .inspirations-slider {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .inspirations-slider-section .inspirations-slider {
    width: calc(100% + 2.5rem * 2);
    margin-inline: calc(2.5rem * -1);
    padding-inline: 2.5rem;
    padding-bottom: 4rem;
  }
}
.inspirations-slider-section .inspirations-slider .swiper-slide {
  width: 100%;
}
.inspirations-slider-section .inspirations-slider .inspirations-slider__slide {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 992px) {
  .inspirations-slider-section .inspirations-slider .inspirations-slider__slide {
    gap: 0;
  }
}
.inspirations-slider-section .inspirations-slider .inspirations-slider__image picture,
.inspirations-slider-section .inspirations-slider .inspirations-slider__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
  border-radius: 1rem;
}

.inspirations-slider__hotspot {
  width: 100%;
}
@media (min-width: 992px) {
  .inspirations-slider__hotspot {
    position: absolute;
    left: var(--pin-left, 50%);
    top: var(--pin-top, 50%);
    z-index: 1;
    width: auto;
  }
  .inspirations-slider__hotspot .inspiration-product-teaser {
    width: auto;
  }
  .inspirations-slider__hotspot .inspiration-product-teaser__pin {
    display: block;
  }
  .inspirations-slider__hotspot .inspiration-product-teaser__card {
    flex: 0 0 18.3125rem;
    width: 18.3125rem;
  }
  .inspirations-slider__hotspot[data-side=left] {
    transform: translateX(calc(-100% + 2.25rem));
  }
  .inspirations-slider__hotspot[data-side=left] .inspiration-product-teaser {
    flex-direction: row-reverse;
  }
}

.inspiration-product-teaser {
  display: flex;
  gap: 0.5625rem;
  align-items: flex-start;
  width: 100%;
  min-width: 0;
  color: #1E1E1E;
  text-decoration: none;
}
.inspiration-product-teaser:hover, .inspiration-product-teaser:focus-visible {
  color: #1E1E1E;
}
.inspiration-product-teaser:focus-visible {
  outline: 2px solid #1E1E1E;
  outline-offset: 2px;
}

.inspiration-product-teaser__pin {
  width: 2.25rem;
  height: 2.25rem;
  display: none;
  flex-shrink: 0;
  overflow: hidden;
}
.inspiration-product-teaser__pin img {
  display: block;
  width: 36px;
  height: 36px;
}

.inspiration-product-teaser__card {
  display: flex;
  flex: 1 1 auto;
  gap: 0.5rem;
  align-items: flex-start;
  width: 100%;
  min-width: 0;
  padding: 1rem;
  border-radius: 1rem;
  background-color: #ffffff;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.4);
}

.inspiration-product-teaser__info {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  min-width: 0;
}

.inspiration-product-teaser__title,
.inspiration-product-teaser__meta,
.inspiration-product-teaser__from,
.inspiration-product-teaser__amount {
  margin: 0;
}

.inspiration-product-teaser__title {
  width: 100%;
}

.inspiration-product-teaser__meta {
  font-weight: 500;
}

.inspiration-product-teaser__price {
  display: flex;
  gap: 0.25rem;
  align-items: flex-end;
}

.inspiration-product-teaser__from {
  font-weight: 500;
}

.inspiration-product-teaser__amount {
  font-weight: 700;
}
.inspiration-product-teaser__amount .woocommerce-Price-amount,
.inspiration-product-teaser__amount .woocommerce-Price-currencySymbol {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.inspiration-product-teaser__chevron {
  display: flex;
  flex-shrink: 0;
  align-items: flex-start;
  justify-content: center;
  width: 2.75rem;
  padding-top: 0.5rem;
  color: #1E1E1E;
}
.inspiration-product-teaser__chevron .icon {
  display: block;
  width: 24px;
  height: 24px;
}

.opinions-slider-section {
  margin-block: 4rem;
}
@media (min-width: 992px) {
  .opinions-slider-section {
    margin-block: 5rem;
  }
}
.opinions-slider-section .opinions-slider__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.opinions-slider-section .opinions-slider__header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
@media (min-width: 992px) {
  .opinions-slider-section .opinions-slider__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.opinions-slider-section .opinions-slider__intro {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}
.opinions-slider-section .opinions-slider__name {
  margin: 0;
}
.opinions-slider-section .opinions-slider__title {
  margin: 0;
}
.opinions-slider-section .opinions-slider__description {
  margin: 0;
}
.opinions-slider-section .opinions-slider__description p {
  margin: 0;
}
.opinions-slider-section .opinions-slider__description p + p {
  margin-top: 0.5rem;
}
.opinions-slider-section .opinions-slider__nav {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.opinions-slider-section .opinions-slider__nav .swiper-button-prev,
.opinions-slider-section .opinions-slider__nav .swiper-button-next {
  position: static;
  margin: 0;
  width: 3rem;
  height: 3rem;
}
.opinions-slider-section .opinions-slider__nav .swiper-button-prev::after,
.opinions-slider-section .opinions-slider__nav .swiper-button-next::after {
  display: none;
}
.opinions-slider-section .opinions-slider__nav .swiper-button-prev.swiper-button-disabled,
.opinions-slider-section .opinions-slider__nav .swiper-button-next.swiper-button-disabled {
  background: #DCDCDC !important;
  color: #8D8D8D !important;
  opacity: 1;
  cursor: default;
  pointer-events: none;
}
.opinions-slider-section .opinions-slider {
  width: 100%;
  min-width: 0;
  overflow: visible;
}
.opinions-slider-section .opinions-slider .swiper-slide {
  height: auto;
}
.opinions-slider-section .opinions-slider__card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
  padding: 1.5rem;
  background-color: #F8F8F8;
  border-radius: 1rem;
}
.opinions-slider-section .opinions-slider__rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.opinions-slider-section .opinions-slider__stars {
  display: flex;
  align-items: center;
  gap: 0.1875rem;
}
.opinions-slider-section .opinions-slider__star {
  width: 0.875rem;
  height: 0.8125rem;
  color: #C3C3C3;
  flex-shrink: 0;
}
.opinions-slider-section .opinions-slider__star.opinions-slider__star--filled {
  color: #CC0066;
}
.opinions-slider-section .opinions-slider__score {
  color: #01184E;
  font-weight: 600;
}
.opinions-slider-section .opinions-slider__content {
  margin: 0;
  color: #555555;
}
.opinions-slider-section .opinions-slider__content p {
  margin: 0;
}
.opinions-slider-section .opinions-slider__content p + p {
  margin-top: 0.5rem;
}
.opinions-slider-section .opinions-slider__author {
  margin: 0;
  color: #1E1E1E;
  font-weight: 600;
}

.knowledge-zone-section {
  margin-block: 4rem;
}
@media (min-width: 992px) {
  .knowledge-zone-section {
    margin-block: 5rem;
  }
}
.knowledge-zone-section .knowledge-zone__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.knowledge-zone-section .knowledge-zone__header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
@media (min-width: 992px) {
  .knowledge-zone-section .knowledge-zone__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
  }
}
.knowledge-zone-section .knowledge-zone__intro {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}
.knowledge-zone-section .knowledge-zone__button {
  flex-shrink: 0;
  color: #01184E;
}
.knowledge-zone-section .knowledge-zone__name {
  margin: 0;
}
.knowledge-zone-section .knowledge-zone__title {
  margin: 0;
}
.knowledge-zone-section .knowledge-zone__description {
  margin: 0;
}
.knowledge-zone-section .knowledge-zone__description p {
  margin: 0;
}
.knowledge-zone-section .knowledge-zone__description p + p {
  margin-top: 0.5rem;
}
.knowledge-zone-section .knowledge-zone__posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .knowledge-zone-section .knowledge-zone__posts {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .knowledge-zone-section .knowledge-zone__posts {
    grid-template-columns: repeat(3, 1fr);
  }
}

.knowledge-zone-page {
  padding-block: 1rem 4rem;
}
@media (min-width: 992px) {
  .knowledge-zone-page {
    padding-block: 1.5rem 5rem;
  }
}
.knowledge-zone-page .knowledge-zone-page__title {
  margin: 0 0 2rem;
  color: #1E1E1E;
}
@media (min-width: 992px) {
  .knowledge-zone-page .knowledge-zone-page__title {
    margin-bottom: 2.25rem;
  }
}
.knowledge-zone-page .knowledge-zone-page__featured {
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .knowledge-zone-page .knowledge-zone-page__featured {
    margin-bottom: 4rem;
  }
}
.knowledge-zone-page .knowledge-zone-page__topics {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .knowledge-zone-page .knowledge-zone-page__topics {
    margin-bottom: 4rem;
  }
}
.knowledge-zone-page .knowledge-zone-page__topics-title {
  margin: 0;
  color: #1E1E1E;
}
.knowledge-zone-page .knowledge-zone-page__filters {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: fit-content;
  max-width: 100%;
  gap: 1.5rem;
  padding: 0.375rem 0.5rem;
  overflow-x: auto;
  background-color: #F8F8F8;
  border-radius: 5.625rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.knowledge-zone-page .knowledge-zone-page__filters::-webkit-scrollbar {
  display: none;
}
@media (min-width: 992px) {
  .knowledge-zone-page .knowledge-zone-page__filters {
    gap: 2.75rem;
    padding: 0.375rem 1rem 0.375rem 0.5rem;
  }
}
.knowledge-zone-page .knowledge-zone-page__filter {
  flex-shrink: 0;
  height: auto;
  min-height: 2.375rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  white-space: nowrap;
  box-shadow: none;
}
.knowledge-zone-page .knowledge-zone-page__filter.btn-secondary {
  padding: 0.5625rem 1.4375rem;
  background-color: #01184E;
  color: #ffffff;
}
.knowledge-zone-page .knowledge-zone-page__filter.btn-secondary:hover {
  background-color: #022874;
  color: #ffffff;
}
.knowledge-zone-page .knowledge-zone-page__filter.btn-secondary:focus, .knowledge-zone-page .knowledge-zone-page__filter.btn-secondary:focus-visible {
  outline: 2px solid #ffffff;
  box-shadow: 0 0 0 5px #04399E;
}
.knowledge-zone-page .knowledge-zone-page__filter.btn-text {
  padding: 0.5625rem 1rem;
  color: #393939;
}
.knowledge-zone-page .knowledge-zone-page__filter.btn-text:hover {
  color: #01184E;
}
.knowledge-zone-page .knowledge-zone-page__filter.btn-text:focus, .knowledge-zone-page .knowledge-zone-page__filter.btn-text:focus-visible {
  box-shadow: 0 0 0 5px #F1F1F1;
  outline: none;
}
.knowledge-zone-page .knowledge-zone-page__pagination {
  margin-top: 2rem;
}
@media (min-width: 992px) {
  .knowledge-zone-page .knowledge-zone-page__pagination {
    margin-top: 3rem;
  }
}

.post-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}
.post-card .post-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0.75rem;
  aspect-ratio: 16/9;
  background-color: #F1F1F1;
  flex-shrink: 0;
}
.post-card .post-card__image picture,
.post-card .post-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-card .post-card__ribbon {
  position: absolute;
  top: 1.375rem;
  left: -2.5rem;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10.5rem;
  padding: 0.5rem 1rem;
  background-color: #CC0066;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
  transform: rotate(-38.65deg);
  pointer-events: none;
}
.post-card .post-card__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex-grow: 1;
  min-width: 0;
}
.post-card .post-card__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.post-card .post-card__title {
  margin: 0;
  color: #1E1E1E;
}
.post-card .post-card__title a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}
.post-card .post-card__title a:hover {
  color: #04399E;
}
.post-card .post-card__excerpt {
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.post-card .post-card__more {
  align-self: flex-start;
  margin-top: auto;
  padding-inline: 0 !important;
  color: #01184E;
}
.post-card.post-card--featured .post-card__image {
  order: 2;
}
.post-card.post-card--featured .post-card__content {
  display: contents;
}
.post-card.post-card--featured .post-card__header {
  order: 1;
}
.post-card.post-card--featured .post-card__excerpt {
  order: 3;
  -webkit-line-clamp: 3;
  color: #1E1E1E;
  font-weight: 500;
}
.post-card.post-card--featured .post-card__more {
  order: 4;
  margin-top: 0;
}
@media (min-width: 992px) {
  .post-card.post-card--featured {
    flex-direction: row;
    align-items: center;
    gap: 0;
    justify-content: space-between;
  }
  .post-card.post-card--featured .post-card__image {
    order: 0;
    width: 57%;
    flex: 1 1 57%;
    max-width: 47.25rem;
    aspect-ratio: 756/419;
  }
  .post-card.post-card--featured .post-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    width: 40%;
    flex: 1 1 40%;
    max-width: 33.5rem;
    margin-left: 1.5rem;
  }
  .post-card.post-card--featured .post-card__excerpt {
    color: #717171;
    font-weight: 400;
  }
}

.post-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.post-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 5.625rem;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.post-card__tag.post-card__tag--primary {
  background-color: #04399E;
  color: #ffffff;
}
.post-card__tag.post-card__tag--primary:hover {
  background-color: #022874;
  color: #ffffff;
}
.post-card__tag.post-card__tag--primary:focus-visible {
  outline: 2px solid #04399E;
  outline-offset: 2px;
}
.post-card__tag.post-card__tag--secondary {
  background-color: transparent;
  color: #000000;
  border: 1px solid #04399E;
}
.post-card__tag.post-card__tag--secondary:hover {
  background-color: #F4F5FF;
  color: #000000;
}
.post-card__tag.post-card__tag--secondary:focus-visible {
  outline: 2px solid #04399E;
  outline-offset: 2px;
}

.post-card__tag-icon {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
}

.article-hero {
  padding-block: 1rem 2rem;
  background-color: #F4F5FF;
}
@media (min-width: 992px) {
  .article-hero {
    padding-block: 1.5rem 3rem;
  }
}

.article-hero .woocommerce-breadcrumb {
  margin-block: 0 1.5rem;
}
@media (min-width: 992px) {
  .article-hero .woocommerce-breadcrumb {
    margin-bottom: 2rem;
  }
}
.article-hero .woocommerce-breadcrumb a,
.article-hero .woocommerce-breadcrumb .current {
  color: #555555;
}
.article-hero .woocommerce-breadcrumb .delimiter {
  color: #C3C3C3;
}

.article-hero__grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 992px) {
  .article-hero__grid {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
}

.article-hero__stack {
  display: contents;
}
@media (min-width: 992px) {
  .article-hero__stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 1 1 50%;
    min-width: 0;
    order: 2;
  }
}

.article-hero__media {
  order: 2;
  width: 100%;
}
@media (min-width: 992px) {
  .article-hero__media {
    order: 1;
    flex: 1 1 50%;
    max-width: 40.5625rem;
  }
}

.article-hero__image {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 0.75rem;
  aspect-ratio: 342/190;
  background-color: #F1F1F1;
}
@media (min-width: 992px) {
  .article-hero__image {
    aspect-ratio: 649/360;
  }
}
.article-hero__image picture,
.article-hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero__info {
  order: 3;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}
@media (min-width: 992px) {
  .article-hero__info {
    order: unset;
    gap: 2rem;
  }
}

.article-hero__meta-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.article-hero__title {
  order: 1;
  margin: 0 0 1rem;
  color: #000000;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}
@media (min-width: 992px) {
  .article-hero__title {
    order: unset;
    margin: 0;
    font-size: 3rem;
    line-height: 1.2;
  }
}

.article-hero__meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 992px) {
  .article-hero__meta {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
  }
}

.article-hero__date {
  margin: 0;
  color: #555555;
  font-weight: 600;
}

.article-hero__meta-sep {
  display: none;
  color: #8D8D8D;
}
@media (min-width: 992px) {
  .article-hero__meta-sep {
    display: inline;
  }
}

.article-body {
  padding-block: 2rem 3rem;
}
@media (min-width: 992px) {
  .article-body {
    padding-block: 3rem 4rem;
  }
}

.article-body__layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 992px) {
  .article-body__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.article-sidebar {
  display: none;
}
@media (min-width: 992px) {
  .article-sidebar {
    display: block;
    flex: 0 0 19.5rem;
    width: 19.5rem;
  }
}

.article-sidebar__inner {
  position: sticky;
  top: calc(var(--header-height, 80px) + 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1.5rem 1rem;
}

.article-sidebar__share {
  margin-top: 0;
}

.article-main {
  min-width: 0;
  flex: 1 1 auto;
}

html:has(.article-toc) {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html:has(.article-toc) {
    scroll-behavior: auto;
  }
}

.article-toc__title {
  margin: 0 0 1.5rem;
  font-weight: 600;
  color: #000000;
}

.article-toc__list {
  margin: 0;
  padding-left: 1.25rem;
  list-style: decimal;
}

.article-toc__item + .article-toc__item {
  margin-top: 1.5rem;
}

.article-toc__link {
  color: #000000;
  font-weight: 500;
  letter-spacing: 0.182px;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.article-toc__link:hover {
  color: #04399E;
}
.article-toc__link:focus-visible {
  outline: 2px solid #04399E;
  outline-offset: 2px;
  border-radius: 0.125rem;
}

.article-share {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.article-share__label {
  margin: 0;
  font-weight: 600;
  color: #000000;
}

.article-share__list {
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-share__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  overflow: clip;
}
.article-share__button .icon,
.article-share__button svg {
  display: block;
  width: 100%;
  height: 100%;
}
.article-share__button:hover {
  color: #04399E;
}
.article-share__button:focus-visible {
  outline: 2px solid #04399E;
  outline-offset: 2px;
  border-radius: 0.25rem;
}
.article-share__button[data-copied] {
  color: #04399E;
}

.article-content {
  color: #000000;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
.article-content > *:first-child {
  margin-top: 0;
}
.article-content > p:first-of-type {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (min-width: 992px) {
  .article-content > p:first-of-type {
    font-size: 1.25rem;
  }
}
.article-content p {
  margin: 0 0 1.5rem;
}
.article-content a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.article-content a:hover {
  color: #04399E;
}
.article-content h2,
.article-content .article-heading {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 3rem 0 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  color: #000000;
  scroll-margin-top: calc(var(--header-height, 80px) + 1rem);
}
@media (min-width: 992px) {
  .article-content h2,
  .article-content .article-heading {
    align-items: center;
    margin-top: 4rem;
  }
}
.article-content h3 {
  margin: 2rem 0 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}
.article-content ul,
.article-content ol {
  margin: 0 0 1.5rem;
  padding-left: 1.5rem;
}
.article-content ul {
  list-style: disc;
}
.article-content ol {
  list-style: decimal;
}
.article-content li + li {
  margin-top: 0.5rem;
}
.article-content img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
}
.article-content figure,
.article-content .wp-block-image,
.article-content .wp-caption {
  margin: 2rem 0;
}
.article-content figcaption,
.article-content .wp-caption-text {
  margin-top: 1rem;
  color: #555555;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
.article-content blockquote,
.article-content .wp-block-quote {
  margin: 2rem 0;
  padding: 2rem;
  background-color: #F8F8F8;
  border: 0;
  border-radius: 0.75rem;
}
.article-content blockquote p,
.article-content blockquote ul,
.article-content blockquote ol,
.article-content .wp-block-quote p,
.article-content .wp-block-quote ul,
.article-content .wp-block-quote ol {
  margin-bottom: 1.5rem;
}
.article-content blockquote p:last-child,
.article-content blockquote ul:last-child,
.article-content blockquote ol:last-child,
.article-content .wp-block-quote p:last-child,
.article-content .wp-block-quote ul:last-child,
.article-content .wp-block-quote ol:last-child {
  margin-bottom: 0;
}
.article-content blockquote > p:first-child,
.article-content .wp-block-quote > p:first-child {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}
.article-content details,
.article-content .wp-block-details,
.article-content .faq-section__item {
  width: 100%;
  max-width: none;
  margin: 0 0 1rem;
  border: 1px solid #DCDCDC;
  border-radius: 0.625rem;
  background-color: #ffffff;
}
.article-content summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.375rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  list-style: none;
  cursor: pointer;
}
.article-content summary::-webkit-details-marker {
  display: none;
}
.article-content summary::marker {
  content: "";
}
.article-content summary:not(:has(.faq-section__icon))::after {
  content: "";
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  background-color: currentColor;
  mask: url("images/icons/chevron-down.svg") center/contain no-repeat;
  -webkit-mask: url("images/icons/chevron-down.svg") center/contain no-repeat;
  transition: transform 0.2s ease;
}
.article-content .faq-section__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.375rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  list-style: none;
  cursor: pointer;
}
.article-content details[open] > summary:not(:has(.faq-section__icon))::after,
.article-content .wp-block-details[open] > summary:not(:has(.faq-section__icon))::after {
  transform: rotate(180deg);
}
.article-content details > *:not(summary),
.article-content .wp-block-details > *:not(summary),
.article-content .faq-section__answer {
  padding: 0 1.375rem 1.375rem;
}
.article-content .cta-banner-section {
  margin-block: 0;
  padding: 0;
}
.article-content .cta-banner-section .container {
  padding: 0;
  max-width: none;
  width: 100%;
}
.article-content .cta-banner {
  background-color: #E6E9FF;
}

.article-heading__number {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 1.9375rem;
  height: 1.9375rem;
  padding: 0;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #1E1E1E;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.182px;
  line-height: 1;
}

.article-heading__text {
  min-width: 0;
}

.article-related {
  padding-block: 0 3rem;
}
@media (min-width: 992px) {
  .article-related {
    padding-bottom: 4rem;
  }
}

.article-related__title {
  margin: 0 0 2rem;
  color: #1E1E1E;
}

.article-related__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .article-related__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .article-related__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.article-single--video .article-hero {
  padding-bottom: 2rem;
}
@media (min-width: 992px) {
  .article-single--video .article-hero {
    padding-bottom: 2rem;
  }
}
.article-single--video .article-hero__title {
  order: unset;
  margin: 0;
  width: 100%;
}
.article-single--video .article-hero__meta {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.article-single--video .article-body {
  padding-top: 2rem;
}

.article-single--video + .article-related {
  padding-block: 3rem 3rem;
}
@media (min-width: 992px) {
  .article-single--video + .article-related {
    padding-block: 3rem 4rem;
  }
}

.article-video-layout {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  width: 100%;
}
@media (min-width: 992px) {
  .article-video-layout {
    max-width: 68.5rem;
    margin-inline: auto;
  }
}

.article-hero__intro {
  margin: 0;
  width: 100%;
  color: #000000;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (min-width: 992px) {
  .article-hero__intro {
    font-size: 1.25rem;
  }
}

.article-video-band {
  position: relative;
  padding-bottom: 5rem;
}
.article-video-band::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 50%;
  background-color: #F4F5FF;
  pointer-events: none;
}
.article-video-band .container {
  position: relative;
  z-index: 1;
}

.article-video {
  width: 100%;
  overflow: hidden;
  border-radius: 0.75rem;
  background-color: #1E1E1E;
  aspect-ratio: 16/9;
  transform: translateZ(0);
}
.article-video lite-youtube {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  max-width: none;
  contain: none;
  aspect-ratio: 16/9;
  border-radius: inherit;
  background-color: #1E1E1E;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
}
.article-video lite-youtube::after {
  display: none;
}
.article-video lite-youtube > iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  border: 0;
}
.article-video lite-youtube > .lty-playbtn {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 4.25rem;
  height: 3rem;
  padding: 0;
  border: 0;
  transform: translate3d(-50%, -50%, 0);
  background-color: transparent;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 68 48"><path fill="%23f00" fill-opacity="0.8" d="M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z"></path><path d="M 45,24 27,14 27,34" fill="%23fff"></path></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: grayscale(100%);
  cursor: pointer;
  appearance: none;
}
.article-video lite-youtube:hover > .lty-playbtn,
.article-video lite-youtube .lty-playbtn:focus-visible {
  filter: none;
}
.article-video lite-youtube.lyt-activated > .lty-playbtn, .article-video lite-youtube.lyt-activated::before {
  opacity: 0;
  pointer-events: none;
}
.article-video iframe,
.article-video .wp-block-embed,
.article-video .wp-block-embed__wrapper {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  aspect-ratio: 16/9;
}
.article-video .wp-block-embed {
  height: 100%;
}
.article-video .lyt-visually-hidden {
  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;
}
.article-video .lyt-visually-hidden:not(caption) {
  position: absolute !important;
}
.article-video .lyt-visually-hidden * {
  overflow: hidden !important;
}

.about-section .about-section__content {
  background: #F4F5FF;
  border-radius: 0.75rem;
  padding: 1rem;
  margin-inline: -0.5rem;
}
@media (min-width: 992px) {
  .about-section .about-section__content {
    margin-inline: 0;
    padding: 1.25rem;
  }
}
@media (min-width: 1380px) {
  .about-section .about-section__content {
    padding: 2rem;
  }
}
.about-section .about-section__content .about-section__content-image {
  border-radius: 0.75rem;
  overflow: hidden;
}
.about-section .about-section__content .about-section__content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 1380px) {
  .about-section .about-section__content .about-section__content-image img {
    width: auto;
    height: auto;
  }
}
.about-section .about-section__content .about-section__info-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 992px) {
  .about-section .about-section__content .about-section__info-boxes {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    gap: 1.25rem;
  }
}
@media (min-width: 1380px) {
  .about-section .about-section__content .about-section__info-boxes {
    gap: 1.5rem;
  }
}
.about-section .about-section__content .about-section__info-boxes .about-section__info-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-direction: column;
  border-radius: 0.75rem;
  background: #ffffff;
  padding: 0.5rem 0.75rem;
}
@media (min-width: 992px) {
  .about-section .about-section__content .about-section__info-boxes .about-section__info-box {
    flex-direction: row;
    padding: 1rem 2rem;
  }
}
.about-section .about-section__content .about-section__info-boxes .about-section__info-box .about-section__info-box-icon {
  width: 2.5rem;
  display: block;
  margin: 0.75rem;
}

.faq-section {
  margin-block: 4rem;
}
@media (min-width: 992px) {
  .faq-section {
    margin-block: 5rem;
  }
}

.faq-section__list {
  display: flex;
  flex-direction: column;
}

.faq-section__item {
  border: 1px solid #DCDCDC;
  border-radius: 0.625rem;
  width: 100%;
  max-width: 54.5rem;
  margin-inline: auto;
}

.faq-section__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.75rem 1.375rem;
  list-style: none;
  cursor: pointer;
  font-weight: 600;
}
.faq-section__question::-webkit-details-marker {
  display: none;
}
.faq-section__question::marker {
  content: "";
}

.faq-section__icon {
  display: inline-flex;
  flex-shrink: 0;
  color: #01184E;
  transition: transform 0.2s ease;
}

.faq-section__item[open] .faq-section__icon {
  transform: rotate(180deg);
}

.faq-section__answer {
  padding: 0 1.375rem 1.375rem;
}

.social-networks-section .social-networks-section__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-us-intro__inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-direction: column;
}
@media (min-width: 992px) {
  .about-us-intro__inner {
    gap: 1.5rem;
  }
}

.about-us-intro__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-direction: column;
  width: 100%;
}

.about-us-intro__logo {
  display: block;
  width: 7.25rem;
  height: 2.625rem;
  flex-shrink: 0;
}

.about-us-intro__title {
  margin: 0;
  width: 100%;
}

.about-us-intro__body {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 992px) {
  .about-us-intro__body {
    gap: 4rem;
    max-width: 68.5rem;
  }
}

.about-us-intro__text {
  width: 100%;
  max-width: 100%;
  color: #000000;
  max-width: 68.5rem;
}
.about-us-intro__text p {
  margin: 0;
}
.about-us-intro__text strong,
.about-us-intro__text b {
  color: #CC0066;
  font-weight: inherit;
}

.about-us-intro__stats {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 992px) {
  .about-us-intro__stats {
    flex-direction: row;
    align-items: stretch;
  }
}

.about-us-intro__stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-direction: column;
  flex: none;
  width: 100%;
  padding: 1rem;
  background-color: #ffffff;
  border-radius: 0.75rem;
  text-align: center;
}
@media (min-width: 992px) {
  .about-us-intro__stat {
    flex: 1 0 0;
    min-width: 0;
    width: auto;
    gap: 1.5rem;
    padding: 1.5rem;
  }
}

.about-us-intro__stat-value,
.about-us-intro__stat-description {
  margin: 0;
  width: 100%;
}

.about-us-intro__feature {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  flex-direction: column;
  width: 100%;
  max-width: 68.5rem;
}
@media (min-width: 992px) {
  .about-us-intro__feature {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    margin-top: 2.5rem;
  }
}
@media (min-width: 1380px) {
  .about-us-intro__feature {
    gap: 8.5rem;
  }
}

.about-us-intro__feature-visual {
  width: 100%;
  max-width: 33.5rem;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .about-us-intro__feature-visual {
    flex: 536 1 0;
    min-width: 0;
  }
}

.about-us-intro__feature-image {
  display: block;
  width: 100%;
  height: auto;
}

.about-us-intro__feature-content {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}
@media (min-width: 992px) {
  .about-us-intro__feature-content {
    flex: 424 1 0;
    max-width: 26.5rem;
    width: auto;
  }
}

.about-us-intro__feature-title,
.about-us-intro__feature-description {
  margin: 0;
  width: 100%;
}

.cta-box {
  margin-block: 4rem;
}
@media (min-width: 992px) {
  .cta-box {
    margin-block: 5rem;
  }
}

.cta-box__inner {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-direction: column;
  width: 100%;
  padding: 2rem 1rem;
  border-radius: 0.75rem;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cta-box__inner {
    flex-direction: row;
    align-items: center;
    padding: 2rem;
    max-width: 68.5rem;
    margin-inline: auto;
  }
}

.cta-box__copy {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  flex: 1 0 0;
}

.cta-box__title,
.cta-box__text {
  margin: 0;
  width: 100%;
}

.cta-box__button {
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .cta-box__button {
    width: auto;
  }
}

.our-team__inner {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 992px) {
  .our-team__inner {
    gap: 1.5rem;
    max-width: 68.5rem;
    margin-inline: auto;
  }
}

.our-team__header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-direction: column;
  width: 100%;
  max-width: 43.5625rem;
}

.our-team__label,
.our-team__title,
.our-team__text {
  margin: 0;
  width: 100%;
}

.our-team__text p {
  margin: 0;
}
.our-team__text p + p {
  margin-top: 1.5rem;
}
.our-team__text strong,
.our-team__text b {
  font-weight: 600;
}

.our-team__members {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 992px) {
  .our-team__members {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2.75rem;
  }
}

.our-team__member {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
@media (min-width: 992px) {
  .our-team__member {
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 1.5rem;
    width: 15rem;
  }
}

.our-team__photo {
  width: calc((100% - 1rem) / 2);
  aspect-ratio: 240/308;
  border-radius: 0.75rem;
  overflow: hidden;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .our-team__photo {
    width: 100%;
    height: 19.25rem;
  }
}
.our-team__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.our-team__body {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-direction: column;
  width: calc((100% - 1rem) / 2);
  min-width: 0;
}
@media (min-width: 992px) {
  .our-team__body {
    width: 100%;
  }
}

.our-team__role,
.our-team__name,
.our-team__description {
  margin: 0;
  width: 100%;
}

.our-team__button {
  flex: 1 1 100%;
  justify-content: flex-start;
  padding-inline: 0;
  width: auto;
  max-width: 100%;
}
@media (min-width: 992px) {
  .our-team__button {
    flex: none;
    align-self: flex-start;
  }
}

.jobs-banner {
  margin-block: 4rem;
}
@media (min-width: 992px) {
  .jobs-banner {
    margin-block: 5rem;
  }
}

.jobs-banner__inner {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  flex-direction: column;
  position: relative;
  width: 100%;
  padding: 1.5rem 1rem;
  border-radius: 0.75rem;
  overflow: hidden;
}
@media (min-width: 992px) {
  .jobs-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding: 1.5rem;
    max-width: 68.5rem;
    margin-inline: auto;
    min-height: 16.8125rem;
  }
}

.jobs-banner__copy {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-direction: column;
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
}
@media (min-width: 992px) {
  .jobs-banner__copy {
    width: 32rem;
    flex: 1 1 32rem;
    max-width: 32rem;
  }
}

.jobs-banner__title,
.jobs-banner__text {
  margin: 0;
  width: 100%;
}

.jobs-banner__button {
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .jobs-banner__button {
    width: auto;
    align-self: flex-start;
  }
}

.jobs-banner__visual {
  position: relative;
  width: 24.875rem;
  height: 14.875rem;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .jobs-banner__visual {
    height: 13.8125rem;
  }
}

.jobs-banner__mark {
  position: absolute;
  top: 1.5625rem;
  left: 8.5rem;
  width: 10.25rem;
  height: 15.875rem;
  display: block;
  max-width: none;
  pointer-events: none;
}
@media (min-width: 992px) {
  .jobs-banner__mark {
    top: 0;
    left: 13.25rem;
    width: 10.875rem;
    height: 16.8125rem;
  }
}

.jobs-banner__photo {
  position: absolute;
  top: -0.8125rem;
  left: -2.5625rem;
  width: 16.1875rem;
  height: 20.4375rem;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
@media (min-width: 992px) {
  .jobs-banner__photo {
    top: -2.5rem;
    left: 1.5625rem;
    width: 17.125rem;
    height: 21.625rem;
  }
}
.jobs-banner__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.jobs-banner--history .jobs-banner__photo {
  top: -1.125rem;
  left: -1.9375rem;
  width: 16rem;
  height: 24.6875rem;
}
@media (min-width: 992px) {
  .jobs-banner--history .jobs-banner__photo {
    top: -2rem;
    left: 3.6875rem;
    width: 17.4375rem;
    height: 26.9375rem;
  }
}
.jobs-banner--history .jobs-banner__photo img {
  object-position: center top;
}

.comparison-table {
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .comparison-table {
    padding-bottom: 5rem;
  }
}

.comparison-table__inner {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 992px) {
  .comparison-table__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
    max-width: 68.5rem;
    margin-inline: auto;
  }
}

.comparison-table__intro {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 992px) {
  .comparison-table__intro {
    width: 19.5rem;
    flex-shrink: 0;
  }
}

.comparison-table__title,
.comparison-table__text {
  margin: 0;
  width: 100%;
}

.comparison-table__table-wrap {
  width: 100%;
  min-width: 0;
}
@media (min-width: 992px) {
  .comparison-table__table-wrap {
    flex: 1 1 auto;
  }
}

.comparison-table__table,
.comparison-table__table thead,
.comparison-table__table tbody,
.comparison-table__table tr,
.comparison-table__table th,
.comparison-table__table td {
  display: block;
}

.comparison-table__table th,
.comparison-table__table td {
  padding: 0;
  border: 0;
  text-align: left;
  font-weight: inherit;
}

.comparison-table__table {
  width: 100%;
  margin: 0;
  border: 1px solid #DCDCDC;
  border-radius: 0.75rem;
  overflow: hidden;
}

.comparison-table__table thead tr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-direction: row;
  position: relative;
  min-height: 4rem;
  padding: 1rem 1.5rem;
  background-color: #F1F1F1;
}

.comparison-table__table thead .comparison-table__col-feature {
  display: none;
}

.comparison-table__col-ours,
.comparison-table__col-theirs {
  margin: 0;
  font-weight: inherit;
  text-align: left;
  vertical-align: top;
}

.comparison-table__table thead .comparison-table__col-ours {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  flex-direction: row;
  width: auto;
}

.comparison-table__brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  flex-direction: row;
  min-width: 0;
}

.comparison-table__mark {
  display: block;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  object-fit: contain;
}

.comparison-table__ours-label--full {
  display: none;
}

.comparison-table__ours-label--short {
  white-space: nowrap;
}

.comparison-table__vs {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.comparison-table__table thead .comparison-table__theirs-heading {
  max-width: 7.5rem;
  font-weight: 500;
  color: #717171;
  text-align: right;
}

.comparison-table__table tbody tr {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-direction: column;
  padding: 1.5rem;
  border-top: 1px solid #DCDCDC;
}

.comparison-table__feature {
  width: 100%;
  text-align: left;
}
.comparison-table__feature::after {
  content: ":";
}

.comparison-table__table tbody .comparison-table__col-ours,
.comparison-table__table tbody .comparison-table__col-theirs {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  flex-direction: row;
  width: 100%;
}

.comparison-table__table tbody .comparison-table__col-ours {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #DCDCDC;
}

.comparison-table__mobile-label,
.comparison-table__value {
  flex: 1 1 0;
  min-width: 0;
}

.comparison-table__value--ours {
  display: flex;
  align-items: flex-start;
  gap: 0.4375rem;
  flex-direction: row;
}

.comparison-table__check {
  display: none;
  width: 0.75rem;
  height: 0.75rem;
  flex-shrink: 0;
  color: #CC0066;
}

.comparison-table__table tbody .comparison-table__col-theirs .comparison-table__value {
  color: #717171;
}

@media (min-width: 992px) {
  .comparison-table__table {
    border: 0;
    border-radius: 0;
    overflow: visible;
  }
  .comparison-table__table thead tr,
  .comparison-table__table tbody tr {
    display: grid;
    grid-template-columns: minmax(0, 12.5rem) minmax(0, 12.5rem) minmax(0, 12.5rem);
    justify-content: space-between;
    align-items: center;
    gap: 0;
    min-height: 0;
    padding: 0;
    background-color: transparent;
    border: 0;
  }
  .comparison-table__table thead tr {
    align-items: center;
    min-height: 3.125rem;
    background-color: #F8F8F8;
    border-radius: 0.75rem;
  }
  .comparison-table__table thead .comparison-table__col-feature {
    display: block;
  }
  .comparison-table__table thead .comparison-table__col-ours,
  .comparison-table__table thead .comparison-table__col-theirs {
    width: 100%;
    max-width: none;
  }
  .comparison-table__mark {
    width: 0.75rem;
    height: 1.125rem;
  }
  .comparison-table__ours-label--full {
    display: inline;
    white-space: nowrap;
  }
  .comparison-table__ours-label--short {
    display: none;
  }
  .comparison-table__vs,
  .comparison-table__mobile-label {
    display: none;
  }
  .comparison-table__table thead .comparison-table__theirs-heading {
    max-width: none;
    font-weight: 700;
    color: #1E1E1E;
    text-align: left;
  }
  .comparison-table__table tbody tr {
    padding: 1.5rem 0;
    border-top: 1px solid #C3C3C3;
  }
  .comparison-table__table tbody tr:first-child {
    border-top: 0;
  }
  .comparison-table__feature {
    font-size: 0.875rem !important;
    font-weight: 700;
    line-height: 1.4 !important;
  }
  .comparison-table__feature::after {
    content: none;
  }
  .comparison-table__table tbody .comparison-table__col-ours,
  .comparison-table__table tbody .comparison-table__col-theirs {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
  }
  .comparison-table__table tbody .comparison-table__col-theirs .comparison-table__value {
    color: #1E1E1E;
  }
  .comparison-table__value {
    display: flex;
    width: 100%;
    flex: none;
  }
  .comparison-table__value--ours {
    align-items: center;
  }
  .comparison-table__check {
    display: block;
    margin-top: 0;
  }
}
.image-gallery {
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .image-gallery {
    padding-bottom: 5rem;
  }
}

.image-gallery__grid {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 992px) {
  .image-gallery__grid {
    gap: 1.5rem;
    max-width: 68.5rem;
    margin-inline: auto;
  }
}

.image-gallery__row {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 992px) {
  .image-gallery__row {
    flex-direction: row;
    gap: 1.5rem;
    height: 30.0625rem;
  }
}

.image-gallery__item {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0.75rem;
  aspect-ratio: 341/227;
}
@media (min-width: 992px) {
  .image-gallery__item {
    aspect-ratio: auto;
    height: 100%;
  }
}
.image-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 992px) {
  .image-gallery__item--narrow {
    flex: 350 1 0;
    min-width: 0;
  }
  .image-gallery__item--narrow img {
    position: absolute;
    top: 0;
    left: -38.96%;
    width: 206%;
    max-width: none;
    height: 100%;
  }
}

@media (min-width: 992px) {
  .image-gallery__item--wide {
    flex: 723 1 0;
    min-width: 0;
  }
}

@media (min-width: 992px) {
  .image-gallery__item--half {
    flex: 1 1 0;
    min-width: 0;
  }
}

.our-history__inner {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 992px) {
  .our-history__inner {
    gap: 3rem;
  }
}

.our-history__title {
  margin: 0;
  width: 100%;
}

.our-history__list {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-direction: column;
  position: relative;
  width: 100%;
  max-width: 68.5rem;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
@media (min-width: 992px) {
  .our-history__list {
    gap: 4rem;
  }
}

.our-history__item {
  display: flex;
  align-items: flex-start;
  gap: 1.125rem;
  flex-direction: column;
  position: relative;
  width: 100%;
  padding-left: 2.875rem;
}
@media (min-width: 992px) {
  .our-history__item {
    gap: 1.5rem;
    padding-left: 2.375rem;
  }
}
.our-history__item::before {
  position: absolute;
  top: 0.375rem;
  left: 0;
  width: 0.625rem;
  height: 0.625rem;
  content: "";
  z-index: 1;
  border-radius: 5.625rem;
  background-color: #CC0066;
}
.our-history__item:not(:last-child)::after {
  position: absolute;
  top: 1rem;
  bottom: calc(-2rem - 6px);
  left: 0.28125rem;
  content: "";
  width: 1px;
  background-color: #CC0066;
}
@media (min-width: 992px) {
  .our-history__item::before {
    top: 0.6875rem;
  }
  .our-history__item:not(:last-child)::after {
    top: 1.3125rem;
    bottom: calc(-4rem - 11px);
  }
}

.our-history__year,
.our-history__item-title,
.our-history__item-text,
.our-history__body {
  margin: 0;
  width: 100%;
}

.our-history__body {
  display: flex;
  align-items: flex-start;
  gap: 1.125rem;
  flex-direction: column;
}