@charset "UTF-8";

/* app/javascript/css/rslider.css */
.rs-container * {
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.rs-container {
  font-family:
    Arial,
    Helvetica,
    sans-serif;
  height: 45px;
  position: relative;
}
.rs-container .rs-bg,
.rs-container .rs-selected {
  background-color: #eee;
  border: 1px solid #ededed;
  height: 10px;
  left: 0;
  position: absolute;
  top: 5px;
  width: 100%;
  border-radius: 3px;
}
.rs-container .rs-selected {
  background-color: #00b3bc;
  border: 1px solid #00969b;
  transition: all .2s linear;
  width: 0;
}
.rs-container.disabled .rs-selected {
  background-color: #ccc;
  border-color: #bbb;
}
.rs-container .rs-pointer {
  background-color: #fff;
  border: 1px solid #bbb;
  border-radius: 4px;
  cursor: pointer;
  height: 20px;
  left: -10px;
  position: absolute;
  top: 0;
  transition: all .2s linear;
  width: 30px;
  box-shadow:
    inset 0 0 1px #FFF,
    inset 0 1px 6px #ebebeb,
    1px 1px 4px rgba(0, 0, 0, .1);
}
.rs-container.disabled .rs-pointer {
  border-color: #ccc;
  cursor: default;
}
.rs-container .rs-pointer::after,
.rs-container .rs-pointer::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 9px;
  background-color: #ddd;
  left: 12px;
  top: 5px;
}
.rs-container .rs-pointer::after {
  left: auto;
  right: 12px;
}
.rs-container.sliding .rs-pointer,
.rs-container.sliding .rs-selected {
  transition: none;
}
.rs-container .rs-scale {
  left: 0;
  position: absolute;
  top: 5px;
  white-space: nowrap;
}
.rs-container .rs-scale span {
  float: left;
  position: relative;
}
.rs-container .rs-scale span::before {
  background-color: #ededed;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 1px;
}
.rs-container.rs-noscale span::before {
  display: none;
}
.rs-container.rs-noscale span:first-child::before,
.rs-container.rs-noscale span:last-child::before {
  display: block;
}
.rs-container .rs-scale span:last-child {
  margin-left: -1px;
  width: 0;
}
.rs-container .rs-scale span ins {
  color: #333;
  display: inline-block;
  font-size: 12px;
  margin-top: 20px;
  text-decoration: none;
}
.rs-container.disabled .rs-scale span ins {
  color: #999;
}
.rs-tooltip {
  color: #333;
  width: auto;
  min-width: 60px;
  height: 30px;
  background: #fff;
  border: 1px solid #00969b;
  border-radius: 3px;
  position: absolute;
  transform: translate(-50%, -35px);
  left: 13px;
  text-align: center;
  font-size: 13px;
  padding: 6px 10px 0;
}
.rs-container.disabled .rs-tooltip {
  border-color: #ccc;
  color: #999;
}

/* app/javascript/css/application.sass */
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    "Noto Sans",
    "Liberation Sans",
    sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol",
    "Noto Color Emoji";
  --font-family-monospace:
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    "Courier New",
    monospace;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}
body {
  margin: 0;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    "Noto Sans",
    "Liberation Sans",
    sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol",
    "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}
[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}
abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  text-decoration-skip-ink: none;
}
address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}
ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}
ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}
dt {
  font-weight: 700;
}
dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}
blockquote {
  margin: 0 0 1rem;
}
b,
strong {
  font-weight: bolder;
}
small {
  font-size: 80%;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: rgb(0, 86.1, 178.5);
  text-decoration: underline;
}
a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}
pre,
code,
kbd,
samp {
  font-family:
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    "Courier New",
    monospace;
  font-size: 1em;
}
pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}
figure {
  margin: 0 0 1rem;
}
img {
  vertical-align: middle;
  border-style: none;
}
svg {
  overflow: hidden;
  vertical-align: middle;
}
table {
  border-collapse: collapse;
}
caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}
th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}
label {
  display: inline-block;
  margin-bottom: 0.5rem;
}
button {
  border-radius: 0;
}
button:focus:not(:focus-visible) {
  outline: 0;
}
input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
[role=button] {
  cursor: pointer;
}
select {
  word-wrap: normal;
}
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}
textarea {
  overflow: auto;
  resize: vertical;
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}
[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
output {
  display: inline-block;
}
summary {
  display: list-item;
  cursor: pointer;
}
template {
  display: none;
}
[hidden] {
  display: none !important;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}
h1,
.h1 {
  font-size: 2.5rem;
}
h2,
.h2 {
  font-size: 2rem;
}
h3,
.h3 {
  font-size: 1.75rem;
}
h4,
.h4 {
  font-size: 1.5rem;
}
h5,
.h5 {
  font-size: 1.25rem;
}
h6,
.h6 {
  font-size: 1rem;
}
.lead {
  font-size: 1.25rem;
  font-weight: 300;
}
.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}
.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}
.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}
.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}
hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
small,
.small {
  font-size: 0.875em;
  font-weight: 400;
}
mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  list-style: none;
}
.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.blockquote-footer {
  display: block;
  font-size: 0.875em;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "\2014\a0";
}
.container,
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container-sm,
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md,
  .container-sm,
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1140px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}
.col-xl,
.col-xl-auto,
.col-xl-12,
.col-xl-11,
.col-xl-10,
.col-xl-9,
.col-xl-8,
.col-xl-7,
.col-xl-6,
.col-xl-5,
.col-xl-4,
.col-xl-3,
.col-xl-2,
.col-xl-1,
.col-lg,
.col-lg-auto,
.col-lg-12,
.col-lg-11,
.col-lg-10,
.col-lg-9,
.col-lg-8,
.col-lg-7,
.col-lg-6,
.col-lg-5,
.col-lg-4,
.col-lg-3,
.col-lg-2,
.col-lg-1,
.col-md,
.col-md-auto,
.col-md-12,
.col-md-11,
.col-md-10,
.col-md-9,
.col-md-8,
.col-md-7,
.col-md-6,
.col-md-5,
.col-md-4,
.col-md-3,
.col-md-2,
.col-md-1,
.col-sm,
.col-sm-auto,
.col-sm-12,
.col-sm-11,
.col-sm-10,
.col-sm-9,
.col-sm-8,
.col-sm-7,
.col-sm-6,
.col-sm-5,
.col-sm-4,
.col-sm-3,
.col-sm-2,
.col-sm-1,
.col,
.col-auto,
.col-12,
.col-11,
.col-10,
.col-9,
.col-8,
.col-7,
.col-6,
.col-5,
.col-4,
.col-3,
.col-2,
.col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}
.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}
.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}
.row-cols-3 > * {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}
.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}
.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}
.row-cols-6 > * {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.col-1 {
  flex: 0 0 8.33333333%;
  max-width: 8.33333333%;
}
.col-2 {
  flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}
.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}
.col-4 {
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}
.col-5 {
  flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}
.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.col-7 {
  flex: 0 0 58.33333333%;
  max-width: 58.33333333%;
}
.col-8 {
  flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
}
.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}
.col-10 {
  flex: 0 0 83.33333333%;
  max-width: 83.33333333%;
}
.col-11 {
  flex: 0 0 91.66666667%;
  max-width: 91.66666667%;
}
.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
.order-first {
  order: -1;
}
.order-last {
  order: 13;
}
.order-0 {
  order: 0;
}
.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
}
.order-3 {
  order: 3;
}
.order-4 {
  order: 4;
}
.order-5 {
  order: 5;
}
.order-6 {
  order: 6;
}
.order-7 {
  order: 7;
}
.order-8 {
  order: 8;
}
.order-9 {
  order: 9;
}
.order-10 {
  order: 10;
}
.order-11 {
  order: 11;
}
.order-12 {
  order: 12;
}
.offset-1 {
  margin-left: 8.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%;
}
@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.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%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.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%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.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%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.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%;
  }
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}
.table-sm th,
.table-sm td {
  padding: 0.3rem;
}
.table-bordered {
  border: 1px solid #dee2e6;
}
.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}
.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}
.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}
.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}
.table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075);
}
.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: rgb(183.6, 218.04, 255);
}
.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: rgb(122.4, 186.36, 255);
}
.table-hover .table-primary:hover {
  background-color: rgb(158.1, 204.84, 255);
}
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: rgb(158.1, 204.84, 255);
}
.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: rgb(213.84, 216.36, 218.6);
}
.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: rgb(178.56, 183.24, 187.4);
}
.table-hover .table-secondary:hover {
  background-color: rgb(200.3075090253, 203.6560288809, 206.6324909747);
}
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: rgb(200.3075090253, 203.6560288809, 206.6324909747);
}
.table-success,
.table-success > th,
.table-success > td {
  background-color: rgb(194.8, 230.36, 202.92);
}
.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: rgb(143.2, 209.24, 158.28);
}
.table-hover .table-success:hover {
  background-color: rgb(176.7059405941, 222.9540594059, 187.2665346535);
}
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: rgb(176.7059405941, 222.9540594059, 187.2665346535);
}
.table-info,
.table-info > th,
.table-info > td {
  background-color: rgb(190.04, 228.96, 235.12);
}
.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: rgb(134.36, 206.64, 218.08);
}
.table-hover .table-info:hover {
  background-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}
.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: rgb(255, 237.64, 185.56);
}
.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: rgb(255, 222.76, 126.04);
}
.table-hover .table-warning:hover {
  background-color: rgb(255, 231.265, 160.06);
}
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: rgb(255, 231.265, 160.06);
}
.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: rgb(245.2, 198.44, 202.92);
}
.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: rgb(236.8, 149.96, 158.28);
}
.table-hover .table-danger:hover {
  background-color: rgb(241.4341772152, 176.7058227848, 182.9073417722);
}
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: rgb(241.4341772152, 176.7058227848, 182.9073417722);
}
.table-light,
.table-light > th,
.table-light > td {
  background-color: rgb(253.04, 253.32, 253.6);
}
.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: rgb(251.36, 251.88, 252.4);
}
.table-hover .table-light:hover {
  background-color: rgb(238.165, 240.57, 242.975);
}
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: rgb(238.165, 240.57, 242.975);
}
.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: rgb(198.16, 199.84, 201.52);
}
.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: rgb(149.44, 152.56, 155.68);
}
.table-hover .table-dark:hover {
  background-color: rgb(185.0216751269, 187.09, 189.1583248731);
}
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: rgb(185.0216751269, 187.09, 189.1583248731);
}
.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}
.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}
.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: rgb(69.1465517241, 77.125, 85.1034482759);
}
.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.table-dark {
  color: #fff;
  background-color: #343a40;
}
.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: rgb(69.1465517241, 77.125, 85.1034482759);
}
.table-dark.table-bordered {
  border: 0;
}
.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}
.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}
@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-responsive > .table-bordered {
  border: 0;
}
.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #212529;
  text-decoration: none;
}
.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.btn.disabled,
.btn:disabled {
  opacity: 0.65;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}
.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:hover {
  color: #fff;
  background-color: rgb(0, 104.55, 216.75);
  border-color: rgb(0, 98.4, 204);
}
.btn-primary:focus,
.btn-primary.focus {
  color: #fff;
  background-color: rgb(0, 104.55, 216.75);
  border-color: rgb(0, 98.4, 204);
  box-shadow: 0 0 0 0.2rem rgba(38.25, 142.8, 255, 0.5);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: rgb(0, 98.4, 204);
  border-color: rgb(0, 92.25, 191.25);
}
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(38.25, 142.8, 255, 0.5);
}
.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:hover {
  color: #fff;
  background-color: rgb(90.2703862661, 97.7929184549, 104.4796137339);
  border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
}
.btn-secondary:focus,
.btn-secondary.focus {
  color: #fff;
  background-color: rgb(90.2703862661, 97.7929184549, 104.4796137339);
  border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
  box-shadow: 0 0 0 0.2rem rgba(130.05, 137.7, 144.5, 0.5);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
  border-color: rgb(78.4506437768, 84.9881974249, 90.7993562232);
}
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(130.05, 137.7, 144.5, 0.5);
}
.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:hover {
  color: #fff;
  background-color: rgb(32.6086956522, 136.1413043478, 56.25);
  border-color: rgb(30.1449275362, 125.8550724638, 52);
}
.btn-success:focus,
.btn-success.focus {
  color: #fff;
  background-color: rgb(32.6086956522, 136.1413043478, 56.25);
  border-color: rgb(30.1449275362, 125.8550724638, 52);
  box-shadow: 0 0 0 0.2rem rgba(72.25, 180.2, 96.9, 0.5);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:not(:disabled):not(.disabled):active,
.btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: rgb(30.1449275362, 125.8550724638, 52);
  border-color: rgb(27.6811594203, 115.5688405797, 47.75);
}
.btn-success:not(:disabled):not(.disabled):active:focus,
.btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(72.25, 180.2, 96.9, 0.5);
}
.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:hover {
  color: #fff;
  background-color: rgb(18.75, 132.0652173913, 150);
  border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
}
.btn-info:focus,
.btn-info.focus {
  color: #fff;
  background-color: rgb(18.75, 132.0652173913, 150);
  border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
  box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:not(:disabled):not(.disabled):active,
.btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
  border-color: rgb(15.9166666667, 112.1086956522, 127.3333333333);
}
.btn-info:not(:disabled):not(.disabled):active:focus,
.btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
}
.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #212529;
  background-color: rgb(223.75, 167.8125, 0);
  border-color: rgb(211, 158.25, 0);
}
.btn-warning:focus,
.btn-warning.focus {
  color: #212529;
  background-color: rgb(223.75, 167.8125, 0);
  border-color: rgb(211, 158.25, 0);
  box-shadow: 0 0 0 0.2rem rgba(221.7, 169.6, 12.1, 0.5);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:not(:disabled):not(.disabled):active,
.btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: rgb(211, 158.25, 0);
  border-color: rgb(198.25, 148.6875, 0);
}
.btn-warning:not(:disabled):not(.disabled):active:focus,
.btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(221.7, 169.6, 12.1, 0.5);
}
.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  color: #fff;
  background-color: rgb(200.082278481, 34.667721519, 50.5158227848);
  border-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}
.btn-danger:focus,
.btn-danger.focus {
  color: #fff;
  background-color: rgb(200.082278481, 34.667721519, 50.5158227848);
  border-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
  box-shadow: 0 0 0 0.2rem rgba(225.25, 83.3, 96.9, 0.5);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:not(:disabled):not(.disabled):active,
.btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
  border-color: rgb(178.3481012658, 30.9018987342, 45.0284810127);
}
.btn-danger:not(:disabled):not(.disabled):active:focus,
.btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(225.25, 83.3, 96.9, 0.5);
}
.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #212529;
  background-color: rgb(225.6875, 229.875, 234.0625);
  border-color: rgb(218.25, 223.5, 228.75);
}
.btn-light:focus,
.btn-light.focus {
  color: #212529;
  background-color: rgb(225.6875, 229.875, 234.0625);
  border-color: rgb(218.25, 223.5, 228.75);
  box-shadow: 0 0 0 0.2rem rgba(215.75, 217.2, 218.65, 0.5);
}
.btn-light.disabled,
.btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: rgb(218.25, 223.5, 228.75);
  border-color: rgb(210.8125, 217.125, 223.4375);
}
.btn-light:not(:disabled):not(.disabled):active:focus,
.btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(215.75, 217.2, 218.65, 0.5);
}
.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:hover {
  color: #fff;
  background-color: rgb(34.8534482759, 38.875, 42.8965517241);
  border-color: rgb(29.1379310345, 32.5, 35.8620689655);
}
.btn-dark:focus,
.btn-dark.focus {
  color: #fff;
  background-color: rgb(34.8534482759, 38.875, 42.8965517241);
  border-color: rgb(29.1379310345, 32.5, 35.8620689655);
  box-shadow: 0 0 0 0.2rem rgba(82.45, 87.55, 92.65, 0.5);
}
.btn-dark.disabled,
.btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:not(:disabled):not(.disabled):active,
.btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: rgb(29.1379310345, 32.5, 35.8620689655);
  border-color: rgb(23.4224137931, 26.125, 28.8275862069);
}
.btn-dark:not(:disabled):not(.disabled):active:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(82.45, 87.55, 92.65, 0.5);
}
.btn-outline-primary {
  color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:focus,
.btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: #007bff;
  background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:focus,
.btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-outline-success {
  color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:focus,
.btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled):active,
.btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:focus,
.btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}
.btn-outline-info:not(:disabled):not(.disabled):active,
.btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:focus,
.btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled):active,
.btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:focus,
.btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled):active,
.btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:focus,
.btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light.disabled,
.btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled):active,
.btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:focus,
.btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-link {
  font-weight: 400;
  color: #007bff;
  text-decoration: none;
}
.btn-link:hover {
  color: rgb(0, 86.1, 178.5);
  text-decoration: underline;
}
.btn-link:focus,
.btn-link.focus {
  text-decoration: underline;
}
.btn-link:disabled,
.btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}
.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}
.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 0.5rem;
}
input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
  font-size: 14px;
  color: #000;
  font-family: "PB", sans-serif;
  list-style: none;
  padding-left: 0;
}
.breadcrumb a {
  color: #000;
}
.breadcrumb-item {
  display: flex;
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: 8px;
}
.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 10px;
  color: #000000;
  content: "/";
}
.align-baseline {
  vertical-align: baseline !important;
}
.align-top {
  vertical-align: top !important;
}
.align-middle {
  vertical-align: middle !important;
}
.align-bottom {
  vertical-align: bottom !important;
}
.align-text-bottom {
  vertical-align: text-bottom !important;
}
.align-text-top {
  vertical-align: text-top !important;
}
.bg-primary {
  background-color: #007bff !important;
}
a.bg-primary:hover,
a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: rgb(0, 98.4, 204) !important;
}
.bg-secondary {
  background-color: #6c757d !important;
}
a.bg-secondary:hover,
a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: rgb(84.3605150215, 91.3905579399, 97.6394849785) !important;
}
.bg-success {
  background-color: #28a745 !important;
}
a.bg-success:hover,
a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: rgb(30.1449275362, 125.8550724638, 52) !important;
}
.bg-info {
  background-color: #17a2b8 !important;
}
a.bg-info:hover,
a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667) !important;
}
.bg-warning {
  background-color: #ffc107 !important;
}
a.bg-warning:hover,
a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: rgb(211, 158.25, 0) !important;
}
.bg-danger {
  background-color: #dc3545 !important;
}
a.bg-danger:hover,
a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: rgb(189.2151898734, 32.7848101266, 47.7721518987) !important;
}
.bg-light {
  background-color: #f8f9fa !important;
}
a.bg-light:hover,
a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: rgb(218.25, 223.5, 228.75) !important;
}
.bg-dark {
  background-color: #343a40 !important;
}
a.bg-dark:hover,
a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: rgb(29.1379310345, 32.5, 35.8620689655) !important;
}
.bg-white {
  background-color: #fff !important;
}
.bg-transparent {
  background-color: transparent !important;
}
.border {
  border: 1px solid #dee2e6 !important;
}
.border-top {
  border-top: 1px solid #dee2e6 !important;
}
.border-right {
  border-right: 1px solid #dee2e6 !important;
}
.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}
.border-left {
  border-left: 1px solid #dee2e6 !important;
}
.border-0 {
  border: 0 !important;
}
.border-top-0 {
  border-top: 0 !important;
}
.border-right-0 {
  border-right: 0 !important;
}
.border-bottom-0 {
  border-bottom: 0 !important;
}
.border-left-0 {
  border-left: 0 !important;
}
.border-primary {
  border-color: #007bff !important;
}
.border-secondary {
  border-color: #6c757d !important;
}
.border-success {
  border-color: #28a745 !important;
}
.border-info {
  border-color: #17a2b8 !important;
}
.border-warning {
  border-color: #ffc107 !important;
}
.border-danger {
  border-color: #dc3545 !important;
}
.border-light {
  border-color: #f8f9fa !important;
}
.border-dark {
  border-color: #343a40 !important;
}
.border-white {
  border-color: #fff !important;
}
.rounded-sm {
  border-radius: 0.2rem !important;
}
.rounded {
  border-radius: 0.25rem !important;
}
.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}
.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}
.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}
.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}
.rounded-lg {
  border-radius: 0.3rem !important;
}
.rounded-circle {
  border-radius: 50% !important;
}
.rounded-pill {
  border-radius: 50rem !important;
}
.rounded-0 {
  border-radius: 0 !important;
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}
.d-none {
  display: none !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-block {
  display: block !important;
}
.d-table {
  display: table !important;
}
.d-table-row {
  display: table-row !important;
}
.d-table-cell {
  display: table-cell !important;
}
.d-flex {
  display: flex !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-responsive-21by9::before {
  padding-top: 42.85714286%;
}
.embed-responsive-16by9::before {
  padding-top: 56.25%;
}
.embed-responsive-4by3::before {
  padding-top: 75%;
}
.embed-responsive-1by1::before {
  padding-top: 100%;
}
.flex-row {
  flex-direction: row !important;
}
.flex-column {
  flex-direction: column !important;
}
.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.flex-column-reverse {
  flex-direction: column-reverse !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.flex-nowrap {
  flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}
.flex-fill {
  flex: 1 1 auto !important;
}
.flex-grow-0 {
  flex-grow: 0 !important;
}
.flex-grow-1 {
  flex-grow: 1 !important;
}
.flex-shrink-0 {
  flex-shrink: 0 !important;
}
.flex-shrink-1 {
  flex-shrink: 1 !important;
}
.justify-content-start {
  justify-content: flex-start !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.justify-content-center {
  justify-content: center !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.justify-content-around {
  justify-content: space-around !important;
}
.align-items-start {
  align-items: flex-start !important;
}
.align-items-end {
  align-items: flex-end !important;
}
.align-items-center {
  align-items: center !important;
}
.align-items-baseline {
  align-items: baseline !important;
}
.align-items-stretch {
  align-items: stretch !important;
}
.align-content-start {
  align-content: flex-start !important;
}
.align-content-end {
  align-content: flex-end !important;
}
.align-content-center {
  align-content: center !important;
}
.align-content-between {
  align-content: space-between !important;
}
.align-content-around {
  align-content: space-around !important;
}
.align-content-stretch {
  align-content: stretch !important;
}
.align-self-auto {
  align-self: auto !important;
}
.align-self-start {
  align-self: flex-start !important;
}
.align-self-end {
  align-self: flex-end !important;
}
.align-self-center {
  align-self: center !important;
}
.align-self-baseline {
  align-self: baseline !important;
}
.align-self-stretch {
  align-self: stretch !important;
}
@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}
.float-right {
  float: right !important;
}
.float-none {
  float: none !important;
}
@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }
  .float-sm-right {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
}
.user-select-all {
  user-select: all !important;
}
.user-select-auto {
  user-select: auto !important;
}
.user-select-none {
  user-select: none !important;
}
.overflow-auto {
  overflow: auto !important;
}
.overflow-hidden {
  overflow: hidden !important;
}
.position-static {
  position: static !important;
}
.position-relative {
  position: relative !important;
}
.position-absolute {
  position: absolute !important;
}
.position-fixed {
  position: fixed !important;
}
.position-sticky {
  position: sticky !important;
}
.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}
.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}
@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}
.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
.shadow-none {
  box-shadow: none !important;
}
.w-25 {
  width: 25% !important;
}
.w-50 {
  width: 50% !important;
}
.w-75 {
  width: 75% !important;
}
.w-100 {
  width: 100% !important;
}
.w-auto {
  width: auto !important;
}
.h-25 {
  height: 25% !important;
}
.h-50 {
  height: 50% !important;
}
.h-75 {
  height: 75% !important;
}
.h-100 {
  height: 100% !important;
}
.h-auto {
  height: auto !important;
}
.mw-100 {
  max-width: 100% !important;
}
.mh-100 {
  max-height: 100% !important;
}
.min-vw-100 {
  min-width: 100vw !important;
}
.min-vh-100 {
  min-height: 100vh !important;
}
.vw-100 {
  width: 100vw !important;
}
.vh-100 {
  height: 100vh !important;
}
.m-0 {
  margin: 0 !important;
}
.mt-0,
.my-0 {
  margin-top: 0 !important;
}
.mr-0,
.mx-0 {
  margin-right: 0 !important;
}
.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}
.ml-0,
.mx-0 {
  margin-left: 0 !important;
}
.m-1 {
  margin: 0.25rem !important;
}
.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}
.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}
.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}
.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}
.m-2 {
  margin: 0.5rem !important;
}
.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}
.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}
.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}
.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}
.m-3 {
  margin: 1rem !important;
}
.mt-3,
.my-3 {
  margin-top: 1rem !important;
}
.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}
.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}
.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}
.m-4 {
  margin: 1.5rem !important;
}
.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}
.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}
.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}
.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}
.m-5 {
  margin: 3rem !important;
}
.mt-5,
.my-5 {
  margin-top: 3rem !important;
}
.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}
.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}
.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}
.p-0 {
  padding: 0 !important;
}
.pt-0,
.py-0 {
  padding-top: 0 !important;
}
.pr-0,
.px-0 {
  padding-right: 0 !important;
}
.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}
.pl-0,
.px-0 {
  padding-left: 0 !important;
}
.p-1 {
  padding: 0.25rem !important;
}
.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}
.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}
.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}
.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}
.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}
.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}
.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}
.p-3 {
  padding: 1rem !important;
}
.pt-3,
.py-3 {
  padding-top: 1rem !important;
}
.pr-3,
.px-3 {
  padding-right: 1rem !important;
}
.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}
.pl-3,
.px-3 {
  padding-left: 1rem !important;
}
.p-4 {
  padding: 1.5rem !important;
}
.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}
.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}
.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}
.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}
.p-5 {
  padding: 3rem !important;
}
.pt-5,
.py-5 {
  padding-top: 3rem !important;
}
.pr-5,
.px-5 {
  padding-right: 3rem !important;
}
.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}
.pl-5,
.px-5 {
  padding-left: 3rem !important;
}
.m-n1 {
  margin: -0.25rem !important;
}
.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}
.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}
.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}
.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}
.m-n2 {
  margin: -0.5rem !important;
}
.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}
.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}
.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}
.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}
.m-n3 {
  margin: -1rem !important;
}
.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}
.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}
.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}
.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}
.m-n4 {
  margin: -1.5rem !important;
}
.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}
.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}
.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}
.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}
.m-n5 {
  margin: -3rem !important;
}
.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}
.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}
.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}
.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}
.m-auto {
  margin: auto !important;
}
.mt-auto,
.my-auto {
  margin-top: auto !important;
}
.mr-auto,
.mx-auto {
  margin-right: auto !important;
}
.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}
.ml-auto,
.mx-auto {
  margin-left: auto !important;
}
@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}
.text-monospace {
  font-family:
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    "Courier New",
    monospace !important;
}
.text-justify {
  text-align: justify !important;
}
.text-wrap {
  white-space: normal !important;
}
.text-nowrap {
  white-space: nowrap !important;
}
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}
.text-uppercase {
  text-transform: uppercase !important;
}
.text-capitalize {
  text-transform: capitalize !important;
}
.font-weight-light {
  font-weight: 300 !important;
}
.font-weight-lighter {
  font-weight: lighter !important;
}
.font-weight-normal {
  font-weight: 400 !important;
}
.font-weight-bold {
  font-weight: 700 !important;
}
.font-weight-bolder {
  font-weight: bolder !important;
}
.font-italic {
  font-style: italic !important;
}
.text-white {
  color: #fff !important;
}
.text-primary {
  color: #007bff !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: rgb(0, 86.1, 178.5) !important;
}
.text-secondary {
  color: #6c757d !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: rgb(72.5407725322, 78.5858369099, 83.9592274678) !important;
}
.text-success {
  color: #28a745 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: rgb(25.2173913043, 105.2826086957, 43.5) !important;
}
.text-info {
  color: #17a2b8 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: rgb(14.5, 102.1304347826, 116) !important;
}
.text-warning {
  color: #ffc107 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: rgb(185.5, 139.125, 0) !important;
}
.text-danger {
  color: #dc3545 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: rgb(167.4810126582, 29.0189873418, 42.2848101266) !important;
}
.text-light {
  color: #f8f9fa !important;
}
a.text-light:hover,
a.text-light:focus {
  color: rgb(203.375, 210.75, 218.125) !important;
}
.text-dark {
  color: #343a40 !important;
}
a.text-dark:hover,
a.text-dark:focus {
  color: rgb(17.7068965517, 19.75, 21.7931034483) !important;
}
.text-body {
  color: #212529 !important;
}
.text-muted {
  color: #6c757d !important;
}
.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}
.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.text-decoration-none {
  text-decoration: none !important;
}
.text-break {
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.text-reset {
  color: inherit !important;
}
.visible {
  visibility: visible !important;
}
.invisible {
  visibility: hidden !important;
}
.d-none {
  display: none !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-block {
  display: block !important;
}
.d-table {
  display: table !important;
}
.d-table-row {
  display: table-row !important;
}
.d-table-cell {
  display: table-cell !important;
}
.d-flex {
  display: flex !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
@font-face {
  font-family: "PB";
  src: url("/assets/Play-Bold-ffe5f8e0.eot");
  src:
    local("\432\98\454"),
    url("/assets/Play-Bold-9de5cb06.woff") format("woff"),
    url("/assets/Play-Bold-bc14f782.ttf") format("truetype"),
    url("/assets/Play-Bold-f5a435d5.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PR";
  src: url("/assets/Play-Regular-f0c40646.eot");
  src:
    local("\432\98\454"),
    url("/assets/Play-Regular-b692d4a9.woff") format("woff"),
    url("/assets/Play-Regular-8033806e.ttf") format("truetype"),
    url("/assets/Play-Regular-c1d7a1e7.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
  line-height: 1.2em;
  outline: none;
}
*::before,
*::after {
  box-sizing: border-box;
}
html {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  font-size: 16px;
  font-family: "PR", sans-serif;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
body.with-overlay {
  overflow: hidden;
}
h1 {
  font-size: 36px;
  font-family: "PB", sans-serif;
  margin-bottom: 32px;
}
.content-wrapper {
  flex: 1 0 auto;
  margin-bottom: 80px;
}
button:focus,
input:focus {
  outline: medium none;
}
.content {
  width: 100%;
  margin: 0 auto;
}
.hidden {
  visibility: hidden !important;
  display: none !important;
}
.disabled-loading {
  width: 44px;
  height: 44px;
  background: url("/assets/auth_load-c254881f.svg") center center no-repeat;
  background-size: contain;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
.text-right {
  text-align: right;
}
@media (max-width: 767px) {
  h1 {
    margin-bottom: 30px;
    font-size: 30px;
  }
}
@media (min-width: 407px) and (max-width: 767px) {
  .content {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .content {
    width: 688px;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .content {
    width: 944px;
  }
}
@media (min-width: 1366px) and (max-width: 1599px) {
  .content {
    width: 1110px;
  }
}
@media (min-width: 1600px) {
  .content {
    width: 1440px;
  }
}
.global-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  background: transparent;
}
.global-overlay.active {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}
.global-overlay-login {
  background: rgba(1, 1, 1, 0.3);
}
.global-overlay-login.active {
  z-index: 15;
}
.header {
  font-family: "PB", sans-serif;
  color: #000;
  padding-top: 35px;
  margin: 0 auto 48px auto;
  width: 100%;
}
.header a {
  color: #000;
}
.header__top {
  display: flex;
  justify-content: space-between;
  flex: 1 1 auto;
  align-items: center;
  width: 100%;
  height: 48px;
  left: 0;
  padding: 54px 20px;
  top: 0;
  background: #fff;
  z-index: 5;
  margin-left: auto;
  margin-right: auto;
}
.header__logo-link {
  display: flex;
  width: 180px;
  height: 80px;
  background: url("/assets/logo-4e75d365.svg") center center no-repeat;
  background-size: contain;
}
.header__phones {
  background: url("/assets/phone-ffb728bd.svg") 0 center no-repeat;
  display: flex;
  flex-direction: column;
  padding-left: 34px;
}
.header__address {
  display: flex;
}
.header__address a:before {
  content: "";
  width: 18px;
  height: 27px;
  background: url("/assets/map-dad41ec5.svg") center center no-repeat;
  background-size: contain;
  transform: rotate(0.0001deg);
  -ms-transform: rotate(0.0001deg);
  margin-right: 9px;
}
.header__icon a {
  display: flex;
  align-items: center;
  align-content: center;
  font-family: "PB", sans-serif;
  text-transform: uppercase;
  color: #000;
}
.header__user a:before {
  content: "";
  width: 17px;
  height: 19px;
  background: url("/assets/lk-645398cf.svg") center center no-repeat;
  background-size: contain;
  margin-right: 8px;
}
.header__cart {
  position: relative;
}
.header__cart a:before {
  content: "";
  width: 17px;
  height: 19px;
  background: url("/assets/basket-84853792.svg") center center no-repeat;
  background-size: contain;
  margin-right: 8px;
}
.header-bottom {
  height: auto;
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
}
.header-catalog {
  display: flex;
  position: relative;
  width: 100%;
  height: 54px;
}
.header-catalog .header-catalog-frontpage.active {
  z-index: 10 !important;
}
.header-catalog.active {
  z-index: 12;
}
.header-catalog__selector {
  width: 50%;
  font-family: "PB", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 4;
}
.header-catalog__selector button {
  color: #e5e5e5;
  cursor: pointer;
  background: #000000;
  width: 100%;
  height: 100%;
  border: medium none;
  outline: medium none;
  text-transform: uppercase;
  transition: 0.3s;
  display: block;
}
.header-catalog__selector.active {
  z-index: 12;
}
.header-catalog__selector.active .header-catalog__items {
  display: block;
}
.header-catalog__selector.active button {
  background: #D30F0E;
  color: #fff;
}
.header-catalog__item-wrapper {
  display: inline-block;
  padding-left: 20px;
  position: relative;
  transition: 0.3s;
  font-family: "PB", sans-serif;
  font-size: 16px;
  cursor: pointer;
}
.header-catalog__items {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  color: #000;
  text-align: left;
  padding: 24px;
  text-transform: none;
  background: #F3F3F3;
  z-index: 12;
}
.header-catalog__items ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-catalog__item {
  font-size: 16px;
  margin-bottom: 10px;
}
.header-catalog__item:last-child {
  margin-bottom: 0;
}
.header-catalog__item.expandable a.header-catalog__root:hover,
.header-catalog__item.expandable a.header-catalog__root:focus {
  text-decoration: none;
}
.header-catalog__item.expandable a.header-catalog__root:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  height: 2px;
  width: 8px;
  background: #000;
  transition: 0.3s;
}
.header-catalog__item.expandable a.header-catalog__root:after {
  content: "";
  position: absolute;
  left: 3px;
  top: 5px;
  height: 8px;
  width: 2px;
  background: #000;
  transition: background 0.3s;
}
.header-catalog__item.expandable.expanded a {
  color: #D20F0D;
}
.header-catalog__item.expandable.expanded a:before {
  background: #D20F0D;
}
.header-catalog__item.expandable.expanded a:after {
  opacity: 0;
  visibility: hidden;
}
.header-catalog__item.expandable.expanded .header-catalog__children-items {
  display: block;
}
.header-catalog__item.expandable.expanded .header-catalog__children-items a {
  color: #000;
}
.header-catalog__children-items {
  display: none;
}
.header-catalog__children-items li {
  font-family: "PR", sans-serif;
  font-size: 14px;
  margin-top: 10px;
  padding-left: 20px;
}
.header-search-bar {
  width: 100%;
}
.header-search-bar__form {
  display: flex;
}
.header-search-bar__input {
  color: #999999;
  background: #F0F0F0;
  flex: 1 1 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  align-content: center;
  border: none;
  font-size: 16px;
  width: 100%;
}
.header-search-bar__submit {
  width: 54px;
  height: 54px;
  text-indent: -99999px;
  border: medium none;
  background: #E3E3E3;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-search-bar__submit:after {
  content: "";
  width: 20px;
  height: 20px;
  background: url("/assets/search-9ff78f4e.svg") center center no-repeat;
}
.header-search-bar__submit:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 6px;
  border-color: transparent transparent transparent #f0f0f0;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -3px;
}
a.header-contacts-button {
  display: none;
  height: 54px;
  width: 362px;
  justify-content: space-around;
  background: #000;
  align-items: center;
  color: #e5e5e5;
}
.header-sticky {
  display: flex;
  width: 100%;
  left: 0;
  justify-content: center;
  height: 54px;
  background: #F5F5F5;
  z-index: 15;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: -54px;
  transition: 0.3s;
}
.header-sticky:after {
  content: "";
  position: absolute;
  bottom: -26px;
  width: 100%;
  height: 26px;
  background: url("/assets/fixed_s-7276584d.png") center center repeat-x;
  pointer-events: none;
}
.header-sticky__container {
  display: flex;
}
.header-sticky.header-sticked {
  position: fixed;
  top: 0;
  visibility: visible;
  opacity: 1;
}
.header-sticky__logo {
  background: url("/assets/logo-4e75d365.svg") 0 center no-repeat;
  background-size: contain;
}
.header-sticky__logo a {
  display: block;
  width: 136px;
  height: 48px;
}
.header-sticky__search {
  width: 100%;
  border-left: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
}
.header-sticky__search form {
  display: flex;
}
.header-sticky__search input {
  color: #999999;
  background: #F0F0F0;
  flex: 1 1 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  align-content: center;
  border: none;
  font-size: 16px;
}
.header-sticky__search button {
  width: 54px;
  height: 54px;
  text-indent: -99999px;
  border: medium none;
  background: #F0F0F0;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-sticky__search button:after {
  content: "";
  width: 20px;
  height: 20px;
  background: url("/assets/search-9ff78f4e.svg") center center no-repeat;
}
.header-sticky__user {
  min-height: 54px;
  display: flex;
  align-items: center;
  align-content: center;
}
.header-sticky__user a {
  display: flex;
  align-items: center;
}
.header-sticky__user a span {
  display: none;
}
.header-sticky__user a:before {
  content: "";
  width: 17px;
  height: 19px;
  background: url("/assets/lk-645398cf.svg") center center no-repeat;
  background-size: contain;
  margin-right: 8px;
}
.header-sticky__cart {
  position: relative;
  min-height: 54px;
  display: flex;
  align-items: center;
  align-content: center;
}
.header-sticky__cart a {
  display: flex;
}
.header-sticky__cart a span {
  display: none;
}
.header-sticky__cart a:before {
  content: "";
  width: 17px;
  height: 19px;
  background: url("/assets/basket-84853792.svg") center center no-repeat;
  background-size: contain;
  margin-right: 8px;
}
.header-sticky__actions {
  flex: 1 1;
  display: flex;
  justify-content: space-between;
  padding-left: 24px;
}
@media (max-width: 767px) {
  body {
    margin-top: 74px;
  }
  .header {
    width: 100%;
  }
  .header__top {
    position: fixed;
  }
  .header__top:after {
    content: "";
    position: absolute;
    bottom: -26px;
    width: 100%;
    height: 26px;
    background: url("/assets/fixed_s-7276584d.png") center center repeat-x;
    pointer-events: none;
    z-index: 4;
    left: 0;
  }
  .header__logo-link {
    width: 54px;
    height: 48px;
    background: url("/assets/logo_m-bbbfcf3a.svg") center center no-repeat;
  }
  .header__user span,
  .header__cart span {
    display: none;
  }
  .header__phones,
  .header__address {
    display: none;
  }
  .header-bottom {
    flex-wrap: wrap;
  }
  .header-catalog {
    margin-bottom: 30px;
  }
  .header-sticky {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .header {
    width: 688px;
    padding: 35px 0 0;
  }
  .header__top {
    height: 80px;
    display: flex;
    justify-content: space-between;
    position: relative;
    font-size: 14px;
    margin-bottom: 16px;
  }
  .header__top:after {
    display: none;
  }
  .header__logo-link {
    width: 78px;
    height: 70px;
    background: url("/assets/logo_m-bbbfcf3a.svg") center center no-repeat;
    background-size: contain;
  }
  .header__user span,
  .header__cart span {
    display: block;
  }
  .header__phones,
  .header__address {
    display: none;
  }
  .header-bottom {
    flex-wrap: nowrap;
  }
  .header-catalog {
    max-width: 320px;
    width: 100%;
    margin-right: 15px;
    padding: 0;
  }
  .header-search-bar {
    max-width: 320px;
    width: 100%;
    margin-left: 15px;
    padding: 0;
  }
  .header-sticky__container {
    width: 688px;
    padding: 0;
  }
  .header-sticky__logo {
    background: url("/assets/logo_m-bbbfcf3a.svg") 0 center no-repeat;
    width: 74px;
    height: 48px;
  }
  .header-sticky__search {
    width: 370px;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .header__top {
    width: 954px;
  }
  .header__logo-link {
    width: 180px;
    height: 80px;
    background: url("/assets/logo-4e75d365.svg") center center no-repeat;
    background-size: contain;
  }
  .header__phones,
  .header__address {
    display: none;
  }
  .header-catalog {
    width: 264px;
  }
  .header-search-bar {
    width: 558px;
  }
  .header-bottom {
    width: 944px;
  }
  .header-sticky__container {
    width: 944px;
    padding: 0 20px;
  }
  .header-sticky__logo {
    width: 136px;
    height: 48px;
  }
  .header-sticky__search {
    width: 422px;
  }
  .header-sticky__user a span {
    display: flex;
  }
  .header-sticky__cart a span {
    display: flex;
  }
}
@media (min-width: 1366px) and (max-width: 1599px) {
  .header__top {
    width: 1146px;
  }
  .header__logo-link {
    width: 180px;
    height: 80px;
    background: url("/assets/logo-4e75d365.svg") center center no-repeat;
    background-size: contain;
  }
  .header__phones {
    background: url("/assets/phone-ffb728bd.svg") 0 center no-repeat;
    display: flex;
    flex-direction: column;
    padding-left: 34px;
  }
  .header .header-catalog {
    width: 264px;
  }
  .header .header-search-bar {
    width: 460px;
  }
  .header .header-bottom {
    width: 1110px;
  }
  .header .header-contacts-button {
    display: flex;
  }
  .header__mobile-menu {
    display: none;
  }
  .header-sticky__container {
    width: 1110px;
    padding: 0 20px;
  }
  .header-sticky__logo {
    width: 263px;
    height: 48px;
  }
  .header-sticky__search {
    width: 522px;
  }
  .header-sticky__user a span {
    display: flex;
  }
  .header-sticky__cart a span {
    display: flex;
  }
}
@media (min-width: 1600px) {
  .header__top {
    width: 1440px;
    padding: 40px 0 72px 0;
  }
  .header__phones {
    display: flex;
  }
  .header__address {
    display: flex;
  }
  .header__mobile-menu {
    display: none;
  }
  .header .header-catalog {
    width: 264px;
  }
  .header .header-search-bar {
    width: 754px;
  }
  .header .header-bottom {
    width: 1440px;
  }
  .header .header-contacts-button {
    display: flex;
  }
  .header-sticky__container {
    width: 1440px;
  }
  .header-sticky__logo {
    width: 263px;
    height: 48px;
  }
  .header-sticky__search {
    width: 816px;
  }
  .header-sticky__user a span {
    display: flex;
  }
  .header-sticky__cart a span {
    display: flex;
  }
}
.header__mobile-menu {
  position: relative;
  z-index: 20;
}
#mobile-menu-toggle {
  display: block;
  position: relative;
  z-index: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#mobile-menu-toggle a {
  text-decoration: none;
  color: #232323;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
#mobile-menu-toggle a:hover {
  color: #D30F0E;
}
#mobile-menu-toggle a.active {
  color: #D30F0E;
}
#mobile-menu-toggle input {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: -7px;
  left: -5px;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  -webkit-touch-callout: none;
}
#mobile-menu-toggle label {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
}
#mobile-menu-toggle label span {
  display: none;
}
#mobile-menu-toggle label .menu-control {
  display: flex;
  width: 38px;
  height: 30px;
  align-items: flex-end;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  z-index: 10;
}
#mobile-menu-toggle label .menu-control span {
  display: block;
  width: 30px;
  height: 2px;
  background: #000;
  transition: 0.3s;
}
#mobile-menu-toggle label .menu-control:before {
  content: "";
  height: 2px;
  background: #000;
  width: 100%;
  transition: 0.3s;
  transform-origin: right center;
}
#mobile-menu-toggle label .menu-control:after {
  content: "";
  height: 2px;
  background: #000;
  width: 100%;
  transition: 0.3s;
  transform-origin: right center;
}
#mobile-menu-toggle input:checked + label .menu-control:before {
  content: "";
  height: 2px;
  background: #000;
  width: 50%;
  transform-origin: right center;
  transform: translateY(14px) rotate(45deg);
}
#mobile-menu-toggle input:checked + label .menu-control span {
  display: block;
  width: 30px;
  height: 2px;
  background: #000;
  transition: 0.3s;
}
#mobile-menu-toggle input:checked + label .menu-control:after {
  content: "";
  height: 2px;
  background: #000;
  width: 50%;
  transform-origin: right center;
  transform: translateY(-14px) rotate(-45deg);
}
#mobile-menu-toggle input:checked ~ .mobile-menu__wrapper {
  right: 0;
}
.mobile-menu__wrapper {
  position: fixed;
  height: 100%;
  width: 408px;
  padding: 48px 50px 50px;
  background: #ededed;
  right: -100%;
  -webkit-transition: right 0.3s ease;
  -o-transition: right 0.3s ease;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  top: 0;
}
.mobile-menu__wrapper ul {
  list-style-type: none;
  padding-left: 0;
}
.mobile-menu__wrapper li {
  list-style: none;
  padding-bottom: 8px;
  font-size: 18px;
}
.mobile-menu__wrapper li.divider {
  border-bottom: 1px solid #ccc;
  padding: 0;
  margin-bottom: 8px;
}
.mobile-menu-bottom__phones {
  background: url("/assets/phone-ffb728bd.svg") 0 center no-repeat transparent;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.mobile-menu-bottom__address {
  background: url("/assets/map-dad41ec5.svg") 0 center no-repeat transparent;
}
.mobile-menu-bottom__icon {
  padding-left: 50px;
}
@media (max-width: 407px) {
  .mobile-menu__wrapper {
    width: 100%;
  }
}
.footer {
  height: 330px;
  background: #000000;
  position: relative;
}
.footer a {
  color: #fff;
}
.footer ul {
  list-style: none;
  margin: 0;
}
.footer ul li {
  margin-bottom: 20px;
}
.footer__wrapper {
  width: 1440px;
  margin: 0 auto;
  padding-top: 70px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.footer__content {
  display: flex;
}
.footer__price-list {
  width: 196px;
  height: 54px;
  background: #D30F0E;
  transition: 0.3s;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: "PB", sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  position: relative;
}
.footer__price-list:before {
  content: "";
  position: absolute;
  left: 30px;
  top: 50%;
  margin-top: -5px;
  width: 10px;
  height: 11px;
  background: url("/assets/price-58f7ed36.svg") center center no-repeat;
}
.footer__price-list:hover:before {
  animation: price_animation 1s infinite linear;
}
.footer__phones {
  background: url("/assets/phone-ffb728bd.svg") 0 center no-repeat;
  display: flex;
  flex-direction: column;
  padding-left: 36px;
}
.footer__address {
  background: url("/assets/map-dad41ec5.svg") 0 center no-repeat;
  display: flex;
  flex-direction: column;
  padding-left: 36px;
  padding-top: 4px;
  padding-bottom: 4px;
}
.footer__contacts {
  padding-left: 36px;
  padding-top: 4px;
  padding-bottom: 4px;
  margin-top: 26px;
}
.footer__menu {
  display: flex;
  justify-content: center;
}
.footer__menu img {
  height: auto;
  width: 100%;
  max-width: 180px;
}
.footer__copyrights {
  color: #7F7F7F;
}
@media (max-width: 767px) {
  .footer {
    height: auto;
  }
  .footer__wrapper {
    max-width: 420px;
    width: 100%;
    padding: 30px 20px;
  }
  .footer__content {
    flex-direction: column;
    align-items: center;
  }
  .footer__menu {
    height: 180px;
    width: 100%;
    order: 2;
    margin-top: 20px;
  }
  .footer__price-list {
    order: 1;
    margin: 0;
  }
  .footer__info {
    order: 2;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .footer__address {
    margin-top: 24px;
  }
  .footer__copyrights {
    order: 3;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer__wrapper {
    max-width: 680px;
    width: 100%;
    padding: 30px 20px;
  }
  .footer__content {
    flex-wrap: wrap;
  }
  .footer__content:before {
    content: "";
    width: 100%;
    order: 3;
  }
  .footer__menu {
    order: 4;
    margin-top: 20px;
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
  }
  .footer__price-list {
    order: 1;
    margin: 0;
    width: 185px;
    position: absolute;
  }
  .footer__info {
    order: 2;
    display: flex;
    margin-left: 0;
    flex: 1 1 auto;
    justify-content: space-between;
    height: 54px;
    align-items: center;
    flex-wrap: wrap;
  }
  .footer__info:before {
    content: "";
    width: 185px;
    display: flex;
  }
  .footer__contacts {
    flex: 1 1 auto;
  }
  .footer__copyrights {
    display: flex;
    justify-content: center;
    order: 5;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .footer__wrapper {
    width: 852px;
    padding: 35px 0;
  }
  .footer__content {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .footer__price-list {
    order: 1;
    margin: 0 0 30px;
  }
  .footer__menu {
    flex: 1 1 auto;
    margin-left: 0;
    order: 3;
    justify-content: center;
    height: 200px;
  }
  .footer__menu img {
    max-width: 200px;
  }
  .footer__info {
    order: 4;
  }
  .footer__phones {
    margin-bottom: 35px;
  }
  .footer__copyrights {
    display: flex;
    justify-content: center;
    order: 5;
  }
}
@media (min-width: 1366px) and (max-width: 1599px) {
  .footer__wrapper {
    width: 1146px;
  }
  .footer__menu {
    flex-grow: 1;
    justify-content: center;
    height: 200px;
  }
  .footer__menu img {
    max-width: 200px;
  }
  .footer__phones {
    margin-bottom: 35px;
  }
}
@media (min-width: 1600px) {
  .footer__wrapper {
    width: 1440px;
  }
  .footer__menu {
    flex-grow: 1;
    justify-content: center;
    height: 200px;
  }
  .footer__menu img {
    max-width: 200px;
  }
  .footer__phones {
    margin-bottom: 35px;
  }
}
@keyframes price_animation {
  0% {
    transform: translateY(0px);
  }
  25% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(0px);
  }
  75% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}
.rs-container * {
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.rs-container {
  font-family:
    Arial,
    Helvetica,
    sans-serif;
  height: 45px;
  position: relative;
}
.rs-container .rs-bg,
.rs-container .rs-selected {
  background-color: #eee;
  border: 1px solid #ededed;
  height: 10px;
  left: 0;
  position: absolute;
  top: 5px;
  width: 100%;
  border-radius: 3px;
}
.rs-container .rs-selected {
  background-color: #00b3bc;
  border: 1px solid #00969b;
  transition: all 0.2s linear;
  width: 0;
}
.rs-container.disabled .rs-selected {
  background-color: #ccc;
  border-color: #bbb;
}
.rs-container .rs-pointer {
  background-color: #fff;
  border: 1px solid #bbb;
  border-radius: 4px;
  cursor: pointer;
  height: 20px;
  left: -10px;
  position: absolute;
  top: 0;
  transition: all 0.2s linear;
  width: 30px;
  box-shadow:
    inset 0 0 1px #FFF,
    inset 0 1px 6px #ebebeb,
    1px 1px 4px rgba(0, 0, 0, 0.1);
}
.rs-container.disabled .rs-pointer {
  border-color: #ccc;
  cursor: default;
}
.rs-container .rs-pointer::after,
.rs-container .rs-pointer::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 9px;
  background-color: #ddd;
  left: 12px;
  top: 5px;
}
.rs-container .rs-pointer::after {
  left: auto;
  right: 12px;
}
.rs-container.sliding .rs-pointer,
.rs-container.sliding .rs-selected {
  transition: none;
}
.rs-container .rs-scale {
  left: 0;
  position: absolute;
  top: 5px;
  white-space: nowrap;
}
.rs-container .rs-scale span {
  float: left;
  position: relative;
}
.rs-container .rs-scale span::before {
  background-color: #ededed;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 1px;
}
.rs-container.rs-noscale span::before {
  display: none;
}
.rs-container.rs-noscale span:first-child::before,
.rs-container.rs-noscale span:last-child::before {
  display: block;
}
.rs-container .rs-scale span:last-child {
  margin-left: -1px;
  width: 0;
}
.rs-container .rs-scale span ins {
  color: #333;
  display: inline-block;
  font-size: 12px;
  margin-top: 20px;
  text-decoration: none;
}
.rs-container.disabled .rs-scale span ins {
  color: #999;
}
.rs-tooltip {
  color: #333;
  width: auto;
  min-width: 60px;
  height: 30px;
  background: #fff;
  border: 1px solid #00969b;
  border-radius: 3px;
  position: absolute;
  transform: translate(-50%, -35px);
  left: 13px;
  text-align: center;
  font-size: 13px;
  padding: 6px 10px 0;
}
.rs-container.disabled .rs-tooltip {
  border-color: #ccc;
  color: #999;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  display: none;
  -webkit-appearance: none;
  margin: 0;
}
.shaded {
  overflow: hidden;
  width: 100%;
  height: 100svh;
  position: fixed;
}
.shaded:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 20;
}
.wrapper {
  max-width: 1500px;
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .wrapper {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .wrapper {
    padding: 0 15px;
  }
}
.catalog-title {
  font-family: "PB";
  font-size: 36px;
  line-height: 41px;
  font-weight: 700;
  margin-bottom: 32px;
}
@media (max-width: 1024px) {
  .catalog-title {
    font-size: 30px;
    line-height: 34px;
  }
}
@media (max-width: 768px) {
  .catalog-title {
    font-size: 28px;
    line-height: 32px;
  }
}
@media (max-width: 575px) {
  .catalog-title {
    font-size: 24px;
    line-height: 28px;
  }
}
.filter-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin-bottom: 24px;
}
.filter-row__main {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
@media (max-width: 480px) {
  .filter-row__main {
    gap: 12px;
  }
}
.filter-row__subs {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.filter-results {
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
}
@media (max-width: 575px) {
  .filter-results {
    display: none;
  }
}
.filter-results .results-count {
  display: inline;
  font-family: "PB";
}
.filter-views {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.view-item {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #838383;
  transition: 0.2s ease-in-out;
}
.view-item:hover {
  color: #212529;
}
.view-item.active-item {
  color: #D30F0E;
}
.view-item.active-item:hover {
  color: #D30F0E;
}
.catalog-content {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 36px;
}
.column-filter {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 268px;
  width: 100%;
  flex-shrink: 0;
}
@media (max-width: 1601px) {
  .column-filter {
    max-width: 260px;
  }
}
@media (max-width: 1024px) {
  .column-filter {
    max-width: 240px;
  }
}
@media (max-width: 1023px) {
  .column-filter {
    display: none;
  }
}
.column-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.filter-tabs {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 575px) {
  .filter-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
}
.filter-tabs::-webkit-scrollbar {
  display: none;
}
.filter-tab {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 34px;
  background-color: #D30F0E;
}
.filter-tab__name {
  font-size: 12px;
  line-height: 14px;
  font-weight: 700;
  color: #FFFFFF;
  white-space: nowrap;
}
.filter-tab__remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  color: #FFFFFF;
  cursor: pointer;
}
.content-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}
@media (max-width: 1599px) {
  .content-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 680px) {
  .content-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.content-grid.mini-grid {
  display: none;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
@media (max-width: 1599px) {
  .content-grid.mini-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 767px) {
  .content-grid.mini-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 575px) {
  .content-grid.mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.content-grid.mini-grid .product-btn {
  width: 60px;
}
.content-grid.mini-grid .product-btn svg {
  width: 18px;
  height: 18px;
}
.content-grid.mini-grid .product-price {
  font-size: 16px;
  line-height: 18px;
}
.content-grid.mini-grid .product-counter {
  display: none;
}
.content-grid.mini-grid .product-actions {
  flex-direction: row;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: space-between;
}
.content-grid.mini-grid .product-values {
  width: fit-content;
}
.content-grid.mini-grid .product-image {
  height: 150px;
}
.catalog-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid #F0F0F0;
  max-height: 446px;
  min-width: 0;
}
@media (min-width: 768px) {
  .catalog-card {
    height: 421px;
    width: 216px;
  }
}
@media (min-width: 1024px) {
  .catalog-card {
    height: 421px;
    width: 210px;
  }
}
@media (min-width: 1366px) {
  .catalog-card {
    height: 446px;
    width: 259px;
  }
}
@media (min-width: 1600px) {
  .catalog-card {
    width: 269px;
  }
}
@media (min-width: 768px) {
  .content-grid.mini-grid .catalog-card {
    width: auto;
    height: 334px;
  }
}
@media (min-width: 1024px) {
  .content-grid.mini-grid .catalog-card {
    width: auto;
    height: 334px;
  }
}
@media (min-width: 1366px) {
  .content-grid.mini-grid .catalog-card {
    width: auto;
    height: 416px;
  }
}
@media (min-width: 1600px) {
  .content-grid.mini-grid .catalog-card {
    width: auto;
    height: 356px;
  }
}
.product-image {
  width: 100%;
  overflow: hidden;
  position: relative;
}
@media (min-width: 1600px) {
  .product-image {
    height: 192px;
    width: 227px;
  }
}
@media (min-width: 1366px) and (max-width: 1600px) {
  .product-image {
    max-width: 100%;
    height: 190px;
  }
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  max-height: 156px;
  max-width: 229px;
}
.product-tags {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-tag {
  padding: 8px;
  border-radius: 30px;
  font-size: 12px;
  line-height: 14px;
  font-weight: 700;
  width: fit-content;
}
.product-tag.hit {
  color: #DCBE19;
  background-color: #FFFDD0;
}
.product-tag.sale {
  color: #E35539;
  background-color: #FFD8D0;
}
.product-tag.discount {
  color: #5FB942;
  background-color: #D3FFC5;
}
.product-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100px;
}
.product-info__name {
  display: block;
  width: 100%;
  height: 54px;
  font-family: "PB";
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}
@media (max-width: 575px) {
  .product-info__name {
    font-size: 14px;
    line-height: 16px;
    height: 48px;
  }
}
.product-props {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.product-props__item {
  display: block;
  padding: 8px;
  border: 2px solid #F0F0F0;
  background-color: #F0F0F0;
  color: #212529;
  font-size: 12px;
  line-height: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
@media (max-width: 575px) {
  .product-props__item {
    font-size: 11px;
    line-height: 13px;
    padding: 6px;
  }
}
.product-props__item.checked {
  background-color: #FFFFFF;
  border-color: #D30F0E;
  cursor: default;
}
.product-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-price {
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  font-family: "PB";
}
@media (max-width: 575px) {
  .product-price {
    font-size: 16px;
    line-height: 18px;
  }
}
@media (max-width: 1366px) {
  .product-price {
    font-size: 21px;
  }
}
.product-values {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.product-counter {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  height: 40px;
  max-height: 40px;
  flex: 1;
  min-width: 0;
  background-color: #F0F0F0;
}
@media (max-width: 767px) {
  .product-counter {
    display: none;
  }
}
.product-counter__btn {
  height: 12px;
  cursor: pointer;
  color: #838383;
  background: transparent;
  border: none;
}
.product-counter__input {
  width: 100%;
  text-align: center;
  border: none;
  outline: none;
  font-size: 12px;
  line-height: 14px;
  font-weight: 700;
  background-color: transparent;
}
.product-btn {
  height: 40px;
  background-color: #D30F0E;
  cursor: pointer;
  border: none;
  outline: none;
}
@media (min-width: 1024px) {
  .product-btn {
    width: 88px;
  }
}
@media (max-width: 1365px) {
  .product-btn {
    width: 64px;
  }
}
@media (max-width: 767px) {
  .product-btn {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .content-grid.mini-grid .product-btn {
    width: 40px;
  }
}
.product-select {
  position: relative;
  width: 100%;
}
.product-select__main {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  border: 2px solid #E3E3E3;
  cursor: pointer;
}
.product-select__active {
  font-size: 12px;
  line-height: 14px;
  font-weight: 700;
}
.product-select__list {
  display: none;
}
.product-select__list.open {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding: 12px;
  background-color: #FFFFFF;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 142px;
  overflow: auto;
}
.product-select__list-item {
  font-size: 12px;
  line-height: 14px;
  font-weight: 700;
  cursor: pointer;
}
.product-more {
  text-align: center;
  padding: 13px 26px;
  background-color: #F3F3F3;
  width: 100%;
  cursor: pointer;
  font-size: 12px;
  line-height: 14px;
  font-weight: 700;
}
.content-pagination {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
}
.pagination-prev-btn,
.pagination-next-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  background-color: #F0F0F0;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.pagination-prev-btn:hover,
.pagination-next-btn:hover {
  background-color: #D30F0E;
  color: #FFFFFF;
}
.pagination-page {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: #F0F0F0;
  color: #212529;
  font-size: 12px;
  line-height: 14px;
  font-weight: 700;
}
.pagination-page.active-page {
  background-color: #D30F0E;
  color: #FFFFFF;
}
.catalog-page-description {
  padding-top: 32px;
  border-top: 1px solid #F0F0F0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.filter-btn {
  width: 268px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  color: #212529;
  font-size: 18px;
  line-height: 21px;
  font-family: "PB";
  font-weight: 700 !important;
  user-select: none;
  pointer-events: none;
}
@media (max-width: 1366px) {
  .filter-btn {
    width: 260px;
  }
}
@media (max-width: 1024px) {
  .filter-btn {
    width: 240px;
  }
}
@media (max-width: 992px) {
  .filter-btn {
    user-select: unset;
    pointer-events: unset;
    width: fit-content;
  }
}
@media (max-width: 575px) {
  .filter-btn {
    font-size: 16px;
    line-height: 18px;
    gap: 12px;
  }
}
.sort-field {
  position: relative;
}
@media (max-width: 575px) {
  .sort-field {
    display: none;
  }
}
.m__sort-field {
  display: none;
}
@media (max-width: 575px) {
  .m__sort-field {
    display: block;
  }
}
.sort-field__main {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  width: fit-content;
  position: relative;
  cursor: pointer;
  padding-right: 30px;
}
@media (max-width: 575px) {
  .sort-field__main {
    gap: 12px;
    padding-right: 20px;
  }
}
.sort-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.sort-field__name {
  font-size: 18px;
  line-height: 21px;
  font-family: "PB";
  font-weight: 700;
}
@media (max-width: 575px) {
  .sort-field__name {
    font-size: 16px;
    line-height: 18px;
  }
}
.sort-field__list {
  display: none;
}
.sort-field__list.open {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  position: absolute;
  top: calc(100% + 4px);
  background-color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 999;
}
.sort-field__list-item {
  font-size: 18px;
  line-height: 21px;
  font-weight: 400;
  color: #212529;
  cursor: pointer;
  white-space: nowrap;
}
.custom-checkbox {
  position: absolute;
  opacity: 0;
}
.custom-checkbox + label {
  display: inline-flex;
  align-items: center;
  user-select: none;
  cursor: pointer;
  width: 100%;
}
.custom-checkbox + label::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  flex-grow: 0;
  background-color: #E3E3E3;
  margin-right: 12px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}
.custom-checkbox:checked + label::before {
  background-color: #D30F0E;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}
.filter-item__label-content {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 4px;
  width: 100%;
  padding-right: 16px;
}
.filter-item__label-content.empty {
  user-select: none;
  cursor: default;
}
.filter-item__label-content.empty .filter-item__name {
  color: #E3E3E3;
}
.filter-item__label-content.empty .filter-item__line,
.filter-item__label-content.empty .filter-item__value {
  display: none;
}
.filter-item__name {
  display: block;
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  flex-shrink: 0;
  width: fit-content;
  max-width: 85%;
}
.filter-item__line {
  display: block;
  width: 100%;
  height: 1px;
  background-image:
    repeating-linear-gradient(
      to right,
      #E3E3E3 0,
      #E3E3E3 2px,
      transparent 2px,
      transparent 3px);
}
.filter-item__value {
  display: block;
  width: fit-content;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  color: #838383;
  flex-shrink: 0;
}
.filter-item__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  max-height: 246px;
  height: fit-content;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
  transform: translateZ(0);
}
.filter-item__item {
  cursor: pointer;
}
.filter-item__list::-webkit-scrollbar {
  width: 4px;
  background-color: #E3E3E3;
}
.filter-item__list::-webkit-scrollbar-thumb {
  background-color: #838383;
}
.filter-item__list::-webkit-scrollbar-track {
  background-color: #E3E3E3;
}
.filter-item__search {
  width: 100%;
  position: relative;
}
.filter-item__search input {
  width: 100%;
  padding: 13px 42px 13px 12px;
  outline: none;
  appearance: none;
  border: 1px solid #E3E3E3;
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  color: #212529;
}
.filter-item__search input::placeholder {
  color: #838383;
}
.filter-item__item input {
  width: 15px;
  height: 15px;
}
.filter-search__btn {
  display: block;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  color: #E3E3E3;
  transition: 0.2s ease-in-out;
}
.filter-search__btn:hover {
  color: #212529;
}
.filter-item__content {
  margin-top: 20px;
}
.filter-item {
  padding: 20px 0;
  border-top: 1px solid #F0F0F0;
}
summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  font-size: 18px;
  line-height: 21px;
  font-weight: 700;
}
summary::-webkit-details-marker {
  display: none;
}
.filter-item summary {
  width: 100%;
  padding-right: 20px;
}
.arrow {
  display: block;
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  width: 12px;
  height: 8px;
  background-image: url("/assets/arrow-filter-3c01763f.png");
  background-position: center;
  background-repeat: no-repeat;
}
details[open] summary::before {
  transform: translateY(-50%) rotate(0);
}
.filter-select {
  position: relative;
}
.filter-select__field {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  width: 100%;
  padding: 13px 12px;
  border: 1px solid #E3E3E3;
  cursor: pointer;
}
.filter-select__list {
  display: none;
}
.filter-select__list.open {
  display: flex;
  flex-direction: column;
  padding: 20px 12px;
  gap: 20px;
  background-color: #FFFFFF;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.filter-select__list-item {
  display: block;
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
  cursor: pointer;
}
.rs-container {
  font-family: "Play", sans-serif;
}
.rs-container .rs-scale {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: calc(100% - 20px);
  top: 0;
}
.rs-container .rs-scale span:first-child,
.rs-container .rs-scale span:last-child {
  display: block;
}
.rs-container .rs-scale span {
  display: none;
}
.rs-container .rs-bg,
.rs-container .rs-selected {
  background-color: #F0F0F0;
  height: 4px;
  top: 6px;
}
.rs-container .rs-selected {
  background-color: #D30F0E;
  border: 1px solid #D30F0E;
}
.rs-container .rs-pointer {
  width: 16px;
  height: 16px;
  background-color: #FFFFFF;
  border: 2px solid #D30F0E;
  border-radius: 50%;
  cursor: pointer;
}
.rs-container .rs-pointer:before {
  display: none;
}
.rs-container .rs-pointer:after {
  display: none;
}
.rs-container .rs-scale span ins {
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  color: #838383;
}
.filter-inputs {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-bottom: 24px;
}
.filter-inputs span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 3px;
}
.filter-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #E3E3E3;
  font-size: 16px;
  line-height: 18px;
  appearance: none;
  outline: none;
}
.btn {
  border-radius: 0% !important;
  width: 100%;
  padding: 12px 20px;
  text-align: center;
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}
.btn.black-btn {
  background-color: #212529;
  border: 1px solid #212529;
  color: #FFFFFF;
}
.btn.transparent-btn {
  background-color: transparent;
  border: 1px solid #838383;
  color: #838383;
}
.content-row {
  display: none;
  flex-direction: column;
  width: 100%;
}
.product-item {
  display: flex;
  flex-direction: row;
  gap: 24px;
  width: 100%;
  padding: 24px 0;
  border-bottom: 1px solid #F0F0F0;
}
@media (max-width: 768px) {
  .product-item {
    gap: 20px;
  }
}
.product-item .product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border: 1px solid #E3E3E3;
  flex-shrink: 0;
  overflow: hidden;
}
.product-item__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}
@media (max-width: 768px) {
  .product-item__content {
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .product-item__content {
    flex-direction: column;
    gap: 8px;
  }
}
.product-item__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.product-item .product-info__name {
  height: auto;
  width: fit-content;
}
.product-item__props {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 645px;
  width: 100%;
}
@media (max-width: 640px) {
  .product-item__props {
    max-width: unset;
  }
}
.product-item__props-item {
  display: block;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
}
.product-item .product-select {
  max-width: 180px;
  width: 100%;
  flex-shrink: 0;
  height: fit-content;
}
@media (max-width: 768px) {
  .product-item .product-select {
    max-width: 140px;
  }
}
@media (max-width: 640px) {
  .product-item .product-select {
    max-width: 160px;
  }
}
.product-item .product-select__main {
  height: 40px;
}
.product-item__tags {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.product-item .product-btn {
  width: 160px;
  text-align: center;
  padding: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}
.product-btn__text {
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  color: #FFFFFF;
}
.product-item .product-props {
  max-width: 180px;
  width: 100%;
  flex-shrink: 0;
  height: fit-content;
}
@media (max-width: 768px) {
  .product-item .product-props {
    max-width: 140px;
  }
}
@media (max-width: 640px) {
  .product-item .product-props {
    max-width: unset;
  }
}
.product-item .product-props__item {
  height: 40px;
  line-height: 24px;
}
.mobile-filter {
  display: none;
}
.mobile-filter.open {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100svh;
  max-width: 308px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background-color: #FFFFFF;
  z-index: 9999;
}
.mobile-filter__content {
  overflow-y: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
  transform: translateZ(0);
  flex: 1;
}
.mobile-filter__content::-webkit-scrollbar {
  display: none;
}
.mobile-filter.open::-webkit-scrollbar {
  display: none;
}
@media (max-width: 767px) {
  body.shaded {
    margin-top: 0px !important;
  }
  .mobile-filter.open {
    max-width: 100%;
    top: 40px;
    height: calc(100svh - 40px);
    padding-bottom: 0;
  }
  .mobile-filter__content {
    padding-bottom: 0;
  }
  .mobile-filter.open .black-btn {
    width: 100%;
    margin: 12px 0 !important;
    border-radius: 4px;
    padding: 16px 20px;
    flex-shrink: 0;
  }
}
.mobile-filter__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
}
.btn-remove {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  font-size: 12px;
  line-height: 14px;
  font-weight: 700;
  text-decoration: underline;
  color: #838383;
  font-family: "PB";
}
.btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: transparent;
  height: 14px;
  width: 14px;
  border: none;
}
.mobile-sort {
  display: none;
}
.mobile-sort.open {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #FFFFFF;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-sort__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
.mobile-sort__title {
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
}
.mobile-sort__close {
  width: 14px;
  height: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-sort__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-sort__item {
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
}
.mobile-sort__item.selected {
  color: #D30F0E;
}
.mobile-sort__hr {
  display: block;
  width: 100%;
  height: 1px;
  border: 1px solid #F0F0F0;
}
.mobile-filter__header h3 {
  font-size: 1.17em;
  font-family: "PB";
}
.filter-item summary {
  font-family: "PB";
}
.btn {
  z-index: 1;
}
.mobile-filter label {
  margin-bottom: 0px;
}
.catalog-page-description h2 {
  font-weight: 700;
  font-style: Bold;
  line-height: 115%;
  letter-spacing: 0%;
  font-size: 16px !important;
}
.catalog-page-description p {
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
}
.catalog-page-description ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}
.catalog-page-description li {
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  position: relative;
  padding-left: 16px;
}
.catalog-page-description li:after {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #838383;
}
.products {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
.product-preview {
  border: 1px solid #CCCCCC;
  width: 264px;
  height: 464px;
  margin-bottom: 30px;
  padding: 66px 24px 24px;
  position: relative;
  opacity: 1;
  visibility: visible;
  transition: border 0.3s, opacity 0.3s;
}
.product-preview:hover {
  border-color: #000000;
}
.product-preview__variants {
  position: absolute;
  width: 100%;
  padding: 10px 20px;
  top: 0;
  left: 0;
  z-index: 2;
}
.product-preview__variants-horizontal {
  display: flex;
}
.product-preview__variant {
  margin: 4px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  position: relative;
}
.product-preview__variant:hover .product-preview__variant-popover {
  opacity: 1;
  visibility: visible;
}
.product-preview__variant.active > .product-preview__variant-image {
  opacity: 0.3;
}
.product-preview__variant-popover {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  background: #000000;
  font-family: "PB", sans-serif;
  font-size: 12px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  text-align: center;
  height: 40px;
  width: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -44px;
  border-radius: 3px;
  z-index: 2;
}
.product-preview__variant-popover:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  border-color: #000 transparent transparent transparent;
  position: absolute;
  left: 50%;
  margin-left: -4px;
  bottom: -4px;
}
.product-preview__variant-image {
  width: 100%;
  height: 100%;
  background: url("/assets/nophoto-d56e567b.png") center center no-repeat;
  background-size: contain;
}
.product-preview__info {
  display: none;
}
.product-preview__info.active {
  display: block;
}
.product-preview__info-image {
  display: flex;
  align-items: flex-end;
  height: 194px;
  background: url("/assets/nophoto-d56e567b.png") center center no-repeat;
  background-size: contain;
  text-decoration: none !important;
}
.product-preview__in-stock {
  color: #D30F0E;
  font-family: "PB", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  width: 64px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  text-align: center;
  background: #FFEE00;
}
.product-preview__info-name {
  margin: 20px 0;
  font-family: "PB", sans-serif;
  font-size: 16px;
  min-height: 38px;
  max-height: 38px;
  overflow: hidden;
  color: #000;
  display: block;
}
.product-preview__info-name:hover {
  color: #000;
  text-decoration: none;
}
.product-preview__info-price {
  font-family: "PB", sans-serif;
  font-size: 24px;
  min-height: 28px;
}
.product-preview__delivery-time {
  position: absolute;
  top: -20px;
  left: 0;
  line-height: 1em;
  font-size: 12px;
  color: #999;
}
.product-preview__actions {
  display: flex;
  margin-top: 30px;
  user-select: none;
  position: relative;
}
.product-preview__cart-button {
  font-family: "PB", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  background: #D30F0E;
  border: medium none;
  outline: medium none;
  color: #fff;
  width: 126px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
  user-select: none;
  z-index: 3;
}
.product-preview__cart-button:hover {
  background: #FF3D3D;
}
.product-preview__cart-button-preorder {
  background: #C6C6C6;
}
.product-preview__cart-button-preorder:hover {
  background: #aaa;
}
@media (max-width: 767px) {
  .products .product-preview {
    margin-right: 0;
    width: 100%;
  }
  .products .product-preview__cart-button {
    width: 50%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .products .product-preview {
    max-width: 320px;
    width: 100%;
    margin-right: 30px;
    margin-bottom: 30px;
    flex: 1 1 264px;
  }
  .products .product-preview:nth-child(2n+2) {
    margin-right: 0;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .products .product-preview:nth-child(2n+2) {
    margin-right: 0;
  }
}
@media (min-width: 1366px) and (max-width: 1599px) {
  .products .product-preview:nth-child(3n+3) {
    margin-right: 0;
  }
}
html {
  scroll-padding-top: 72px;
}
.product {
  font-family: "PR", sans-serif;
}
.product__laptop-title {
  font-size: 36px;
  font-weight: bold;
  display: none;
  margin-bottom: 24px;
}
.product__mobile-title {
  display: block;
}
.product__content {
  display: flex;
  column-gap: 32px;
  width: 100%;
  flex-direction: column;
}
.product__category-title {
  color: #212529;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 24px;
}
.product__image-wrapper {
  max-width: 530px;
  flex: 0 0 45%;
  width: 100%;
  justify-content: center;
  display: flex;
  margin-bottom: 32px;
}
.product__characteristics-wrapper {
  order: 3;
  margin-bottom: 32px;
}
.product__actions-wrapper {
  margin-bottom: 32px;
}
.product__actions-wrapper .similar-product-laptop-wrapper {
  display: none;
}
.product__image {
  border: 1px solid #E3E3E3;
  width: 437px;
  height: 437px;
  display: flex;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin-bottom: 32px;
}
.product__show-more-wrapper {
  margin-bottom: 32px;
}
.product__show-more {
  max-height: 198px;
  overflow-y: hidden;
  margin-bottom: 8px;
}
.product__show-more-expanded {
  max-height: unset !important;
  transition: all 3s ease-in;
}
.product__show-more-button {
  color: #838383;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.product__description-feature {
  margin-top: 40px;
  font-size: 18px;
}
.product__subtitle {
  margin-top: 40px;
  color: #7F7F7F;
  font-size: 18px;
}
.product__read-more {
  margin-top: 20px;
  font-size: 18px;
  font-family: "PB", sans-serif;
  color: #D20F0D;
  text-decoration: underline;
}
.product__price {
  color: #212529;
  font-weight: bold;
  font-size: 36px;
  margin-bottom: 38px;
}
.product__variants-wrapper {
  font-family: "PB", sans-serif;
  font-size: 18px;
  margin-bottom: 40px;
}
.product__variants {
  display: flex;
}
.product__variants-label {
  margin-bottom: 24px;
}
.product__variants-links {
  display: flex;
  column-gap: 8px;
}
.product__variants-links a {
  font-size: 12px;
  border: 2px solid #F0F0F0;
  background: #F0F0F0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  padding: 14px;
}
.product__variants-links a.active {
  border: 2px solid #D30F0E;
  background: #fff;
}
.product__details-content-text {
  font-size: 18px;
  line-height: 1.5em;
}
.product__page-description {
  margin-top: 30px;
}
.product__specifications {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.product__specifications-wrapper {
  display: flex;
  align-items: center;
  background-color: #F7F7F7;
  color: #212529;
  cursor: pointer;
  font-size: 18px;
  border-radius: 100px;
  padding: 24px 24px 24px 24px;
}
.product__specifications-wrapper #product-spec-icon {
  stroke: #838383;
}
.product__specifications-wrapper #product-qmark-icon {
  fill: #838383;
}
.product__specifications-wrapper:hover {
  color: #D30F0E;
}
.product__specifications-wrapper:hover #product-spec-icon {
  stroke: #D30F0E;
}
.product__specifications-wrapper:hover #product-qmark-icon {
  fill: #D30F0E;
}
.product__specifications-spec-name {
  margin: 0 24px;
}
.product__files {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}
.product__files__file-wrapper {
  cursor: pointer;
  display: flex;
  font-weight: bold;
  flex: 0 1 calc(50% - 32px);
  justify-content: space-between;
  color: #838383;
  background-color: #F7F7F7;
  padding: 24px;
  position: relative;
}
.product__files__file-wrapper:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  left: 0;
}
.product__files__file-name {
  margin-bottom: 16px;
  font-family: "PB", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 18.4px;
}
.product__files__file-name a {
  color: #212529;
}
.product__files__file-extension {
  color: #fff;
  background: #838383;
  padding: 8px 12px;
}
.product__files__file-actions {
  position: relative;
  display: flex;
  gap: 24px;
}
.product__files__download {
  visibility: hidden;
  color: #D30F0E;
}
.product__files__download span {
  mask: url("/assets/product/eye-c131409c.svg") no-repeat;
  mask-position: bottom left;
  mask-size: contain;
  background-color: #D30F0E;
  display: inline-block;
  height: 14px;
  width: 14px;
  margin-right: 4px;
}
.product__files .product__files__file-wrapper.hover .product__files__file-name a {
  color: #D30F0E;
  text-decoration: none;
}
.product__files .product__files__file-wrapper.hover .product__files__file-extension {
  background: #D30F0E;
}
.product__files .product__files__file-wrapper.hover .product__files__download {
  visibility: visible;
}
.product__shipping-payments-content-wrapper {
  padding: 24px 24px 24px 132px;
  position: relative;
  margin-bottom: 24px;
}
.product__shipping-payments-content-wrapper:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  left: 0;
  top: 52px;
}
.product__shipping-payments {
  margin-bottom: 32px;
}
.product__shipping-payments-shipping {
  background: url("/assets/product/delivery-79e3083d.svg") 24px 24px no-repeat #F0F0F0;
}
.product__shipping-payments-payment {
  background: url("/assets/product/payment-e2ec6365.svg") 24px 24px no-repeat #F0F0F0;
}
.product__characteristics {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product__characteristics__element {
  display: flex;
  column-gap: 24px;
  border-bottom: 1px solid #E3E3E3;
  padding-bottom: 16px;
}
.product__characteristics__element-name {
  color: #838383;
  font-family: "PB", sans-serif;
  font-weight: bold;
  display: flex;
  flex: 0 0 50%;
  justify-content: space-between;
}
.product__detailed-info {
  display: flex;
  flex-direction: row;
  column-gap: 32px;
}
.product__text-content {
  flex: 0 0 100%;
}
.product__detailed-menu {
  display: none;
}
.product__detailed-menu a {
  display: flex;
  align-items: center;
  flex-direction: row;
  column-gap: 16px;
  color: #212529;
  text-decoration: none;
  border-bottom: 1px solid #E3E3E3;
  padding: 24px 0 24px 0;
}
.product__detailed-menu a svg {
  stroke: #212529;
}
.product__detailed-menu a:hover {
  color: #D30F0E;
  border-bottom: 1px solid #D30F0E;
}
.product__detailed-menu a:hover svg {
  stroke: #D30F0E;
}
.product__detailed-menu-sticky {
  position: sticky;
  top: 60px;
  margin-bottom: 32px;
}
.product .similar-product-mobile-wrapper {
  width: 100%;
}
.product .similar-product-slider {
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .product__laptop-title {
    display: none;
  }
  .product__mobile-title {
    display: block;
  }
  .product__content {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .product__image-wrapper {
    height: 287px;
    flex: 0 0 46%;
  }
  .product__image {
    width: 100%;
    height: auto;
  }
  .product__actions-wrapper {
    flex: 0 0 48%;
  }
  .product__characteristics-wrapper {
    flex: 0 0 100%;
  }
  .product__category-title {
    font-size: 22px;
  }
  .product__characteristics__element {
    font-size: 14px;
  }
  .product__description {
    padding-left: 0;
  }
  .product__files {
    flex-direction: row;
  }
}
@media (min-width: 1024px) and (max-width: 1366px) {
  .product__laptop-title {
    display: none;
  }
  .product__mobile-title {
    display: block;
  }
  .product__category-title {
    font-size: 22px;
  }
  .product__characteristics__element {
    font-size: 14px;
  }
  .product__content {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .product__image-wrapper {
    height: 498px;
    flex: 0 0 48%;
  }
  .product__image {
    width: 100%;
    height: auto;
  }
  .product__price {
    margin-bottom: 12px;
  }
  .product__variants-label {
    margin-bottom: 12px;
  }
  .product__variants-wrapper {
    margin-bottom: 16px;
  }
  .product__actions-wrapper {
    flex: 0 0 48%;
    margin-bottom: 0;
  }
  .product__characteristics-wrapper {
    flex: 0 0 100%;
  }
  .product__description {
    padding-left: 0;
  }
  .product__files {
    flex-direction: row;
  }
  .product__files {
    flex-direction: row;
  }
  .product .similar-product-mobile-wrapper {
    display: none;
  }
  .product .similar-product-laptop-wrapper {
    display: block;
    margin-top: 16px;
    width: 408px;
  }
}
@media (min-width: 1366px) {
  .product__laptop-title {
    display: block;
  }
  .product__mobile-title {
    display: none;
  }
  .product__category-title {
    font-size: 24px;
  }
  .product__characteristics__element {
    font-size: 16px;
  }
  .product__content {
    flex-direction: row;
  }
  .product__image-wrapper {
    height: 498px;
    flex: 0 0 348px;
  }
  .product__image {
    height: 498px;
    width: 100%;
  }
  .product__characteristics-wrapper {
    flex: 1 0 32%;
    order: unset;
  }
  .product__actions-wrapper {
    flex: 0 0 32%;
  }
  .product__text-content {
    flex: 0 0 67%;
  }
  .product__detailed-menu {
    display: block;
    flex: 0 0 30%;
  }
  .product__files {
    flex-direction: row;
  }
  .product .similar-product-laptop-wrapper {
    display: block;
    margin-top: 42px;
    width: 360px;
  }
  .product .similar-product-mobile-wrapper {
    display: none;
  }
}
@media (min-width: 1600px) {
  .product__laptop-title {
    display: block;
  }
  .product__mobile-title {
    display: none;
  }
  .product__image-wrapper {
    height: 498px;
    flex: 0 0 32%;
  }
  .product__image {
    height: 498px;
    width: 500px;
  }
  .product__actions-wrapper {
    flex: 0 0 360px;
  }
  .product__text-content {
    flex: 1 0 70%;
  }
  .product__detailed-menu {
    display: block;
    flex: 0 0 360px;
  }
}
.swiper-container {
  overflow: hidden;
  position: relative;
}
.swiper-slide {
  padding-right: 20px;
}
.swiper-slide .product-preview {
  width: 100%;
}
.swiper-pagination-bullets {
  width: 100%;
  height: 24px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  bottom: -8px !important;
}
.swiper-pagination-bullet {
  background: #E6E6E6;
  text-indent: -99999px;
  border: none;
  width: 14px;
  height: 14px;
  cursor: pointer;
  transition: 0.3s;
  margin: 10px;
  border-radius: 0 !important;
}
.swiper-pagination-bullet-active {
  background: #D30F0E;
}
.noUi-pips-horizontal {
  z-index: 0;
  pointer-events: none;
}
.noUi-base {
  width: 95%;
}
.noUi-target {
  padding-left: 7px !important;
  padding-right: 4px;
}
.mobile-filter .noUi-pips-horizontal .noUi-value-horizontal:nth-child(2) {
  transform: translate(0%, 50%);
}
.mobile-filter .noUi-pips-horizontal .noUi-value-horizontal:last-child {
  transform: translate(-100%, 50%);
}
.personal-title {
  line-height: 1.5em;
  font-size: 30px;
  font-family: "PB", sans-serif;
  padding-bottom: 10px;
  position: relative;
  margin-bottom: 30px;
}
.personal-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  background: #D30F0E;
  width: 50px;
}
.personal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 90px;
}
.personal__description-title {
  font-size: 24px;
  font-family: "PB", sans-serif;
  position: relative;
  margin-bottom: 20px;
}
.personal__description-text {
  line-height: 1.4em;
  font-size: 16px;
  margin-bottom: 40px;
}
.personal__managers-contact-us {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.personal__manager-wrapper {
  background: #F4F4F4;
  padding: 24px 24px 0 24px;
}
.personal__manager-wrapper:last-of-type .personal__manager {
  border-bottom: medium none;
}
.personal__manager {
  border-bottom: 1px solid #E0E0E0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 24px;
}
.personal__manager-photo {
  flex: 1 0 25%;
  margin-bottom: 24px;
}
.personal__manager-photo img {
  height: 80px;
  width: 80px;
}
.personal__manager-contacts {
  flex: 1 0 70%;
  white-space: nowrap;
  margin-bottom: 24px;
}
.personal__manager-name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 4px;
}
.personal__manager-phone {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 4px;
}
.personal__manager-phone a {
  color: #1c2324;
}
.personal__manager-email {
  font-size: 18px;
}
.personal__manager-email a {
  color: #bdbdbd;
}
.personal__manager-call {
  align-items: center;
  display: flex;
  text-transform: uppercase;
}
.personal__manager-call a {
  background: url("/assets/phone_contacts-479304d1.svg") 20px center no-repeat;
  border: 1px solid #bdbdbd;
  color: #bdbdbd;
  display: block;
  padding: 12px 20px 12px 70px;
  transition: 0.3s;
  height: 48.5px;
  width: 173px;
}
.personal__manager-call a:hover {
  color: #D30F0E;
  border: 1px solid #D30F0E;
  background: url("/assets/phone-ffb728bd.svg") 20px center no-repeat;
}
.personal__attributes {
  display: flex;
  flex-direction: column;
}
.personal__attribute {
  display: flex;
  flex-direction: row;
  margin-bottom: 30px;
}
.personal__attribute-name {
  font-weight: bold;
  width: 160px;
}
.personal__attribute-value {
  width: auto;
}
.presence-card__title {
  line-height: 1.5em;
  font-size: 30px;
  font-family: "PB", sans-serif;
  padding-bottom: 10px;
  position: relative;
}
.presence-card__title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  background: #D30F0E;
  width: 50px;
}
.presence-card__description {
  margin-top: 30px;
  line-height: 1.4em;
  font-size: 16px;
}
.presence-card__map-container {
  margin-top: 60px;
}
.presence-card__map {
  height: 560px;
}
@media (max-width: 767px) {
  .personal {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .personal__description {
    width: 100%;
  }
  .personal__description-title {
    font-size: 24px;
    line-height: 1.2em;
  }
  .personal__description-text {
    line-height: 1.3em;
  }
}
@media (min-width: 768px) {
  .personal {
    flex-direction: column;
    margin-bottom: 60px;
  }
  .personal__manager {
    flex-wrap: nowrap;
  }
  .personal__manager-photo {
    flex: 0 0 auto;
    margin-right: 24px;
    margin-bottom: 0;
  }
  .personal__manager-contacts {
    white-space: nowrap;
    flex: 1 0 auto;
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .personal {
    flex-direction: column;
    margin-bottom: 60px;
  }
  .personal__manager-wrapper {
    padding: 30px 40px 0 40px;
  }
  .personal__manager {
    padding-bottom: 30px;
  }
}
@media (min-width: 1366px) and (max-width: 1599px) {
  .personal {
    flex-direction: row;
  }
  .personal__description {
    padding-right: 40px;
  }
  .personal__managers {
    flex: 1 0 56%;
  }
  .personal__manager-wrapper {
    padding: 30px 40px 0 40px;
  }
  .personal__manager {
    padding-bottom: 30px;
  }
  .personal__manager-photo {
    margin-right: 40px;
  }
  .personal__manager-contacts {
    flex-grow: 1;
  }
}
@media (min-width: 1600px) {
  .personal {
    flex-direction: row;
    margin-bottom: 60px;
  }
  .personal__description {
    padding-right: 60px;
  }
  .personal__manager-wrapper {
    padding: 30px 40px 0 40px;
  }
  .personal__manager {
    padding-bottom: 30px;
  }
  .personal__manager-photo {
    margin-right: 40px;
  }
  .personal__manager-contacts {
    flex-grow: 1;
    margin-right: 40px;
  }
}
.frontpage-products {
  margin-top: 24px;
  margin-bottom: 60px;
}
.frontpage-products__title {
  font-size: 40px;
  font-family: "PB", sans-serif;
  margin-bottom: 24px;
}
.frontpage-slide img {
  height: auto;
  width: 100%;
}
@media (max-width: 767px) {
  .frontpage-products__title {
    font-size: 30px;
  }
}
.frontpage-categories {
  display: inline-flex;
  flex-flow: row wrap;
  gap: 2%;
}
.frontpage-categories__item {
  flex-grow: 1;
  font-size: 22px;
  font-weight: bold;
  width: 18%;
  height: 265px;
  background-color: #F0F0F0;
  background-repeat: no-repeat;
  background-position-x: 80%;
  background-position-y: 80%;
  background-size: 50%;
  border-bottom: 5px solid #D30F0E;
  padding: 32px 36px;
  margin-bottom: 28px;
  position: relative;
}
.frontpage-categories__item:hover {
  background-color: #D30F0E;
}
.frontpage-categories__item:hover .frontpage-categories__link {
  color: #fff;
}
.frontpage-categories__item:nth-child(1),
.frontpage-categories__item:nth-child(6) {
  width: 40%;
}
.frontpage-categories__item:nth-child(6) {
  background-size: initial;
}
.frontpage-categories__link {
  color: #000;
  text-decoration: none;
}
.frontpage-categories__link:hover {
  color: #000;
  text-decoration: none;
}
.frontpage-categories__link:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}
@media (max-width: 767px) {
  .frontpage-categories {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .frontpage-categories__item {
    width: 45%;
  }
  .frontpage-categories__item:nth-child(1),
  .frontpage-categories__item:nth-child(6) {
    width: 45%;
  }
  .frontpage-categories__item:nth-child(1) {
    background-position-y: 80%;
    background-size: 80%;
  }
}
@media (min-width: 1024px) and (max-width: 1366px) {
  .frontpage-categories__item {
    width: 30%;
  }
  .frontpage-categories__item:nth-child(1),
  .frontpage-categories__item:nth-child(6) {
    width: 30%;
  }
  .frontpage-categories__item:nth-child(1) {
    background-position-y: 80%;
    background-size: 80%;
  }
}
@media (min-width: 1366px) and (max-width: 1600px) {
  .frontpage-categories__item {
    width: 28%;
  }
  .frontpage-categories__item:nth-child(1) {
    width: 62%;
  }
  .frontpage-categories__item:nth-child(6) {
    width: 28%;
  }
}
.frontpage-brands {
  margin-bottom: 40px;
}
.frontpage-brands h2 {
  font-weight: bold;
}
.frontpage-brands__items {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
}
.frontpage-brands__items:after {
  content: "";
  flex: auto;
}
.frontpage-brands__item {
  display: flex;
  flex: 0 0 calc(19% - 10px);
  border: 1px solid #f0f0f0;
  height: 100px;
  margin-bottom: 24px;
  margin-right: calc(1% + 10px);
  padding: 6px;
}
.frontpage-brands__item:hover {
  border-color: #000;
}
.frontpage-brands__item img {
  display: block;
  width: 100%;
  object-fit: scale-down;
}
@media (max-width: 767px) {
  .frontpage-brands__item {
    height: 50px;
    flex: 0 0 calc(49% - 10px);
    margin-right: calc(1% + 10px);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .frontpage-brands__item {
    height: 80px;
    flex: 0 0 calc(31% - 10px);
    margin-right: calc(2% + 10px);
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .frontpage-brands__item {
    flex: 0 0 calc(24% - 10px);
    margin-right: calc(1% + 10px);
  }
}
.content-wrapper.content-wrapper-frontpage {
  margin-bottom: 0;
}
.frontpage-description-wrapper {
  background-color: #F0F0F0;
  padding: 40px 0;
}
.frontpage-description-wrapper .catalog-page-description {
  margin-top: 0;
}
.cart {
  display: flex;
  justify-content: space-between;
}
.cart__products {
  flex-grow: 1;
  margin-right: 36px;
}
.cart-product {
  width: 100%;
  min-height: 223px;
  position: relative;
  border: 1px solid #E5E5E5;
  padding: 30px;
  margin-top: -1px;
  display: flex;
  align-items: center;
  transition: all 3s ease-out;
}
.cart-product__image {
  width: 180px;
  height: 162px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cart-product__image a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}
.cart-product__image img {
  height: 100%;
  width: auto;
}
.cart-product__info {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
}
.cart-product__name {
  font-size: 24px;
  font-family: "PB", sans-serif;
  padding-left: 30px;
  padding-right: 30px;
  width: 500px;
}
.cart-product__name a {
  color: #000;
}
.cart-product__divider {
  display: flex;
  flex-direction: row;
}
.cart-product__quantity {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.cart-product__quantity .products-number-selector__minus,
.cart-product__quantity .products-number-selector__plus,
.cart-product__quantity .products-number-selector__input {
  width: 30px;
}
.cart-product__remove {
  align-items: center;
  width: 100px;
  display: flex;
  color: #7F7F7F;
  font-size: 16px;
  cursor: pointer;
  margin-left: 30px;
  min-height: 19px;
}
.cart-product__remove a,
.cart-product__remove button {
  color: #7F7F7F;
  display: inline-block;
  padding-left: 26px;
  background: url("/assets/delete-c95b6473.svg") 0 center no-repeat;
}
.cart-product__remove form {
  display: contents;
}
.cart-product__remove button {
  background-color: transparent;
  border: none;
  padding-left: 26px;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  cursor: pointer;
  font-size: inherit;
}
.cart-product__removed {
  transform: translateX(-200%);
  height: 0 !important;
  min-height: 0;
  border: none;
  padding: 0;
  overflow: hidden;
  transition:
    transform 0.5s 0s,
    height 0.4s 0.3s,
    padding 0.4s 0.3s,
    border 0.4s 0.3s,
    min-height 0.4s 0.3s;
}
.cart-form {
  width: 264px;
  background: #F0F0F0;
  padding: 44px 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 auto;
}
.cart-form__goods {
  color: #999999;
  display: flex;
  font-size: 16px;
  width: 100%;
  align-items: baseline;
}
.cart-form__goods:before {
  content: "";
  flex: 1 1 auto;
  order: 2;
  border-bottom: dotted 2px #999;
}
.cart-form__goods-title {
  order: 1;
  padding-right: 7px;
}
.cart-form__goods-count {
  padding-left: 7px;
  order: 3;
}
.cart-form__total {
  display: flex;
  font-size: 16px;
  width: 100%;
  align-items: baseline;
  font-family: "PB", sans-serif;
  margin-top: 20px;
}
.cart-form__total:before {
  content: "";
  flex: 1 1 auto;
  order: 2;
  border-bottom: dotted 2px #000;
}
.cart-form__total-title {
  order: 1;
  padding-right: 7px;
}
.cart-form__total-sum {
  padding-left: 7px;
  order: 3;
  font-size: 18px;
  text-transform: uppercase;
}
.cart-form__user-info {
  margin-top: 40px;
}
.cart-form__user-info input {
  width: 100%;
  height: 36px;
  background: #fff;
  padding: 0 10px;
  display: flex;
  align-content: center;
  align-items: center;
  border: none;
  font-size: 16px;
  margin-bottom: 20px;
}
.cart-form__submit {
  color: #fff;
  transition: background 0.3s;
  background: #D30F0E;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 54px;
  text-transform: uppercase;
  font-family: "PB", sans-serif;
  font-size: 12px;
  cursor: pointer;
  margin-top: 20px;
  border: none;
  position: relative;
}
.cart-form__phone {
  margin-top: 40px;
}
.cart-form__phone-description {
  color: #656565;
  font-size: 12px;
}
.cart-form__phone-link {
  font-size: 16px;
  font-family: "PB", sans-serif;
  margin-top: 10px;
}
.cart-form__phone-link a {
  color: #000;
}
.cart-pig {
  display: none;
  position: absolute;
  z-index: 20;
}
.cart-pig.active {
  display: block;
  position: fixed;
}
@media (max-width: 767px) {
  .cart {
    flex-direction: column;
  }
  .cart__products {
    width: 100%;
    margin-right: 0;
  }
  .cart-product {
    padding: 30px 20px;
    height: auto;
    flex-direction: column;
    min-height: 0;
  }
  .cart-product__info {
    width: 100%;
    flex-direction: column;
  }
  .cart-product__name {
    width: 100%;
    padding: 0;
    margin-top: 30px;
  }
  .cart-product__divider {
    width: 100%;
  }
  .cart-product__divider {
    flex-direction: column;
  }
  .cart-product__quantity {
    margin-top: 30px;
    width: 100%;
  }
  .cart-product__remove {
    margin-left: 0;
    margin-top: 30px;
    width: 100%;
  }
  .cart-form {
    width: 100%;
    margin-top: 50px;
    padding: 30px 20px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .cart {
    flex-direction: column;
  }
  .cart__products {
    width: 100%;
    margin-right: 0;
  }
  .cart-product {
    align-items: start;
  }
  .cart-product__image {
    width: 162px;
    padding-right: 20px;
  }
  .cart-product__info {
    flex-grow: 1;
    padding-left: 20px;
    flex-direction: column;
    align-content: start;
  }
  .cart-product__name {
    width: 100%;
    padding: 0;
    margin-top: 0;
  }
  .cart-product__divider {
    width: 100%;
    flex-direction: column;
  }
  .cart-product__quantity {
    margin-top: 30px;
    width: 100%;
  }
  .cart-product__remove {
    margin-left: 0;
    margin-top: 30px;
    width: 100%;
  }
  .cart-form {
    width: 100%;
    margin-top: 50px;
    padding: 30px 20px;
  }
  .cart-form__divider {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 30px;
    align-items: center;
  }
  .cart-form__submit {
    width: 195px;
    margin-top: 0;
  }
  .cart-form__phone {
    text-align: right;
    margin-top: 0;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .cart {
    flex-direction: column;
  }
  .cart__products {
    width: 100%;
    margin-right: 0;
  }
  .cart-product__name {
    width: 380px;
  }
  .cart-product__divider {
    flex-direction: column;
  }
  .cart-product__quantity {
    width: 100%;
  }
  .cart-product__remove {
    margin-left: 0;
    margin-top: 12px;
    width: 100%;
  }
  .cart-form {
    width: 100%;
    margin-top: 50px;
    height: auto;
    justify-content: flex-end;
    align-items: flex-end;
  }
  .cart-form__info,
  .cart-form__form {
    width: 100%;
  }
  .cart-form__user-info {
    display: flex;
    flex-direction: row;
  }
  .cart-form__user-info input {
    margin-right: 10px;
  }
  .cart-form__user-info input:last-child {
    margin-right: 0;
  }
  .cart-form__divider {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 30px;
    align-items: center;
  }
  .cart-form__submit {
    width: 195px;
    margin-top: 0;
  }
  .cart-form__phone {
    text-align: right;
    margin-top: 0;
  }
}
@media (min-width: 1366px) and (max-width: 1599px) {
  .cart-product__name {
    width: 380px;
  }
  .cart-product__divider {
    flex-direction: column;
  }
  .cart-product__quantity {
    width: 100%;
  }
  .cart-product__remove {
    margin-left: 0;
    margin-top: 12px;
    width: 100%;
  }
}
.products-number-selector {
  display: flex;
  height: 40px;
  justify-content: space-between;
  flex-grow: 1;
}
.products-number-selector__plus,
.products-number-selector__minus {
  transition: 0.3s;
  cursor: pointer;
  width: 33.33%;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  text-align: center;
  background: #F3F3F3;
}
.products-number-selector__plus:hover,
.products-number-selector__minus:hover {
  background: #E3E3E3;
}
.products-number-selector__input {
  width: 33.33%;
  display: flex;
  background: #F3F3F3;
}
.products-number-selector__input input {
  width: 100%;
  border: none;
  background: none;
  font-family: "PB", sans-serif;
  font-size: 14px;
  text-align: center;
  outline: medium none;
}
.products-number-selector__price {
  height: 54px;
  display: flex;
  padding: 0 30px;
  align-items: center;
  font-family: "PB", sans-serif;
  font-size: 18px;
}
.products-number-selector__cart {
  flex: 1;
  height: 54px;
  background: url("/assets/basket_w-d22111e0.svg") 24px center no-repeat #D30F0E;
  transition: 0.3s;
  color: #fff;
  display: flex;
  align-items: center;
  padding-left: 30px;
  text-decoration: none;
  font-family: "PB", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
  z-index: 2;
  position: relative;
  border: medium none;
  outline: medium none;
}
.products-number-selector__total {
  font-size: 18px;
  font-family: "PB", sans-serif;
  text-transform: uppercase;
  margin-left: 12px;
  display: flex;
  align-items: center;
}
.products-number-selector.in-product {
  height: 60px;
  user-select: none;
  column-gap: 16px;
}
.products-number-selector.in-product .products-number-selectors {
  display: flex;
  flex: 0 0 calc(50% - 16px);
  flex-direction: row;
}
.products-number-selector.in-product .products-number-selector__cart {
  height: 60px;
}
.products-number-selector.in-product .products-number-selector__price {
  background-color: #fff;
}
.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  font-size: 14px;
  font-family: "PB", sans-serif;
  list-style: none;
}
.pagination li {
  list-style-type: none;
}
.pagination a {
  display: block;
  color: #000000;
}
.pagination .page-item {
  color: #000000;
  min-height: 32px;
  min-width: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 4px;
}
.pagination .page-item.active {
  background: #D30F0E;
}
.pagination .page-item.active a {
  color: #fff;
}
.pagination .page-item.page-item-next a {
  background: url("/assets/arrow-right-2bce7c27.png") center center no-repeat transparent;
  width: 32px;
  height: 32px;
  text-indent: -10000px;
}
.pagination .page-item.page-item-prev a {
  background: url("/assets/arrow-left-c088f446.png") center center no-repeat transparent;
  width: 32px;
  height: 32px;
  text-indent: -10000px;
}
.user-useful-links {
  list-style: none;
}
.user-useful-links li {
  list-style-type: none;
  padding-bottom: 6px;
}
.user-useful-links li a {
  color: #000;
}
.user-login-form-wrapper {
  position: fixed;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 100;
}
.login-form {
  width: 100%;
  background: #EDEDED;
  padding: 90px 40px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 550px;
}
.login-form__close-button {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 40px;
  top: 34px;
  cursor: pointer;
}
.login-form__close-button:before {
  content: "";
  position: absolute;
  height: 2px;
  width: 40px;
  background: #000;
  top: 0;
  right: 0;
  transform-origin: right center;
  transform: rotate(-45deg);
}
.login-form__close-button:after {
  content: "";
  position: absolute;
  height: 2px;
  background: #000;
  width: 40px;
  bottom: 0;
  right: 0;
  transform-origin: right center;
  transform: rotate(45deg);
}
.login-form h2 {
  font-size: 30px;
  font-family: "PB", sans-serif;
}
.login-form .form-control {
  width: 100%;
  height: 54px;
  background: #DFDFDF;
  padding: 0 20px;
  border: none;
  font-size: 16px;
  margin-top: 30px;
}
.login-form .user_remember_me {
  margin-top: 40px;
  display: flex;
}
.login-form .user_remember_me input {
  display: none;
}
.login-form .user_remember_me input + label {
  padding-left: 30px;
  position: relative;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  align-content: center;
}
.login-form .user_remember_me input + label:before {
  content: "";
  width: 16px;
  height: 16px;
  background: #DFDFDF;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
}
.login-form .user_remember_me input + label:after {
  content: "";
  width: 10px;
  height: 7px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 3px;
  top: 50%;
  margin-top: -3px;
  background: url("/assets/chk-f0c5d0d1.svg") center center no-repeat;
  background-size: contain;
}
.login-form .user_remember_me input:checked + label:before {
  background: #D30F0E;
}
.login-form .user_remember_me input:checked + label:after {
  opacity: 1;
  visibility: visible;
}
.login-form .form-actions {
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
}
.login-form .form-actions input[type=submit] {
  border: none;
  color: #fff;
  background: #D30F0E;
  font-family: "PB", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  justify-content: center;
  display: flex;
  align-content: center;
  min-width: 116px;
  height: 54px;
  cursor: pointer;
  transition: 0.3s;
  flex: 0 0 auto;
}
.login-form .user-useful-links {
  margin-bottom: 0;
}
.user-devise h2 {
  font-size: 30px;
  font-family: "PB", sans-serif;
  margin-bottom: 30px;
}
.user-devise .form-group {
  margin-bottom: 30px;
}
.user-devise .form-group-invalid {
  color: #D30F0E;
}
.user-devise .form-control {
  width: 100%;
  height: 54px;
  background: #DFDFDF;
  padding: 0 20px;
  border: none;
  font-size: 16px;
}
.user-devise .form-control.is-invalid {
  background: rgba(211, 15, 14, 0.231372549);
}
.user-devise .form-actions {
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
}
.user-devise .form-actions input[type=submit] {
  border: none;
  color: #fff;
  background: #D30F0E;
  font-family: "PB", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  justify-content: center;
  display: flex;
  align-content: center;
  height: 54px;
  cursor: pointer;
  transition: 0.3s;
  flex: 0 0 auto;
  padding: 0 20px;
}
.user-devise .form-actions input[type=submit]:hover,
.user-devise .form-actions input[type=submit]:focus {
  background: #FF3D3D;
}
.user-devise .user_remember_me {
  margin-top: 40px;
  display: flex;
}
.user-devise .user_remember_me input {
  display: none;
}
.user-devise .user_remember_me input + label {
  padding-left: 30px;
  position: relative;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  align-content: center;
}
.user-devise .user_remember_me input + label:before {
  content: "";
  width: 16px;
  height: 16px;
  background: #DFDFDF;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
}
.user-devise .user_remember_me input + label:after {
  content: "";
  width: 10px;
  height: 7px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 3px;
  top: 50%;
  margin-top: -3px;
  background: url("/assets/chk-f0c5d0d1.svg") center center no-repeat;
  background-size: contain;
}
.user-devise .user_remember_me input:checked + label:before {
  background: #D30F0E;
}
.user-devise .user_remember_me input:checked + label:after {
  opacity: 1;
  visibility: visible;
}
.user-devise .form-actions {
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
}
.user-devise .form-actions input[type=submit] {
  border: none;
  color: #fff;
  background: #D30F0E;
  font-family: "PB", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  justify-content: center;
  display: flex;
  align-content: center;
  min-width: 116px;
  height: 54px;
  cursor: pointer;
  transition: 0.3s;
  flex: 0 0 auto;
}
.user-devise .alert.alert-danger {
  font-family: "PB", sans-serif;
  background: #FF3D3D;
  padding: 20px;
  color: #fff;
  margin-bottom: 20px;
}
.user-profile-menu {
  display: flex;
  flex-direction: column;
}
.user-profile-menu a {
  text-decoration: none;
  color: #232323;
  transition: color 0.3s ease;
  font-family: "PB", sans-serif;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.user-profile-menu a.active,
.user-profile-menu a:hover {
  color: #D30F0E;
}
.user-wrapper {
  display: flex;
  flex-direction: row;
}
.user-wrapper .user-menu-wrapper {
  width: 264px;
  margin-right: 30px;
  display: none;
}
.user-wrapper .user-devise,
.user-wrapper .user-orders {
  flex-grow: 1;
}
@media (min-width: 1024px) {
  .user-wrapper .user-menu-wrapper {
    display: block;
  }
}
.cart-badge {
  padding: 0 5px;
  background: #D30F0E;
  color: #fff;
  font-size: 12px;
  font-family: "PB", sans-serif;
  position: absolute;
  line-height: 20px;
  top: -27px;
}
.cart-badge:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  border-color: #d30e0e transparent transparent transparent;
  bottom: -4px;
  left: 50%;
  margin-left: -4px;
}
.header-sticky .cart-badge {
  top: unset;
  right: 100%;
  margin-right: 4px;
}
.header-sticky .cart-badge:after {
  border-width: 4px 0 4px 4px;
  border-color: transparent transparent transparent #d30e0e;
  bottom: 50%;
  margin-bottom: -4px;
  left: 100%;
  margin-left: 0;
}
.user-order {
  background-color: #F0F0F0;
  padding: 16px;
  margin-bottom: 16px;
  width: 100%;
}
.user-order__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.user-order__number {
  flex-grow: 1;
}
.user-order__number-value {
  display: flex;
  flex-grow: 1;
  padding-right: 10px;
}
.user-order__number-value:after {
  content: "";
  flex: 1 1 auto;
  border-bottom: dotted 2px #000;
  margin-left: 10px;
  margin-bottom: 2px;
}
.user-order__address {
  margin-bottom: 12px;
}
.user-order__info {
  display: flex;
  margin-bottom: 16px;
}
.user-order__info div {
  margin-right: 16px;
}
.user-order__status {
  display: flex;
  align-items: center;
}
.user-order__status::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 5px;
  margin-right: 6px;
}
.user-order__status.user-order__status-new::before {
  background-color: #ffc107;
}
.user-order__status.user-order__status-in_processing::before {
  background-color: #007bff;
}
.user-order__status.user-order__status-completed::before {
  background-color: #28a745;
}
.user-order__status.user-order__status-canceled::before {
  background-color: #dc3545;
}
.user-order-container {
  width: 100%;
}
@media (max-width: 406px) {
  .user-order__info {
    flex-direction: column;
  }
}
.not-found {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 600px;
  padding: 130px 0 70px;
}
.not-found__image {
  width: 600px;
  transform: translate(12%, 0px);
}
.not-found__image img {
  width: 100%;
}
.not-found__text {
  font-size: 18px;
  text-align: center;
}
.not-found__link a {
  color: #fff;
  transition: 0.3s;
  background: #D30F0E;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  width: 196px;
  height: 54px;
  text-transform: uppercase;
  font-family: "PB", sans-serif;
  font-size: 12px;
}
.not-found__link a:hover,
.not-found__link a:focus {
  background: #FF3D3D;
  text-decoration: none;
}
@media (max-width: 767px) {
  .not-found {
    min-height: 300px;
    padding: 30px 0 0;
  }
  .not-found__image {
    width: 70%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .not-found {
    min-height: 430px;
    padding: 60px 0 0;
  }
  .not-found__image {
    width: 70%;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .not-found {
    min-height: 540px;
    padding: 100px 0 40px;
  }
}
.thank-you {
  text-align: center;
}
.thank-you__image {
  max-width: 284px;
  margin-left: auto;
  margin-right: auto;
}
.thank-you h1 {
  font-size: 48px;
  font-family: "PB", sans-serif;
}
.thank-you p {
  max-width: 468px;
  margin-top: 30px;
  font-size: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .thank-you h1 {
    font-size: 24px;
  }
  .thank-you p {
    font-size: 18px;
  }
}
.search-results {
  position: relative;
}
.search-results__wrapper {
  border: 1px solid #c6c6c6;
  position: absolute;
  width: 100%;
  z-index: 14;
  background-color: #fff;
}
.search-results ul {
  list-style: none;
}
.search-results ul li {
  list-style-type: none;
  padding: 2px 16px;
}
.search-results ul li:hover {
  background-color: #fff2be;
}
.search-results ul li.search-results__all a {
  background: none;
  text-decoration: none;
  color: #808080;
}
.search-results ul li a {
  font-family: "PR", sans-serif;
  font-weight: 400;
  padding-left: 18px;
  background: url("/assets/chevron-right-e1779cf8.png") 0 center no-repeat transparent;
  text-decoration: none;
}
.catalog-filter {
  will-change: min-height;
}
.sidebar__inner {
  transform: translate3d(0, 0, 0);
  will-change: position, transform;
}
.is-affixed .sidebar__inner {
  padding-right: 30px;
}
.is-affixed.no-padding .sidebar__inner {
  padding-right: 0;
}
.property-tooltip {
  position: relative;
}
.property-tooltip__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0);
  z-index: 100;
}
.property-tooltip__button {
  cursor: pointer;
  mask: url("/assets/product/q-mark-8980008f.svg") no-repeat center center;
  background-color: #838383;
  border: medium none;
  flex-basis: 18px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.property-tooltip__button:hover {
  background-color: #D30F0E;
}
.property-tooltip__close-wrapper {
  display: flex;
  justify-content: flex-end;
  height: 14px;
  position: relative;
}
.property-tooltip__close {
  border: medium none;
  width: 14px;
  height: 14px;
  mask: url("/assets/product/close-e2a6aee1.svg") no-repeat center center;
  background-color: #838383;
  right: -14px;
  position: absolute;
  top: -14px;
}
.property-tooltip__header {
  color: #838383;
  font-weight: bold;
  margin-bottom: 14px;
}
.property-tooltip__container {
  position: absolute;
  box-shadow: 0 39px 104px 0 rgba(0, 0, 0, 0.15);
  padding: 32px;
  background-color: #fff;
  width: 320px;
  z-index: 110;
}
.property-tooltip__content {
  color: #212529;
  font-weight: normal;
  font-family: "PR", sans-serif;
}
.property-tooltip__read-more {
  color: #838383;
  cursor: pointer;
  font-family: "PB", sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-top: 16px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.similar-product {
  display: flex;
  flex-direction: row;
  column-gap: 32px;
  margin-bottom: 24px;
  border-bottom: 1px solid #E3E3E3;
  align-items: center;
  padding-bottom: 24px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.similar-product__image {
  border: 1px solid #E3E3E3;
  padding: 8px;
  height: 60px;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 60px;
}
.similar-product__image img {
  height: auto;
  width: 100%;
}
.similar-product__name-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: normal;
  flex: 1 0 calc(100% - 92px);
}
.similar-product__name {
  flex: 1 0 380px;
  margin-bottom: 16px;
}
.similar-product__name a {
  color: #212529;
  font-weight: bold;
  font-family: "PB", sans-serif;
}
.similar-product__name a:hover {
  color: #D30F0E;
}
.similar-product__category {
  flex-grow: 50;
  color: #838383;
}
.similar-product__price {
  font-weight: bold;
  display: none;
}
.similar-product__cart {
  margin-left: 90px;
}
.similar-product__cart input[type=submit] {
  color: #D30F0E;
  font-weight: bold;
  background: url("/assets/to-cart-dbd36ffe.svg") no-repeat left center transparent;
  border: medium none;
  padding-left: 34px;
  text-transform: uppercase;
}
.similar-product__cart_text {
  display: none;
}
@media (min-width: 768px) {
  .similar-product {
    flex-wrap: nowrap;
  }
  .similar-product__name-wrapper {
    flex: 1 0 auto;
  }
  .similar-product__cart {
    margin-left: 0;
  }
}
@media (min-width: 1024px) {
  .similar-product__name-wrapper {
    flex-direction: row;
    flex: 1 0 auto;
  }
}
@media (min-width: 1600px) {
  .similar-product__name-wrapper {
    flex-direction: row;
    flex-grow: 100;
    justify-content: space-between;
  }
  .similar-product__price {
    display: block;
  }
  .similar-product__cart_price {
    display: none;
  }
  .similar-product__cart_text {
    display: block;
  }
}
.similar-product-slider {
  margin-bottom: 32px;
  width: 100%;
}
.similar-product-slider .swiper {
  padding-bottom: 30px;
}
.similar-product-slider .swiper-button-next {
  display: none;
  right: 0;
}
.similar-product-slider .swiper-button-next:after {
  background: url("/assets/product/swiper-right-f6f45237.svg") center center no-repeat transparent;
  width: 24px;
  height: 24px;
  content: "";
}
.similar-product-slider .swiper-button-prev {
  display: none;
  left: 0;
}
.similar-product-slider .swiper-button-prev:after {
  background: url("/assets/product/swiper-left-e43a4fe2.svg") center center no-repeat transparent;
  width: 24px;
  height: 24px;
  content: "";
}
.similar-product-slider__head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.similar-product-slider__title {
  color: #212529;
  font-weight: bold;
  font-size: 22px;
}
.similar-product-slider__title span {
  color: #838383;
}
.similar-product-slider__link a {
  color: #838383;
}
.similar-product-slider__products {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-left: 0;
  padding-right: 0;
}
.similar-product-slider__product {
  width: 72px;
}
.similar-product-slider__image {
  border: 1px solid #E3E3E3;
  margin-bottom: 12px;
  width: 72px;
  height: 72px;
  display: flex;
  justify-content: center;
}
.similar-product-slider__image a {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.similar-product-slider__image img {
  height: 100%;
  width: auto;
}
.similar-product-slider__name {
  margin-bottom: 12px;
}
.similar-product-slider__name a {
  font-weight: bold;
  font-size: 12px;
  color: #212529;
}
.similar-product-slider__price {
  font-weight: bold;
  font-size: 12px;
  color: #212529;
}
@media (min-width: 768px) {
  .similar-product-slider .swiper {
    padding-bottom: 0;
  }
  .similar-product-slider .swiper-pagination {
    display: none;
  }
  .similar-product-slider .swiper-button-next {
    display: flex;
  }
  .similar-product-slider .swiper-button-prev {
    display: flex;
  }
  .similar-product-slider__products {
    padding-right: 42px;
    padding-left: 42px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .similar-product-slider__image {
    height: 120px;
    width: 120px;
  }
}
.document-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 100;
  display: flex;
  justify-content: center;
}
.document-modal {
  background-color: #fff;
  padding: 32px 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.document-modal__close-wrapper {
  display: flex;
  justify-content: flex-end;
  height: 14px;
  position: relative;
}
.document-modal__close {
  border: medium none;
  width: 14px;
  height: 14px;
  mask: url("/assets/product/close-e2a6aee1.svg") no-repeat center center;
  background-color: #838383;
  right: -4px;
  position: absolute;
  top: -14px;
}
.document-modal__content {
  flex: 1;
}
@media (min-width: 407px) and (max-width: 767px) {
  .document-modal {
    margin: 40px 0;
    width: 90%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .document-modal {
    margin: 60px 0;
    width: 90%;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .document-modal {
    margin: 60px 0;
    width: 900px;
  }
}
@media (min-width: 1366px) and (max-width: 1599px) {
  .document-modal {
    margin: 60px 0;
    width: 900px;
  }
}
@media (min-width: 1600px) {
  .document-modal {
    margin: 60px 0;
    width: 1000px;
  }
}
.detailed-menu-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 100;
}
.detailed-menu-modal-overlay .content {
  display: flex;
  justify-content: end;
}
.detailed-menu-modal {
  background-color: #fff;
  padding: 0 20px;
  width: 320px;
  position: absolute;
  bottom: 90px;
}
.detailed-menu-modal__close-wrapper {
  display: flex;
  justify-content: flex-end;
  height: 14px;
  position: relative;
  margin-top: 14px;
}
.detailed-menu-modal__close {
  border: medium none;
  width: 14px;
  height: 14px;
  mask: url("/assets/product/close-e2a6aee1.svg") no-repeat center center;
  background-color: #838383;
}
.detailed-menu-modal .product__detailed-menu-sticky {
  margin-bottom: 0;
}
.detailed-menu-modal .product__mobile-detailed-menu {
  display: block !important;
}
.mobile-detailed-menu-toggle {
  border: medium none;
  background: url("/assets/product/phone-burger-93ae8ef0.svg") center center no-repeat #838383;
  border-radius: 40px;
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 30px;
  z-index: 101;
}
.mobile-detailed-menu-button-wrapper {
  display: flex;
  justify-content: end;
  width: 100%;
}
@media (min-width: 768px) {
  .mobile-detailed-menu-toggle {
    height: 50px;
    border-radius: 50px;
    width: 50px;
  }
}
@media (min-width: 1366px) {
  .mobile-detailed-menu-toggle {
    display: none;
  }
}
.nullify-offset-wrapper {
  display: flex;
  justify-content: flex-end;
}
.nullify-offset {
  cursor: pointer;
  height: 40px;
  background: url("/assets/up-arrow-c5166f53.svg") center center no-repeat #838383;
  border-radius: 40px;
  width: 40px;
  position: fixed;
  bottom: 100px;
  z-index: 20;
  transition: visibility 0.3s linear, opacity 0.3s linear;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 768px) {
  .nullify-offset {
    height: 50px;
    border-radius: 50px;
    width: 50px;
  }
}
.product-cart {
  display: flex;
  column-gap: 24px;
}
.product-cart__button {
  flex: 0 0 148px;
  height: 54px;
  background-color: #D30F0E;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 22px 0;
  text-decoration: none;
  font-family: "PB", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
  border: medium none;
  justify-content: center;
}
.product-cart__button:hover {
  color: #fff;
  text-decoration: none;
}
.product-cart__add-to-cart {
  background: url("/assets/basket_w-d22111e0.svg") 0 center no-repeat #D30F0E;
  padding-left: 28px;
}
.product-cart__to-cart {
  background: url("/assets/cart-arrow-right-b5f89af5.svg") 0 center no-repeat #D30F0E;
  padding-left: 34px;
}
.product-cart-number-selectors {
  display: flex;
  flex-direction: row;
  flex: 0 0 188px;
}
.product-cart-number-selectors__minus,
.product-cart-number-selectors__plus {
  align-content: center;
  align-items: center;
  background: #F3F3F3;
  border: medium none;
  cursor: pointer;
  display: flex;
  flex: 0 0 33.3333%;
  justify-content: center;
  transition: 0.3s;
}
.product-cart-number-selectors__input {
  flex: 0 0 33.3333%;
  border: none;
  background: #F3F3F3;
  font-family: "PB", sans-serif;
  font-size: 14px;
  text-align: center;
  outline: medium none;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .product-cart-number-selectors {
    flex: 0 0 38%;
  }
}
.undecorated-link {
  color: inherit !important;
  text-decoration: none !important;
}

/* ../../shared/node_modules/swiper/swiper.css */
@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);
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
.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);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
.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-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));
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ../../shared/node_modules/swiper/modules/navigation.css */
:root {
  --swiper-navigation-size: 44px;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-lock {
  display: none;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

/* ../../shared/node_modules/swiper/modules/pagination.css */
:root {
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}
/*# sourceMappingURL=/assets/application-1adc4718.css.map */
