@font-face {
  font-family: 'Metropolis 300';
  src: url("../fonts/Metropolis-Light.eot");
  src: url("../fonts/Metropolis-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Metropolis-Light.woff2") format("woff2"), url("../fonts/Metropolis-Light.woff") format("woff"), url("../fonts/Metropolis-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis 400';
  src: url("../fonts/Metropolis-Regular.eot");
  src: url("../fonts/Metropolis-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Metropolis-Regular.woff2") format("woff2"), url("../fonts/Metropolis-Regular.woff") format("woff"), url("../fonts/Metropolis-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis 500';
  src: url("../fonts/Metropolis-Medium.eot");
  src: url("../fonts/Metropolis-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Metropolis-Medium.woff2") format("woff2"), url("../fonts/Metropolis-Medium.woff") format("woff"), url("../fonts/Metropolis-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis 600';
  src: url("../fonts/Metropolis-SemiBold.eot");
  src: url("../fonts/Metropolis-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Metropolis-SemiBold.woff2") format("woff2"), url("../fonts/Metropolis-SemiBold.woff") format("woff"), url("../fonts/Metropolis-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis 700';
  src: url("../fonts/Metropolis-Bold.eot");
  src: url("../fonts/Metropolis-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Metropolis-Bold.woff2") format("woff2"), url("../fonts/Metropolis-Bold.woff") format("woff"), url("../fonts/Metropolis-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis 800';
  src: url("../fonts/Metropolis-ExtraBold.eot");
  src: url("../fonts/Metropolis-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Metropolis-ExtraBold.woff2") format("woff2"), url("../fonts/Metropolis-ExtraBold.woff") format("woff"), url("../fonts/Metropolis-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Bootstrap SCSS */
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
}

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

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

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

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

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

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

h1 {
  font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {
  h3 {
    font-size: 1.75rem;
  }
}

h4 {
  font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

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

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

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

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

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

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

dt {
  font-weight: 700;
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 0.875em;
}

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

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

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

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

a:hover {
  color: #0a58ca;
}

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

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

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

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

a > code {
  color: inherit;
}

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

kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

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

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

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

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

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

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

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

button,
select {
  text-transform: none;
}

[role="button"] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

select:disabled {
  opacity: 1;
}

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

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

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

textarea {
  resize: vertical;
}

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

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}

@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}

legend + * {
  clear: left;
}

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

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

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

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

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

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

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

output {
  display: inline-block;
}

iframe {
  border: 0;
}

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

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

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

@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container, .container-sm, .container-md {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container, .container-sm, .container-md, .container-lg {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    max-width: 1320px;
  }
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x));
}

.row > * {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}

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

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

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

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

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

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

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

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

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

.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 8.33333%;
}

.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.66667%;
}

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

.col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.33333%;
}

.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 41.66667%;
}

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

.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 58.33333%;
}

.col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 66.66667%;
}

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

.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 83.33333%;
}

.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 91.66667%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333%;
  }
  .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333%;
  }
  .offset-sm-2 {
    margin-left: 16.66667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333%;
  }
  .offset-sm-5 {
    margin-left: 41.66667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333%;
  }
  .offset-sm-8 {
    margin-left: 66.66667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333%;
  }
  .offset-sm-11 {
    margin-left: 91.66667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 768px) {
  .col-md {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333%;
  }
  .row-cols-md-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333%;
  }
  .offset-md-2 {
    margin-left: 16.66667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333%;
  }
  .offset-md-5 {
    margin-left: 41.66667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333%;
  }
  .offset-md-8 {
    margin-left: 66.66667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333%;
  }
  .offset-md-11 {
    margin-left: 91.66667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 992px) {
  .col-lg {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333%;
  }
  .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333%;
  }
  .offset-lg-2 {
    margin-left: 16.66667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333%;
  }
  .offset-lg-5 {
    margin-left: 41.66667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333%;
  }
  .offset-lg-8 {
    margin-left: 66.66667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333%;
  }
  .offset-lg-11 {
    margin-left: 91.66667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333%;
  }
  .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333%;
  }
  .offset-xl-2 {
    margin-left: 16.66667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333%;
  }
  .offset-xl-5 {
    margin-left: 41.66667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333%;
  }
  .offset-xl-8 {
    margin-left: 66.66667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333%;
  }
  .offset-xl-11 {
    margin-left: 91.66667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 1400px) {
  .col-xxl {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333%;
  }
  .row-cols-xxl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-xxl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333%;
  }
  .col-xxl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-xxl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333%;
  }
  .col-xxl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66667%;
  }
  .col-xxl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333%;
  }
  .col-xxl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66667%;
  }
  .col-xxl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333%;
  }
  .col-xxl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66667%;
  }
  .col-xxl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}

.table {
  --bs-table-bg: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: #212529;
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: #212529;
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: #212529;
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  vertical-align: top;
  border-color: #dee2e6;
}

.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  -webkit-box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
          box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

.table > tbody {
  vertical-align: inherit;
}

.table > thead {
  vertical-align: bottom;
}

.table > :not(:first-child) {
  border-top: 2px solid currentColor;
}

.caption-top {
  caption-side: top;
}

.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}

.table-bordered > :not(caption) > * {
  border-width: 1px 0;
}

.table-bordered > :not(caption) > * > * {
  border-width: 0 1px;
}

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}

.table-borderless > :not(:first-child) {
  border-top-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}

.table-active {
  --bs-table-accent-bg: var(--bs-table-active-bg);
  color: var(--bs-table-active-color);
}

.table-hover > tbody > tr:hover > * {
  --bs-table-accent-bg: var(--bs-table-hover-bg);
  color: var(--bs-table-hover-color);
}

.table-primary {
  --bs-table-bg: #cfe2ff;
  --bs-table-striped-bg: #c5d7f2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bacbe6;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfd1ec;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #bacbe6;
}

.table-secondary {
  --bs-table-bg: #e2e3e5;
  --bs-table-striped-bg: #d7d8da;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #cbccce;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #d1d2d4;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #cbccce;
}

.table-success {
  --bs-table-bg: #d1e7dd;
  --bs-table-striped-bg: #c7dbd2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bcd0c7;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c1d6cc;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #bcd0c7;
}

.table-info {
  --bs-table-bg: #cff4fc;
  --bs-table-striped-bg: #c5e8ef;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #badce3;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfe2e9;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #badce3;
}

.table-warning {
  --bs-table-bg: #fff3cd;
  --bs-table-striped-bg: #f2e7c3;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6dbb9;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ece1be;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #e6dbb9;
}

.table-danger {
  --bs-table-bg: #f8d7da;
  --bs-table-striped-bg: #eccccf;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfc2c4;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5c7ca;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #dfc2c4;
}

.table-light {
  --bs-table-bg: #f8f9fa;
  --bs-table-striped-bg: #ecedee;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfe0e1;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5e6e7;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #dfe0e1;
}

.table-dark {
  --bs-table-bg: #212529;
  --bs-table-striped-bg: #2c3034;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #373b3e;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #323539;
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: #373b3e;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.form-label {
  margin-bottom: 0.5rem;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #6c757d;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0.25rem;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control {
    -webkit-transition: none;
    transition: none;
  }
}

.form-control[type="file"] {
  overflow: hidden;
}

.form-control[type="file"]:not(:disabled):not([readonly]) {
  cursor: pointer;
}

.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-control::-webkit-date-and-time-value {
  height: 1.5em;
}

.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

.form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 0.75rem;
          margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control::file-selector-button {
    -webkit-transition: none;
    transition: none;
  }
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #dde0e3;
}

.form-control::-webkit-file-upload-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 0.75rem;
          margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
}

.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #dde0e3;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}

.form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}

.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
          margin-inline-end: 1rem;
}

.form-control-lg::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
          margin-inline-end: 1rem;
}

textarea.form-control {
  min-height: calc(1.5em + 0.75rem + 2px);
}

textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
}

textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
}

.form-control-color {
  width: 3rem;
  height: auto;
  padding: 0.375rem;
}

.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}

.form-control-color::-moz-color-swatch {
  height: 1.5em;
  border-radius: 0.25rem;
}

.form-control-color::-webkit-color-swatch {
  height: 1.5em;
  border-radius: 0.25rem;
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .form-select {
    -webkit-transition: none;
    transition: none;
  }
}

.form-select:focus {
  border-color: #86b7fe;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}

.form-select:disabled {
  background-color: #e9ecef;
}

.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #212529;
}

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}

.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color-adjust: exact;
}

.form-check-input[type="checkbox"] {
  border-radius: 0.25em;
}

.form-check-input[type="radio"] {
  border-radius: 50%;
}

.form-check-input:active {
  -webkit-filter: brightness(90%);
          filter: brightness(90%);
}

.form-check-input:focus {
  border-color: #86b7fe;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.form-check-input:checked[type="checkbox"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.form-check-input:checked[type="radio"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-input[type="checkbox"]:indeterminate {
  background-color: #0d6efd;
  border-color: #0d6efd;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}

.form-check-input:disabled {
  pointer-events: none;
  -webkit-filter: none;
          filter: none;
  opacity: 0.5;
}

.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}

.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  -webkit-transition: background-position 0.15s ease-in-out;
  transition: background-position 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    -webkit-transition: none;
    transition: none;
  }
}

.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e");
}

.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  pointer-events: none;
  -webkit-filter: none;
          filter: none;
  opacity: 0.65;
}

.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.form-range:focus {
  outline: 0;
}

.form-range:focus::-webkit-slider-thumb {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-range::-moz-focus-outer {
  border: 0;
}

.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}

.form-range::-webkit-slider-thumb:active {
  background-color: #b6d4fe;
}

.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    -webkit-transition: none;
    transition: none;
  }
}

.form-range::-moz-range-thumb:active {
  background-color: #b6d4fe;
}

.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.form-range:disabled {
  pointer-events: none;
}

.form-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}

.form-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.form-floating {
  position: relative;
}

.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
}

.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: 1px solid transparent;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    -webkit-transition: none;
    transition: none;
  }
}

.form-floating > .form-control {
  padding: 1rem 0.75rem;
}

.form-floating > .form-control::-webkit-input-placeholder {
  color: transparent;
}

.form-floating > .form-control:-ms-input-placeholder {
  color: transparent;
}

.form-floating > .form-control::-ms-input-placeholder {
  color: transparent;
}

.form-floating > .form-control::placeholder {
  color: transparent;
}

.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating > .form-control:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
  -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
          transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
          transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.input-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}

.input-group > .form-control,
.input-group > .form-select {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}

.input-group > .form-control:focus,
.input-group > .form-select:focus {
  z-index: 3;
}

.input-group .btn {
  position: relative;
  z-index: 2;
}

.input-group .btn:focus {
  z-index: 3;
}

.input-group-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

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

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

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

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group.has-validation > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n + 4) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #198754;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(25, 135, 84, 0.9);
  border-radius: 0.25rem;
}

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

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #198754;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #198754;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

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

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: #198754;
}

.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: #198754;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #198754;
}

.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: #198754;
}

.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #198754;
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: .5em;
}

.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid, .was-validated
.input-group .form-select:valid,
.input-group .form-select.is-valid {
  z-index: 1;
}

.was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus, .was-validated
.input-group .form-select:valid:focus,
.input-group .form-select.is-valid:focus {
  z-index: 3;
}

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

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}

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

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

.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #dc3545;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

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

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: #dc3545;
}

.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: #dc3545;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #dc3545;
}

.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: #dc3545;
}

.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

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

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: .5em;
}

.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid, .was-validated
.input-group .form-select:invalid,
.input-group .form-select.is-invalid {
  z-index: 2;
}

.was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus, .was-validated
.input-group .form-select:invalid:focus,
.input-group .form-select.is-invalid:focus {
  z-index: 3;
}

.dropup,
.dropend,
.dropdown,
.dropstart {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

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

.dropdown-toggle:empty::after {
  margin-left: 0;
}

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

.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: 0.125rem;
}

.dropdown-menu-start {
  --bs-position: start;
}

.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end;
}

.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

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

.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

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

.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}

.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.dropstart .dropdown-toggle::after {
  display: none;
}

.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover, .dropdown-item:focus {
  color: #1e2125;
  background-color: #e9ecef;
}

.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #0d6efd;
}

.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

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

.dropdown-header {
  display: block;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1rem;
  color: #212529;
}

.dropdown-menu-dark {
  color: #dee2e6;
  background-color: #343a40;
  border-color: rgba(0, 0, 0, 0.15);
}

.dropdown-menu-dark .dropdown-item {
  color: #dee2e6;
}

.dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}

.dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {
  color: #fff;
  background-color: #0d6efd;
}

.dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {
  color: #adb5bd;
}

.dropdown-menu-dark .dropdown-divider {
  border-color: rgba(0, 0, 0, 0.15);
}

.dropdown-menu-dark .dropdown-item-text {
  color: #dee2e6;
}

.dropdown-menu-dark .dropdown-header {
  color: #adb5bd;
}

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

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #0d6efd;
  text-decoration: none;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .nav-link {
    -webkit-transition: none;
    transition: none;
  }
}

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

.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: none;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
  isolation: isolate;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #0d6efd;
}

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

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

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

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

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

.accordion-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-radius 0.15s ease, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-radius 0.15s ease, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    -webkit-transition: none;
    transition: none;
  }
}

.accordion-button:not(.collapsed) {
  color: #0c63e4;
  background-color: #e7f1ff;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.accordion-button::after {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    -webkit-transition: none;
    transition: none;
  }
}

.accordion-button:hover {
  z-index: 2;
}

.accordion-button:focus {
  z-index: 3;
  border-color: #86b7fe;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.accordion-item:first-of-type {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.accordion-item:not(:first-of-type) {
  border-top: 0;
}

.accordion-item:last-of-type {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

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

.accordion-flush .accordion-collapse {
  border-width: 0;
}

.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.accordion-flush .accordion-item:first-child {
  border-top: 0;
}

.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}

.accordion-flush .accordion-item .accordion-button {
  border-radius: 0;
}

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

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
}

.breadcrumb-item.active {
  color: #6c757d;
}

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

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    -webkit-transition: none;
    transition: none;
  }
}

.modal.show .modal-dialog {
  -webkit-transform: none;
          transform: none;
}

.modal.modal-static .modal-dialog {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: calc(100% - 1rem);
}

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

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

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

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

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

.modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}

.modal-footer > * {
  margin: 0.25rem;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}

.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}

.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}

.modal-fullscreen .modal-header {
  border-radius: 0;
}

.modal-fullscreen .modal-body {
  overflow-y: auto;
}

.modal-fullscreen .modal-footer {
  border-radius: 0;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}

@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}

@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}

@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}

@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}

.fade {
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    -webkit-transition: none;
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

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

.collapsing {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    -webkit-transition: none;
    transition: none;
  }
}

.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  -webkit-transition: width 0.35s ease;
  transition: width 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    -webkit-transition: none;
    transition: none;
  }
}

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

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.d-grid {
  display: -ms-grid !important;
  display: grid !important;
}

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

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

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

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

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

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

.shadow {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

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

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

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

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

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

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

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

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

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

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

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

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

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

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

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

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  -webkit-transform: translate(-50%, -50%) !important;
          transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  -webkit-transform: translateX(-50%) !important;
          transform: translateX(-50%) !important;
}

.translate-middle-y {
  -webkit-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
}

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

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

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

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

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

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

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

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

.border-start {
  border-left: 1px solid #dee2e6 !important;
}

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

.border-primary {
  border-color: #0d6efd !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #198754 !important;
}

.border-info {
  border-color: #0dcaf0 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #212529 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

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

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

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

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

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

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

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

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

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

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

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

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

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

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

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

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

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

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

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

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

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

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

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

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

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

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

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

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

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

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

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

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rounded-2 {
  border-radius: 0.25rem !important;
}

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

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

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

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

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

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

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

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: -ms-grid !important;
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-sm-3 {
    gap: 1rem !important;
  }
  .gap-sm-4 {
    gap: 1.5rem !important;
  }
  .gap-sm-5 {
    gap: 3rem !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: -ms-grid !important;
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .gap-md-3 {
    gap: 1rem !important;
  }
  .gap-md-4 {
    gap: 1.5rem !important;
  }
  .gap-md-5 {
    gap: 3rem !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: -ms-grid !important;
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .gap-lg-3 {
    gap: 1rem !important;
  }
  .gap-lg-4 {
    gap: 1.5rem !important;
  }
  .gap-lg-5 {
    gap: 3rem !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: -ms-grid !important;
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .gap-xl-3 {
    gap: 1rem !important;
  }
  .gap-xl-4 {
    gap: 1.5rem !important;
  }
  .gap-xl-5 {
    gap: 3rem !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}

@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: -ms-grid !important;
    display: grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-xxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxl-3 {
    gap: 1rem !important;
  }
  .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  .gap-xxl-5 {
    gap: 3rem !important;
  }
  .justify-content-xxl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-xxl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-xxl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-xxl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-xxl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-xxl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-xxl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-xxl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-xxl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-xxl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-xxl-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }
  .align-self-xxl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-xxl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-xxl-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
  }
  .align-self-xxl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
  .order-xxl-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }
  .order-xxl-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
  .order-xxl-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .order-xxl-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .order-xxl-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .order-xxl-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .order-xxl-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }
  .order-xxl-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }
  .fs-2 {
    font-size: 2rem !important;
  }
  .fs-3 {
    font-size: 1.75rem !important;
  }
  .fs-4 {
    font-size: 1.5rem !important;
  }
}

@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: -ms-grid !important;
    display: grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}

/* /Bootstrap SCSS */
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: auto;
  }
}

html {
  height: 100%;
}

@media screen and (max-width: 1090px) {
  html.mobile-nav-opened {
    overflow: hidden;
  }
  html.mobile-nav-opened #main-header .user-menu {
    opacity: 0;
    visibility: hidden;
  }
}

html, body {
  min-height: 100%;
  overflow-x: hidden;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  line-height: normal;
  font-family: "Metropolis 400";
  font-size: 16px;
  font-weight: 400;
  color: #0C0C0C;
}

body.error404 {
  background: #fff url("../img/error-404-bg.png") center center no-repeat;
}

@media screen and (max-width: 991px) {
  body.error404 {
    background-size: contain;
  }
}

@media screen and (max-width: 991px) {
  body {
    padding: 123px 0 0 0;
  }
}

textarea:focus, input:focus, select:focus, a:focus {
  outline: none;
}

img {
  max-width: 100%;
  border: none;
}

a {
  display: inline-block;
  color: #0C0C0C;
  text-decoration: none;
  outline: none;
  -webkit-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out;
}

a:hover {
  color: #0C0C0C;
}

@media screen and (min-width: 992px) {
  a:hover {
    text-decoration: underline;
  }
}

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

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  color: #0C0C0C;
  line-height: normal;
}

strong {
  font-family: "Metropolis 600";
}

.container {
  padding: 0 15px;
}

@media screen and (min-width: 1400px) {
  .container {
    max-width: 1300px;
  }
}

@media screen and (max-width: 1399px) {
  .container {
    padding: 0 70px;
    max-width: 100%;
  }
}

@media screen and (max-width: 1199px) {
  .container {
    padding: 0 40px;
  }
}

@media screen and (max-width: 767px) {
  .container {
    padding: 0 30px;
  }
}

@media screen and (max-width: 575px) {
  .container {
    padding: 0 15px;
  }
}

form .form-group {
  margin: 0 0 20px 0;
}

@media screen and (max-width: 991px) {
  form .form-group {
    margin: 0 0 18px 0;
  }
}

form label {
  display: block;
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: 400;
}

form label span {
  color: #777;
}

form label.required::after {
  content: '*';
}

.form-control {
  height: 48px;
  padding: 0 15px;
  background: #fff;
  border: solid 1px #e7e7e7;
  color: #777;
  font-size: 16px;
  font-weight: 400;
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.form-control[readonly] {
  background: #fff;
  cursor: default;
}

.form-control.error {
  border: solid 2px rgba(208, 2, 27, 0.2);
}

@media screen and (min-width: 992px) {
  .form-control:focus {
    border-color: #c7c7c7;
  }
}

.form-control:focus {
  border-color: #c7c7c7;
  outline-color: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-control:focus + label {
  font-size: 14px;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}

.form-control::-webkit-input-placeholder {
  color: #777;
}

.form-control::-moz-placeholder {
  color: #777;
}

.form-control:-ms-input-placeholder {
  color: #777;
}

.form-control:-moz-placeholder {
  color: #777;
}

.form-group {
  position: relative;
  margin: 0 0 15px 0;
}

.form-group textarea {
  height: auto;
  min-height: 160px !important;
  padding-top: 10px;
}

.btn {
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.btn:active, .btn:focus, .btn:active:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  color: #fff;
}

.btn.btn-primary, .btn.btn-secondary {
  width: auto;
  padding: 16px 33px;
  background: #0C0C0C;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  text-align: center;
  border-radius: 2px;
  -webkit-box-shadow: 0px 4px 8px rgba(14, 14, 14, 0.2);
          box-shadow: 0px 4px 8px rgba(14, 14, 14, 0.2);
}

@media screen and (min-width: 992px) {
  .btn.btn-primary:hover, .btn.btn-secondary:hover {
    background: #FAD1CE;
    color: #0C0C0C;
  }
  .btn.btn-primary:active, .btn.btn-secondary:active {
    background: #edc1be;
    color: #0C0C0C;
  }
}

.btn.btn-secondary {
  padding: 15px 29.5px;
  background: #fff;
  border: 1px solid #0c0c0c;
  color: #0C0C0C;
}

.btn.btn-secondary.sm {
  padding-top: 8px;
  padding-bottom: 8px;
}

@media screen and (min-width: 992px) {
  .btn.btn-secondary:hover {
    background: #0C0C0C;
    border-color: #0C0C0C;
    color: #fff;
  }
  .btn.btn-secondary:active {
    background: #0C0C0C;
    border-color: #0C0C0C;
    color: #fff;
  }
}

.bootstrap-select {
  width: 100%;
}

.bootstrap-select .dropdown-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
  min-width: 65px;
  padding: 0 40px 0 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #fff;
  color: #0C0C0C;
  font-size: 16px;
  outline: none !important;
  border-radius: 2px;
}

.bootstrap-select .dropdown-toggle:focus {
  border-color: rgba(0, 0, 0, 0.1);
  outline: none !important;
}

.bootstrap-select .dropdown-toggle .filter-option {
  position: relative;
  top: -1px;
  height: auto;
}

.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
  font-size: 16px;
  color: #0C0C0C;
  text-overflow: ellipsis;
}

.bootstrap-select .dropdown-toggle::after {
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  width: 10px;
  height: 10px;
  margin: auto 0;
  border: 0;
  background: #fff url("../img/dropdown-arrow-icon.svg") center center no-repeat;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.bootstrap-select .dropdown-toggle.show::after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.bootstrap-select .dropdown-menu {
  padding: 0;
  margin-top: -3px !important;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top-color: transparent;
  border-radius: 0;
}

.bootstrap-select .dropdown-menu .dropdown-menu.inner {
  margin: 0 !important;
}

.bootstrap-select .dropdown-menu li {
  border: 0;
  font-size: 16px;
  font-weight: 500;
}

.bootstrap-select .dropdown-menu li a {
  padding: 10px 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: none;
  color: #161514;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.bootstrap-select .dropdown-menu li a.selected, .bootstrap-select .dropdown-menu li a.active {
  background: #f3f3f3;
}

@media screen and (min-width: 992px) {
  .bootstrap-select .dropdown-menu li a:hover {
    background: #f3f3f3;
  }
}

.bootstrap-select .dropdown-menu li:last-child a {
  border: 0;
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
}

.breadcrumb {
  margin: 0 0 54px 0;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

@media screen and (max-width: 767px) {
  .breadcrumb {
    margin: 0 0 34px 0;
  }
}

.breadcrumb .breadcrumb-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #5F5F5F;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .breadcrumb .breadcrumb-item {
    display: block;
    max-width: 50%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: '/';
  margin: 0 4px;
  padding: 0;
  font-family: "Metropolis 400";
  color: #5F5F5F !important;
}

.breadcrumb .breadcrumb-item a {
  color: #5F5F5F;
}

.breadcrumb .breadcrumb-item.active {
  font-family: "Metropolis 600";
  color: #000;
}

.pagination {
  margin: 33px 0 0 0;
}

@media screen and (max-width: 1199px) {
  .pagination {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.pagination li {
  margin: 0 9px 0 0;
}

.pagination li:last-child {
  margin: 0;
}

.pagination li a, .pagination li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  color: #0C0C0C;
  font-family: "Metropolis 600";
  text-decoration: none;
  border-radius: 50%;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media screen and (max-width: 767px) {
  .pagination li a, .pagination li span {
    width: 28px;
    height: 28px;
  }
}

@media screen and (min-width: 992px) {
  .pagination li a:hover {
    background: linear-gradient(36.57deg, #E2AEAB 15.32%, #F5D5D3 84.31%);
    -webkit-box-shadow: 0px 4px 8px rgba(199, 151, 160, 0.2);
            box-shadow: 0px 4px 8px rgba(199, 151, 160, 0.2);
  }
}

.pagination li.next {
  margin: 0 0 0 35px;
  width: auto;
}

@media screen and (max-width: 767px) {
  .pagination li.next {
    margin: 0 0 0 5px;
  }
}

.pagination li.next a {
  width: auto;
  padding-right: 18px;
  background: url(../img/pagination-next.svg) right center no-repeat;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.pagination li.active a {
  background: linear-gradient(36.57deg, #E2AEAB 15.32%, #F5D5D3 84.31%);
  -webkit-box-shadow: 0px 4px 8px rgba(199, 151, 160, 0.2);
          box-shadow: 0px 4px 8px rgba(199, 151, 160, 0.2);
}

.pagination li.separator span {
  width: auto;
}

.pagination li.disabled span, .pagination li.disabled a {
  opacity: .4;
  pointer-events: none;
}

/* Checkboxes */
input[type="checkbox"] {
  display: none!important;
}

input[type="checkbox"] + label {
  position: relative;
  padding: 0 0 0 25px;
  margin: 0 0 15px 0;
  line-height: 18px;
  font-size: 16px;
  color: #5F5F5F;
  cursor: pointer;
}

input[type="checkbox"] + label::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background: #fff url("../img/checkmark-icon.svg") center center no-repeat;
  background-size: 9.5px;
  border: 1px solid rgba(12, 12, 12, 0.3);
  border-radius: 1px;
  -webkit-transition: border-color .3s ease-in-out;
  transition: border-color .3s ease-in-out;
}

input[type="checkbox"]:checked + label::before {
  background-color: #0C0C0C;
  border-color: #0C0C0C;
}

/* Radios */
input[type="radio"] {
  display: none;
}

input[type="radio"] + label {
  position: relative;
  padding: 0 0 0 25px;
  font-size: 16px;
  cursor: pointer;
}

input[type="radio"] + label::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(12, 12, 12, 0.3);
  background: url("../img/radio-dot.svg") center center no-repeat;
  background-size: 0;
  border-radius: 50%;
}

input[type="radio"] + label strong {
  font-family: "Metropolis 600";
}

input[type="radio"]:checked + label::before {
  background-size: 10px;
  border-color: #0C0C0C;
}

.ps-wrapper {
  position: relative;
  padding-top: 0;
}

.ps-wrapper.ps--active-y {
  padding-right: 0;
}

.ps-wrapper.ps--active-y .ps__rail-y {
  width: 6px;
  margin-right: 0;
  opacity: 1;
  background: #FCF0EF;
}

.ps-wrapper.ps--active-y .ps__rail-y .ps__thumb-y {
  right: 0;
  width: 6px;
  background: #E7ABA6;
  border-radius: 3px;
}

.modal.cart-success {
  padding: 0 !important;
  text-align: right;
}

.modal.cart-success .modal-dialog {
  max-width: 410px;
  margin-top: 10vh;
}

@media screen and (max-width: 575px) {
  .modal.cart-success .modal-dialog {
    margin: 85px auto;
    max-width: calc(100vw - 30px);
  }
}

.modal.cart-success .modal-dialog .modal-content {
  height: 100%;
  padding: 30px;
  border: 0;
  border-radius: 0;
  overflow: auto;
}

@media screen and (max-width: 575px) {
  .modal.cart-success .modal-dialog .modal-content {
    padding: 30px 15px 15px 15px;
  }
}

.modal.cart-success .modal-dialog .modal-content .modal-header {
  display: block;
  padding: 0 30px 18px 30px;
  margin: 0 0 30px 0;
  border: 0;
  text-align: center;
}

@media screen and (max-width: 575px) {
  .modal.cart-success .modal-dialog .modal-content .modal-header {
    padding-left: 0;
    padding-right: 0;
    margin: 0 0 15px 0;
  }
}

.modal.cart-success .modal-dialog .modal-content .modal-header .modal-title {
  line-height: 30px;
  font-size: 24px;
  font-family: "Metropolis 600";
  color: #2EA63A;
}

.modal.cart-success .modal-dialog .modal-content .modal-header .btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 16px;
  height: 16px;
  margin: 0;
  padding: 0;
  background: url("../img/modal-close-icon.svg") center center no-repeat;
  border: 0;
  opacity: 1;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.modal.cart-success .modal-dialog .modal-content .modal-body {
  padding: 0;
}

.modal.cart-success .modal-dialog .modal-content .modal-body .product-layout {
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.modal.cart-success .modal-dialog .modal-content .modal-body .product-layout .image {
  height: auto;
  margin: 0 0 10px 0;
}

.modal.cart-success .modal-dialog .modal-content .modal-body .product-layout .name {
  margin: 0 0 15px 0;
  font-size: 16px;
  text-decoration: none;
}

.modal.cart-success .modal-dialog .modal-content .modal-body .product-layout .price-holder {
  position: relative;
}

@media screen and (min-width: 576px) {
  .modal.cart-success .modal-dialog .modal-content .modal-body .product-layout .price-holder {
    text-align: center;
  }
}

.modal.cart-success .modal-dialog .modal-content .modal-body .product-layout .price-holder .price {
  font-size: 16px;
}

.modal.cart-success .modal-dialog .modal-content .modal-body .product-layout .price-holder .pieces {
  color: #777;
  font-family: "Metropolis 400";
}

.modal.cart-success .modal-dialog .modal-content .modal-footer {
  padding: 10px 0 0 0;
  border: 0;
}

@media screen and (max-width: 575px) {
  .modal.cart-success .modal-dialog .modal-content .modal-footer {
    padding: 30px 0 0 0;
  }
}

.modal.cart-success .modal-dialog .modal-content .modal-footer .buttons {
  width: 100%;
  margin: 10px 0 0 0;
}

.modal.cart-success .modal-dialog .modal-content .modal-footer .buttons a, .modal.cart-success .modal-dialog .modal-content .modal-footer .buttons button {
  margin: 0;
}

.modal.cart-success .modal-dialog .modal-content .modal-footer .buttons a.btn-secondary, .modal.cart-success .modal-dialog .modal-content .modal-footer .buttons button.btn-secondary {
  margin: 0 0 15px 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.content-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  z-index: 1002;
}

.content-overlay.show {
  opacity: 1;
  visibility: visible;
}

#cookie-bar {
  position: fixed;
  right: 20px;
  bottom: 20px;
  max-width: 430px;
  padding: 25px;
  background-color: #fff;
  border: 1px solid #ececec;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  z-index: 200;
}

@media screen and (max-width: 575px) {
  #cookie-bar {
    left: 20px;
    max-width: 100%;
    padding: 15px;
  }
}

#cookie-bar.hide-block {
  left: auto;
  right: -100vw;
}

#cookie-bar .message {
  line-height: 28px;
  color: #000;
  font-size: 16px;
}

#cookie-bar .message span {
  display: block;
}

#cookie-bar .message a {
  color: #888380;
}

#cookie-bar .buttons {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 24px 0 0 0;
}

@media screen and (max-width: 360px) {
  #cookie-bar .buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#cookie-bar .buttons button, #cookie-bar .buttons a {
  padding: 10px 23px;
  margin: 0 25px 0 0;
}

@media screen and (max-width: 360px) {
  #cookie-bar .buttons button, #cookie-bar .buttons a {
    width: 100%;
    margin: 10px 0;
  }
}

#cookie-bar .buttons button.btn-secondary, #cookie-bar .buttons a.btn-secondary {
  padding-top: 8px;
  padding-bottom: 8px;
}

#cookie-bar .buttons button:last-child, #cookie-bar .buttons a:last-child {
  margin: 0;
}

#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  z-index: 1000;
}

#main-header::after {
  content: '';
  position: absolute;
  top: calc(100% - 20px);
  left: 0;
  right: 0;
  height: 20px;
  -webkit-box-shadow: 0px 6px 8px rgba(12, 12, 12, 0.1);
          box-shadow: 0px 6px 8px rgba(12, 12, 12, 0.1);
  z-index: 1000;
}

@media screen and (max-width: 767px) {
  #main-header {
    border-bottom: 1px solid #eae9e7;
  }
}

#main-header .notice-bar {
  line-height: 20px;
  font-size: 14px;
  text-align: left;
}

@media screen and (max-width: 991px) {
  #main-header .notice-bar {
    font-size: 12px;
    text-align: center;
  }
}

#main-header .notice-bar strong {
  text-transform: uppercase;
}

#main-header .top-bar {
  padding: 6px 0;
  background: #FAD1CE;
  font-size: 14px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media screen and (max-width: 991px) {
  #main-header .top-bar .top-nav-bar {
    display: none !important;
  }
}

#main-header .top-bar .top-nav-bar li {
  position: relative;
  padding: 0 20px 0 0;
  margin: 0 15px 0 0;
}

#main-header .top-bar .top-nav-bar li::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 0;
  width: 4px;
  height: 4px;
  background-color: #D9B2AF;
  border-radius: 50%;
}

#main-header .top-bar .top-nav-bar li:last-child {
  padding: 0;
  margin: 0;
}

#main-header .top-bar .top-nav-bar li:last-child::after {
  content: normal;
}

#main-header .mid-section {
  padding: 17px 0;
}

@media screen and (max-width: 1199px) {
  #main-header .mid-section {
    padding: 15px 0;
  }
}

@media screen and (max-width: 575px) {
  #main-header .mid-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    height: 55px;
  }
}

@media screen and (max-width: 767px) {
  #main-header .mid-section .form-col {
    position: fixed;
    top: -120vh;
    right: 0;
    height: 100vh;
    padding: 0;
    background-color: #fff;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    z-index: 10002;
  }
  #main-header .mid-section .form-col.show {
    top: 0;
    opacity: 1;
    visibility: visible;
  }
}

#main-header .mid-section .header-searh-form {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 515px;
}

@media screen and (max-width: 767px) {
  #main-header .mid-section .header-searh-form {
    display: block;
    max-width: 100%;
    overflow: auto;
  }
}

#main-header .mid-section .header-searh-form .form-control {
  height: 40px;
  padding-right: 45px;
  border-right: 0;
}

@media screen and (max-width: 991px) and (min-width: 768px) {
  #main-header .mid-section .header-searh-form .form-control {
    padding-right: 25px;
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  #main-header .mid-section .header-searh-form .form-control {
    height: 55px;
    padding-right: 55px;
    border: 0;
    -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  }
}

#main-header .mid-section .header-searh-form .form-control:focus {
  border-color: #0C0C0C;
}

#main-header .mid-section .header-searh-form .buttons-holder {
  position: relative;
  height: 40px;
}

@media screen and (max-width: 767px) {
  #main-header .mid-section .header-searh-form .buttons-holder {
    height: 55px;
  }
}

@media screen and (max-width: 767px) {
  #main-header .mid-section .header-searh-form .buttons-holder .btn.btn-primary {
    display: none;
  }
}

#main-header .mid-section .header-searh-form .btn {
  padding: 0 15px;
  min-width: 90px;
  height: 100%;
  max-height: 40px;
  line-height: normal;
}

#main-header .mid-section .header-searh-form .reset {
  position: absolute;
  top: 0;
  left: -27px;
  bottom: 0;
  width: 14px;
  height: 14px;
  margin: auto 0;
  border: 0;
  background: url("../img/reset-input-icon.svg") center center no-repeat;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media screen and (min-width: 768px) {
  #main-header .mid-section .header-searh-form .reset {
    opacity: 0;
  }
}

@media screen and (max-width: 767px) {
  #main-header .mid-section .header-searh-form .reset {
    left: auto;
    right: 15px;
    width: 22px;
    height: 22px;
    background: url("../img/reset-input-icon-2.svg") center center no-repeat;
  }
}

#main-header .mid-section .header-searh-form .reset.show {
  opacity: 1;
}

#main-header .mid-section .header-searh-form .search-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  -webkit-box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
  border-radius: 0px 0px 2px 2px;
  z-index: 10000;
}

@media screen and (max-width: 767px) {
  #main-header .mid-section .header-searh-form .search-dropdown {
    display: block;
    position: static;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

#main-header .mid-section .header-searh-form .search-dropdown .phrase-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 767px) {
  #main-header .mid-section .header-searh-form .search-dropdown .phrase-details {
    padding: 20px 0;
    margin: 0 15px 0 15px;
  }
}

#main-header .mid-section .header-searh-form .search-dropdown .phrase-details .phrase {
  max-width: 60%;
  font-family: "Metropolis 600";
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  #main-header .mid-section .header-searh-form .search-dropdown .phrase-details .phrase {
    display: none;
  }
}

#main-header .mid-section .header-searh-form .search-dropdown .phrase-details .all-results {
  line-height: 14px;
  font-size: 14px;
}

#main-header .mid-section .header-searh-form .search-dropdown .phrase-details .all-results .amount {
  color: #8c8c8c;
}

#main-header .mid-section .header-searh-form .search-dropdown .list {
  padding: 25px;
}

#main-header .mid-section .header-searh-form .search-dropdown .list .row {
  margin: 0 -12px;
}

#main-header .mid-section .header-searh-form .search-dropdown .list .row [class*="col-"] {
  padding: 0 12px;
  margin: 0 0 24px 0;
}

@media screen and (max-width: 767px) {
  #main-header .mid-section .header-searh-form .search-dropdown .list .row [class*="col-"] {
    margin-bottom: 32px;
  }
}

#main-header .mid-section .header-searh-form .search-dropdown .list .product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}

#main-header .mid-section .header-searh-form .search-dropdown .list .product .image {
  min-width: 55px;
  width: 55px;
  padding-right: 10px;
}

#main-header .mid-section .header-searh-form .search-dropdown .list .product .details .name {
  margin: 0 0 8px 0;
  line-height: 20px;
  font-size: 14px;
  font-family: "Metropolis 400";
}

#main-header .mid-section .header-searh-form .search-dropdown .list .product .details .price {
  display: block;
  line-height: 14px;
  font-size: 14px;
  font-family: "Metropolis 700";
}

@media screen and (min-width: 768px) {
  #main-header .mid-section .header-searh-form .search-dropdown .view-more-holder {
    margin: -15px 0 0 0;
    padding: 0 0 20px 0;
  }
}

@media screen and (max-width: 767px) {
  #main-header .mid-section .header-searh-form .search-dropdown .view-more-holder {
    font-size: 14px;
  }
}

#main-header .mid-section .user-menu {
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

#main-header .mid-section .user-menu li {
  position: relative;
  margin: 0 32px 0 0;
}

#main-header .mid-section .user-menu li .badge {
  position: absolute;
  top: -10px;
  right: -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 23px;
  height: 16px;
  background: #FAD1CE;
  border: 2px solid #fff;
  color: #0C0C0C;
  font-style: normal;
  font-size: 12px;
  font-family: "Metropolis 500";
  border-radius: 9px;
}

#main-header .mid-section .user-menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#main-header .mid-section .user-menu li:last-child {
  margin: 0;
}

#main-header .mid-section .user-menu li.dropdown > a, #main-header .mid-section .user-menu li.dropdown > button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  background: none;
  border: 0;
}

#main-header .mid-section .user-menu li.dropdown > a::after, #main-header .mid-section .user-menu li.dropdown > button::after {
  content: normal;
}

#main-header .mid-section .user-menu li.dropdown .dropdown-menu {
  top: calc(100% + 15px);
  left: -40px;
  right: auto;
  width: 300px;
  min-width: 1px;
  padding: 25px 15px;
  border: 1px solid rgba(12, 12, 12, 0.05);
  -webkit-box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  z-index: 10002;
}

@media screen and (max-width: 1090px) {
  #main-header .mid-section .user-menu li.dropdown .dropdown-menu {
    left: auto;
    right: 0;
  }
}

#main-header .mid-section .user-menu li.dropdown .dropdown-menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 20px;
  width: 100%;
}

#main-header .mid-section .user-menu li.dropdown .dropdown-menu .dropdown-heading {
  padding: 8px 0;
  line-height: 28px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

#main-header .mid-section .user-menu li.dropdown .dropdown-menu .btn.btn-primary, #main-header .mid-section .user-menu li.dropdown .dropdown-menu .btn.btn-secondary {
  min-height: 40px;
  padding: 8px 10px;
}

#main-header .mid-section .user-menu li.dropdown .dropdown-menu .auth-options {
  padding-top: 15px;
}

#main-header .mid-section .user-menu li.dropdown .dropdown-menu .auth-options .registration-notice {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px 0;
  font-size: 14px;
  color: #676563;
}

#main-header .mid-section .user-menu li.dropdown .dropdown-menu .auth-options .registration-notice::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  margin: auto;
  background-color: #edeae8;
}

#main-header .mid-section .user-menu li.dropdown .dropdown-menu .auth-options .registration-notice span {
  position: relative;
  display: block;
  padding: 0 20px;
  background-color: #fff;
  z-index: 1;
}

#main-header .mid-section .user-menu li.dropdown .close-dropdown {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 11px;
  height: 11px;
  border: 0;
  background: url("../img/close-dropdown-icon.svg") center center no-repeat;
}

#main-header .mid-section .user-menu li.dropdown .authentication.login {
  margin: 0;
}

#main-header .mid-section .user-menu li.dropdown .authentication.login form label {
  font-size: 13px;
  color: #0C0C0C;
}

#main-header .mid-section .user-menu li.dropdown .authentication.login form .form-group {
  margin: 0 0 15px 0;
}

#main-header .mid-section .user-menu li.dropdown .authentication.login form input[type="checkbox"] + label {
  margin-top: -8px;
  padding-left: 17px;
  font-size: 13px;
}

#main-header .mid-section .user-menu li.dropdown .authentication.login form input[type="checkbox"] + label::before {
  width: 12px;
  height: 12px;
  border-radius: 2px;
}

#main-header .mid-section .user-menu li.dropdown .authentication.login form .forgotten-password {
  margin-top: -8px;
}

#main-header .mid-section .user-menu li.dropdown .authentication.login form .forgotten-password a {
  display: inline-block;
}

#main-header .mid-section .user-menu li.dropdown .authentication.login form .register-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 22px 0 0 0;
  font-size: 13px;
}

#main-header .mid-section .user-menu li.dropdown .authentication.login form .register-cta a {
  margin-left: 8px;
}

#main-header .mid-section .user-menu li.dropdown .authentication.login form .btn.btn-primary {
  min-height: 48px;
}

#main-header .mid-section .user-menu li.dropdown .authentication.login form button[type="submit"],
#main-header .mid-section .user-menu li.dropdown .authentication.login form input[type="submit"] {
  margin-top: 15px;
}

#main-header .mid-section .user-menu li.dropdown .authentication.login form .social-login a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(50% - 8px);
  padding: 0;
}

#main-header .mid-section .user-menu li.dropdown .authentication.login form .social-login a.google-btn, #main-header .mid-section .user-menu li.dropdown .authentication.login form .social-login a.fb-btn {
  background-position: center center;
}

@media screen and (min-width: 992px) {
  #main-header .mid-section .user-menu li.dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
  }
}

@media screen and (min-width: 768px) {
  #main-header .mid-section .user-menu li.mobile-search {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  #main-header .mid-section .user-menu li.user {
    display: none;
  }
}

#main-header .mid-section .user-menu li.user > a span {
  max-width: 90px;
  margin: 0 0 0 7px;
  font-size: 14px;
  white-space: normal;
}

@media screen and (max-width: 1090px) {
  #main-header .mid-section .user-menu li.user > a span {
    display: none;
  }
}

#main-header .mid-section .user-menu li.whish-list {
  margin-bottom: -1px;
}

@media screen and (max-width: 767px) {
  #main-header .mid-section .user-menu li.whish-list {
    display: none;
  }
}

#main-header .mid-section .user-menu li.cart .dropdown-menu {
  display: block;
  position: fixed;
  top: 0;
  right: -120%;
  left: auto;
  bottom: 0;
  margin: 0;
  border: 0;
  width: 385px;
  padding: 0 30px 30px 30px;
  overflow: auto;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

@media screen and (max-width: 575px) {
  #main-header .mid-section .user-menu li.cart .dropdown-menu {
    width: 100%;
  }
}

#main-header .mid-section .user-menu li.cart .dropdown-menu::after {
  content: '';
  position: fixed;
  top: 0;
  bottom: 0;
  right: -120vw;
  width: 100vw;
  background: rgba(12, 12, 12, 0.4);
  opacity: 0;
  visibility: none;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

#main-header .mid-section .user-menu li.cart .dropdown-menu.show {
  right: 0;
}

#main-header .mid-section .user-menu li.cart .dropdown-menu.show::after {
  right: 385px;
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 575px) {
  #main-header .mid-section .user-menu li.cart .dropdown-menu.show::after {
    right: 100%;
  }
}

#main-header .mid-section .user-menu li.cart .dropdown-menu .dropdown-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 23px 30px;
  margin: 0 -30px;
  border-bottom: 1px solid rgba(12, 12, 12, 0.1);
}

#main-header .mid-section .user-menu li.cart .dropdown-menu .dropdown-header .dropdown-name {
  line-height: 24px;
  font-size: 24px;
  font-family: "Metropolis 600";
}

#main-header .mid-section .user-menu li.cart .dropdown-menu .dropdown-header .close {
  padding: 0 0 0 20px;
  background: url("../img/close-dropdown-icon.svg") 0 2px no-repeat;
  border: 0;
  color: #585858;
  font-size: 16px;
}

#main-header .mid-section .user-menu li.cart .dropdown-menu .cart-notice {
  margin-top: 55px;
  padding: 0 15px;
  white-space: normal;
  text-align: center;
}

#main-header .mid-section .user-menu li.cart .dropdown-menu .cart-notice .icon {
  margin: 0 0 28px 0;
}

#main-header .mid-section .user-menu li.cart .dropdown-menu .cart-notice .icon img {
  max-height: 140px;
}

@media screen and (max-width: 575px) {
  #main-header .mid-section .user-menu li.cart .dropdown-menu .cart-notice .icon img {
    max-height: 100px;
  }
}

#main-header .mid-section .user-menu li.cart .dropdown-menu .cart-notice h6 {
  margin: 0 0 12px 0;
  line-height: 30px;
  font-size: 24px;
  font-family: "Metropolis 600";
  white-space: normal;
}

#main-header .mid-section .user-menu li.cart .dropdown-menu .cart-notice p {
  margin: 0 0 46px 0;
  line-height: 24px;
  color: #585858;
}

#main-header .mid-section .user-menu li.cart .dropdown-menu .cart-notice p a {
  display: inline-block;
  font-family: "Metropolis 500";
}

#main-header .mid-section .user-menu li.cart .dropdown-menu .cart-notice .btn {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 193px;
  min-height: 48px;
  text-align: center;
}

#main-header .mid-section .user-menu li.cart .dropdown-menu .products-holder {
  height: calc(100% - 71px);
}

#main-header .mid-section .user-menu li.cart .dropdown-menu .products-list {
  margin: 0 -30px;
  width: calc(100% + 60px);
}

#main-header .mid-section .user-menu li.cart .dropdown-menu .products-list .product-item {
  padding: 30px 30px 27px 30px;
  margin: 0;
  border-bottom: 1px solid #e7e7e7;
}

#main-header .mid-section .user-menu li.cart .dropdown-menu .products-list .product-item:last-child {
  border: 0;
}

#main-header .mid-section .user-menu li.cart .dropdown-menu .products-list .product-item .thumbnail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  min-width: 60px;
  margin: 0 22px 0 0;
}

#main-header .mid-section .user-menu li.cart .dropdown-menu .products-list .product-item .details {
  margin: -5px 0 0 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

#main-header .mid-section .user-menu li.cart .dropdown-menu .products-list .product-item .details .name {
  margin: 0 0 17px 0;
  line-height: 24px;
}

#main-header .mid-section .user-menu li.cart .dropdown-menu .products-list .product-item .details .price-holder .amount {
  margin: 0 5px 0 0;
  color: #585858;
}

#main-header .mid-section .user-menu li.cart .dropdown-menu .products-list .product-item .details .price-holder .price {
  color: #000;
  font-family: "Metropolis 600";
}

#main-header .mid-section .user-menu li.cart .dropdown-menu .products-list .product-item .details .price-holder .price .old {
  display: block;
  margin: 0 0 9px 0;
  line-height: 16px;
  font-family: "Metropolis 400";
  color: #8B8B8B;
  text-decoration: line-through;
}

#main-header .mid-section .user-menu li.cart .dropdown-menu .products-list .product-item .details .remove {
  padding: 0 0 0 20px;
  background: url("../img/close-dropdown-icon.svg") 0 2px no-repeat;
  border: 0;
  color: #585858;
}

#main-header .mid-section .user-menu li.cart .dropdown-menu .total {
  margin: 0 -30px;
  padding: 25px 30px 0 30px;
  border-top: 1px solid rgba(12, 12, 12, 0.1);
}

#main-header .mid-section .user-menu li.cart .dropdown-menu .total .sum {
  margin: 0 0 45px 0;
  font-family: "Metropolis 600";
}

#main-header .mid-section .user-menu li.cart .dropdown-menu .total .sum .total-sum {
  line-height: 24px;
  font-size: 24px;
}

#main-header .mid-section .user-menu li.cart .dropdown-menu .total .buttons a, #main-header .mid-section .user-menu li.cart .dropdown-menu .total .buttons input, #main-header .mid-section .user-menu li.cart .dropdown-menu .total .buttons button {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 48px;
  padding: 8px 10px;
}

#main-header .mid-section .user-menu li.cart .dropdown-menu .total .buttons a:first-child, #main-header .mid-section .user-menu li.cart .dropdown-menu .total .buttons input:first-child, #main-header .mid-section .user-menu li.cart .dropdown-menu .total .buttons button:first-child {
  margin-bottom: 15px;
}

#main-header .mid-section .user-menu li.mobile-search-botton button {
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  background: #fff url("../img/header-search-icon.svg") center center no-repeat;
  background-size: contain;
}

@media screen and (min-width: 992px) {
  #main-header .mid-section .user-menu li:hover .icon.compare {
    background: url("../img/compare-icon-hover.svg") 0 0 no-repeat;
  }
  #main-header .mid-section .user-menu li:hover .icon.cart {
    background: url("../img/cart-icon-hover.svg") 0 0 no-repeat;
  }
}

#main-header .navbar-brand {
  margin: 0;
  font-size: 0;
}

@media (max-width: 767px) {
  #main-header .navbar-brand img {
    max-height: 34px;
  }
}

#main-header .navbar-section {
  position: relative;
  padding: 0;
}

@media screen and (min-width: 1200px) {
  #main-header .navbar-section {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
}

@media screen and (max-width: 1090px) {
  #main-header .navbar-section {
    position: static;
  }
}

@media screen and (max-width: 1090px) {
  #main-header .navbar-nav {
    display: block;
  }
  #main-header .navbar-nav.main-navbar {
    display: none;
  }
}

#main-header .navbar-nav .red-bold {
  font-family: "Metropolis 700";
  color: #ED0006;
  text-transform: uppercase;
}

#main-header .navbar-nav .red-bold:hover {
  text-shadow: none;
}

#main-header .navbar-nav > li {
  margin: 0 50px 0 0;
}

@media screen and (max-width: 1399px) {
  #main-header .navbar-nav > li {
    margin: 0 30px 0 0;
  }
}

@media screen and (max-width: 1299px) {
  #main-header .navbar-nav > li {
    margin: 0 25px 0 0;
  }
}

@media screen and (max-width: 1199px) {
  #main-header .navbar-nav > li {
    margin: 0 20px 0 0;
  }
}

@media screen and (max-width: 1090px) {
  #main-header .navbar-nav > li {
    margin: 0 0 15px 0;
  }
  #main-header .navbar-nav > li:last-child {
    margin: 0;
  }
}

#main-header .navbar-nav > li:last-child {
  margin: 0;
}

#main-header .navbar-nav > li > a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 17.5px 0;
  color: #0C0C0C;
  font-size: 14px;
  text-decoration: none;
  overflow: hidden;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  border-radius: 0;
  z-index: 1002;
}

@media screen and (min-width: 1091px) {
  #main-header .navbar-nav > li > a::after {
    content: '';
    position: absolute;
    top: calc(100% - 15px);
    left: 0;
    right: 0;
    height: 2px;
    width: 24px;
    margin: 0;
    border: 0;
    background-color: transparent;
    opacity: 0;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
}

@media screen and (max-width: 1090px) {
  #main-header .navbar-nav > li > a {
    padding: 5px 0;
    font-size: 16px;
  }
  #main-header .navbar-nav > li > a:hover {
    text-shadow: none;
  }
}

@media screen and (min-width: 1091px) {
  #main-header .navbar-nav > li > a:hover {
    text-shadow: 1px 0px 0px #000;
  }
  #main-header .navbar-nav > li > a:hover::after {
    background-color: #0C0C0C;
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

#main-header .navbar-nav > li.dropdown {
  position: static;
  padding: 0;
}

#main-header .navbar-nav > li.dropdown .dropdown-toggle {
  position: relative;
}

@media screen and (max-width: 1090px) {
  #main-header .navbar-nav > li.dropdown .dropdown-toggle::after {
    position: absolute;
    top: 0;
    right: 2px;
    bottom: 0;
    width: 8px;
    height: 12px;
    margin: auto 0;
    border: 0;
    background: transparent url("../img/header-mobile-arrow-right.svg") center center no-repeat;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  #main-header .navbar-nav > li.dropdown .dropdown-toggle:hover {
    text-shadow: none !important;
  }
  #main-header .navbar-nav > li.dropdown .dropdown-toggle.show {
    background-color: transparent;
  }
  #main-header .navbar-nav > li.dropdown .dropdown-toggle.show::after {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}

#main-header .navbar-nav > li.dropdown > .dropdown-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 38px 30px 37px 30px;
  border: 0;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  border-radius: 0px 0px 2px 2px;
  -webkit-box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1090px) {
  #main-header .navbar-nav > li.dropdown > .dropdown-menu {
    top: 0;
    min-height: 100%;
    padding: 0 0 30px 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    z-index: 10000;
  }
  #main-header .navbar-nav > li.dropdown > .dropdown-menu .back-btn {
    padding: 0 0 0 20px;
    margin: 0 0 33px 0;
    line-height: 16px;
    border: 0;
    background: url("../img/back-arrow-icon.svg") left center no-repeat;
    font-family: "Metropolis 700";
  }
  #main-header .navbar-nav > li.dropdown > .dropdown-menu ul li {
    margin: 0 0 15px 0;
  }
  #main-header .navbar-nav > li.dropdown > .dropdown-menu ul li a {
    display: block;
    padding: 5px 0;
    background: none;
    color: #0C0C0C;
  }
  #main-header .navbar-nav > li.dropdown > .dropdown-menu ul li a.red-bold {
    font-family: "Metropolis 700";
    color: #ED0006;
    text-transform: uppercase;
  }
  #main-header .navbar-nav > li.dropdown > .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
  }
}

#main-header .navbar-nav > li.dropdown > .dropdown-menu > .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#main-header .navbar-nav > li.dropdown > .dropdown-menu > .links.link-block {
  display: block;
}

#main-header .navbar-nav > li.dropdown > .dropdown-menu > .links > .nav-item.has-children {
  width: 20%;
}

#main-header .navbar-nav > li.dropdown > .dropdown-menu > .links > .nav-item.has-children a {
  margin: 0 0 15px 0;
}



#main-header .navbar-nav > li.dropdown > .dropdown-menu > .links > .nav-item.has-children li a {
  color: #585858;
  text-decoration: none;
}

#main-header .navbar-nav > li.dropdown > .dropdown-menu > .links > .nav-item.has-children a {
  color: #585858;
  text-decoration: none;
}

#main-header .navbar-nav > li.dropdown > .dropdown-menu > .links > .nav-item.has-children a:hover {
  font-family: "Metropolis 600";
  color: #0c0c0c;
}

#main-header .navbar-nav > li.dropdown > .dropdown-menu > .links > .nav-item.has-children li a:hover {
  font-family: "Metropolis 600";
  color: #0c0c0c;
}

@media screen and (min-width: 992px) {
  #main-header .navbar-nav > li.dropdown:hover > .dropdown-toggle {
    text-shadow: 1px 0px 0px #000;
  }
  #main-header .navbar-nav > li.dropdown:hover > .dropdown-toggle::after {
    background-color: #0C0C0C;
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@media screen and (min-width: 1091px) {
  #main-header .navbar-nav > li.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
  }
}

#main-header .menu-toggle {
  position: relative;
  width: 26px;
  height: 19px;
  margin: 0 0 0 45px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  outline: none;
}

@media screen and (min-width: 1091px) {
  #main-header .menu-toggle {
    display: none;
  }
}

#main-header .menu-toggle .icon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 26px;
  height: 2px;
  background: #2b2b2b;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

#main-header .menu-toggle .icon::before, #main-header .menu-toggle .icon::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  width: 13px;
  height: 2px;
  background: #2b2b2b;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

#main-header .menu-toggle .icon::before {
  left: auto;
  right: 0;
  top: -8px;
}

#main-header .menu-toggle .icon::after {
  top: 8px;
}

#main-header .menu-toggle.opened .icon {
  background-color: transparent;
}

#main-header .menu-toggle.opened .icon::before {
  width: 26px;
  background-color: #E1B3B0;
  -webkit-transform: rotate(45deg) translate(5px, 6px);
          transform: rotate(45deg) translate(5px, 6px);
}

#main-header .menu-toggle.opened .icon::after {
  width: 26px;
  background-color: #E1B3B0;
  -webkit-transform: rotate(-45deg) translate(5px, -6px);
          transform: rotate(-45deg) translate(5px, -6px);
}

#main-header .nav-holder {
  position: relative;
}

#main-header .nav-holder .mobile-view {
  position: relative;
}

@media screen and (min-width: 1091px) {
  #main-header .nav-holder .mobile-view {
    display: none;
  }
}

#main-header .nav-holder .mobile-view .user-navbar-links {
  padding-bottom: 27px;
  margin: 0 0 28px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#main-header .nav-holder .mobile-view .user-navbar-links .nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#main-header .nav-holder .mobile-view .user-navbar-links .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20px;
  margin: -2px 0 0 0;
}

#main-header .nav-holder .mobile-view .user-navbar-links .icon img {
  max-width: 15px;
}

@media screen and (max-width: 1090px) {
  #main-header .nav-holder {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: calc(100vh - 108px);
    padding: 27px 40px 35px 40px;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    overflow: auto;
    z-index: 100001;
  }
  #main-header .nav-holder.show {
    left: 0;
  }
  #main-header .nav-holder.show::before {
    visibility: visible;
    opacity: 1;
  }
  #main-header .nav-holder.show .btn-close {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@media screen and (max-width: 767px) {
  #main-header .nav-holder {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media screen and (max-width: 575px) {
  #main-header .nav-holder {
    padding-left: 15px;
    padding-right: 15px;
  }
}

#main-header .mobile-toolbar {
  position: relative;
  height: 48px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 10001;
}

#main-header .mobile-toolbar .sort-by, #main-header .mobile-toolbar .mobile-filter-button {
  width: 50%;
}

#main-header .mobile-toolbar .sort-by .bootstrap-select .dropdown-toggle, #main-header .mobile-toolbar .mobile-filter-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 48px;
  padding: 0;
  border: 0;
  background: #fff;
  color: #000;
  border-radius: 0;
}

#main-header .mobile-toolbar .bootstrap-select .dropdown-toggle::after {
  content: normal;
}

#main-header .mobile-toolbar .bootstrap-select .dropdown-toggle .filter-option-inner-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#main-header .mobile-toolbar .bootstrap-select .dropdown-toggle .filter-option-inner-inner::before {
  content: '';
  width: 17px;
  height: 10px;
  margin: 0 6px 0 0;
  background: url("../img/sort-by-icon.svg") left center no-repeat;
}

#main-header .mobile-toolbar .bootstrap-select .dropdown-menu {
  margin-top: 0 !important;
  border: 0;
  background: #fff;
  -webkit-box-shadow: 0px 7px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 7px 8px rgba(0, 0, 0, 0.1);
  border-radius: 0px 0px 5px 0px;
}

#main-header .mobile-toolbar .bootstrap-select .dropdown-menu .dropdown-menu li {
  text-align: center;
}

#main-header .mobile-toolbar .bootstrap-select .dropdown-menu .dropdown-menu li a {
  display: block;
  padding: 12px 0;
  border: 0;
  font-size: 16px;
  color: #5F5F5F;
}

#main-header .mobile-toolbar .bootstrap-select .dropdown-menu .dropdown-menu li a.selected {
  background: #FFF0EF;
  color: #000;
  font-family: "Metropolis 600";
}

#main-header .mobile-toolbar .mobile-filter-button {
  position: relative;
}

#main-header .mobile-toolbar .mobile-filter-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto 0;
  width: 1px;
  height: 16px;
  background-color: #ebbcb9;
}

#main-header .mobile-toolbar .mobile-filter-button span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#main-header .mobile-toolbar .mobile-filter-button span::before {
  content: '';
  width: 15px;
  height: 14px;
  margin: 0 6px 0 0;
  background: url("../img/filter-icon.svg") center center no-repeat;
}

@media screen and (min-width: 768px) {
  #main-header.on-scroll {
    top: -32px;
  }
  #main-header.on-scroll .top-bar {
    opacity: 0;
    visibility: hidden;
  }
}

.content-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  z-index: 1001;
}

.content-overlay.show {
  opacity: 1;
  visibility: visible;
}

.page-title {
  margin: 0 0 55px 0;
  line-height: 65px;
  font-size: 55px;
  font-family: "Metropolis 600";
}

.page-title.search-results-heading {
  margin: 0 0 44px 0;
  line-height: 36px;
  font-size: 36px;
}

@media screen and (max-width: 767px) {
  .page-title.search-results-heading {
    margin: 0 0 34px 0;
    line-height: 30px;
    font-size: 24px;
  }
}

.page-title.search-results-heading span {
  display: block;
  margin: 18px 0 0 0;
  line-height: 16px;
  font-family: "Metropolis 400";
  font-size: 16px;
  color: #585858;
}

@media screen and (max-width: 767px) {
  .page-title.search-results-heading span {
    margin: 12px 0 0 0;
  }
}

.page-title.has-icon {
  position: relative;
  line-height: 36px;
  font-size: 36px;
}

@media screen and (max-width: 991px) {
  .page-title.has-icon {
    line-height: 30px;
    font-size: 24px;
  }
}

.page-title.has-icon::before {
  content: '';
  position: absolute;
  top: -10px;
  width: 54px;
  height: 54px;
  left: -26px;
  margin: -1px 0 0 0;
  background: linear-gradient(49.97deg, #EBBCB9 14.71%, rgba(235, 188, 185, 0.14) 82.86%);
  border-radius: 50%;
}

@media screen and (max-width: 767px) {
  .page-title.has-icon::before {
    width: 48px;
    height: 48px;
  }
}

.page-title.has-icon span {
  position: relative;
  z-index: 1;
}

.page-header-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 160px;
  margin: -32px 0 25px 0;
  padding: 30px 0;
  background-size: cover !important;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .page-header-box {
    min-height: 75px;
    padding: 15px 0;
  }
}

.page-header-box .page-title {
  margin: 0;
  line-height: 65px;
  font-size: 55px;
}

@media screen and (max-width: 1399px) {
  .page-header-box .page-title {
    line-height: 52px;
    font-size: 42px;
  }
}

@media screen and (max-width: 767px) {
  .page-header-box .page-title {
    line-height: 28px;
    font-size: 24px;
  }
}

.page-header-box .sub-heading {
  display: block;
  line-height: 24px;
  font-family: "Metropolis 300";
  font-size: 24px;
}

@media screen and (max-width: 767px) {
  .page-header-box .sub-heading {
    line-height: 18px;
    font-size: 16px;
  }
}

.block-heading {
  margin: 0 0 32px 0;
  line-height: 24px;
  font-size: 24px;
  font-family: "Metropolis 600";
}

.view-more {
  position: relative;
  padding: 0 25px 0 0;
  margin: 0;
  line-height: 20px;
  border: 0;
  background: none;
  font-size: 16px;
  font-weight: 400;
  font-family: "Metropolis 400";
  text-decoration: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.view-more::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 18px;
  height: 16px;
  margin: auto 0;
  background: url("../img/arrow-right.svg") center center no-repeat;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media screen and (min-width: 992px) {
  .view-more:hover {
    color: #777;
    text-decoration: none;
  }
  .view-more:hover::after {
    opacity: .6;
  }
}

.quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 48px;
  width: 105px;
  margin: 0;
  border: 1px solid rgba(12, 12, 12, 0.1);
  background: #fff;
}

@media screen and (max-width: 767px) {
  .quantity {
    height: 40px;
  }
}

.quantity input {
  width: calc(100% - 70px);
  line-height: 40px;
  padding: 0;
  border: 0;
  background: #fff;
  font-size: 16px;
  font-family: "Metropolis 600";
  pointer-events: none;
  text-align: center;
}

.quantity button.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 35px;
  min-width: 35px;
  padding: 0;
}

.quantity button.btn.minus {
  background: #fff url("../img/minus-icon.svg") center center no-repeat;
}

.quantity button.btn.plus {
  background: #fff url("../img/plus-icon.svg") center center no-repeat;
}

@media screen and (min-width: 992px) {
  .quantity button.btn:hover {
    background-color: #f7f7f7;
  }
}

.accordion .accordion-item {
  margin: 0;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
  border-radius: 0;
}

.accordion .accordion-item:last-child {
  margin: 0;
}

.accordion .accordion-item .accordion-header {
  border: 0;
  line-height: normal;
  border-radius: 3px;
}

.accordion .accordion-item .accordion-header .accordion-button {
  padding: 35px 160px 35px 25px;
  background: #fff;
  border: 0;
  line-height: 24px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Metropolis 600";
  color: #0C0C0C;
  white-space: normal;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
}

@media screen and (max-width: 767px) {
  .accordion .accordion-item .accordion-header .accordion-button {
    padding: 25px 50px 25px 0;
  }
}

.accordion .accordion-item .accordion-header .accordion-button::after {
  position: absolute;
  top: 0;
  right: 25px;
  bottom: 0;
  width: 16px;
  height: 16px;
  margin: auto 0;
  background: url("../img/accordion-plus-icon.svg") center center no-repeat;
  background-size: contain;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media screen and (max-width: 767px) {
  .accordion .accordion-item .accordion-header .accordion-button::after {
    right: 0;
  }
}

.accordion .accordion-item .accordion-header .accordion-button[aria-expanded="true"]::after {
  background: url("../img/accordion-minus-icon.svg") center center no-repeat;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.accordion .accordion-item .accordion-body {
  padding: 0 160px 30px 25px;
  background-color: #fff;
  font-size: 16px;
  color: #585858;
  border-radius: 0;
}

@media screen and (max-width: 767px) {
  .accordion .accordion-item .accordion-body {
    padding: 0 50px 25px 0;
  }
}

.accordion .accordion-item .accordion-body p {
  margin: 0 0 15px 0;
  line-height: 24px;
}

.accordion .accordion-item .accordion-body p:last-child {
  margin: 0;
}

.has-aside > .row {
  margin: 0 -12px;
}

.has-aside > .row > [class*="col-"] {
  padding: 0 12px;
}

.sidebar.filters {
  -webkit-box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}

.sidebar.filters .mobile-close-btn {
  display: none;
}

@media screen and (max-width: 991px) {
  .sidebar.filters {
    position: fixed;
    top: 0;
    right: -110%;
    bottom: 0;
    padding: 0;
    width: 315px;
    min-width: 315px;
    background-color: #fff;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    z-index: 1001;
  }
  .sidebar.filters > div {
    height: 100%;
    overflow: auto;
  }
  .sidebar.filters .mobile-filter-heading {
    padding: 23px 20px;
    margin: 0 -20px 25px -20px;
    border-bottom: 1px solid #eae9e7;
    font-size: 21px;
    font-weight: 500;
  }
  .sidebar.filters .widget {
    padding: 0 0 25px 0;
    margin: 0 0 35px 0;
    border-bottom: 1px solid #eae9e7;
  }
  .sidebar.filters::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 100vw;
    background-color: rgba(12, 12, 12, 0.5);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  .sidebar.filters form .submit a, .sidebar.filters form .submit button, .sidebar.filters form .submit input {
    width: 100%;
  }
  .sidebar.filters form .submit a:first-child, .sidebar.filters form .submit button:first-child, .sidebar.filters form .submit input:first-child {
    margin: 0 0 25px 0;
  }
  .sidebar.filters .mobile-close-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 0;
    right: 100%;
    width: 32px;
    height: 32px;
    border: 0;
    background: #0C0C0C url("../img/aside-close-icon.svg") center center no-repeat;
    background-size: 18px;
  }
  .sidebar.filters.opened {
    right: 0;
  }
  .sidebar.filters.opened::before {
    right: 315px;
    visibility: visible;
    opacity: 1;
  }
}

@media screen and (max-width: 991px) and (max-width: 360px) {
  .sidebar.filters.opened::before {
    right: calc(100vw - 32px);
  }
}

@media screen and (max-width: 991px) {
  .sidebar.filters.opened .btn-close {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@media screen and (max-width: 360px) {
  .sidebar.filters {
    width: calc(100vw - 32px);
  }
}

.sidebar.filters .filters-heading {
  padding: 16px 25px;
  margin: 0 0 35px 0;
  background: #FAD1CE;
  line-height: 16px;
  font-size: 16px;
  font-family: "Metropolis 600";
  color: #0C0C0C;
  border-radius: 2px 2px 0 0;
}

.sidebar.filters .filters-heading .reset-form {
  padding: 0 0 0 15px;
  border: 0;
  line-height: 14px;
  background: url(../img/icon-close.svg) left 2px no-repeat;
  font-family: "Metropolis 400";
  font-size: 14px;
}

.sidebar.filters .widget-heading {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 26px 0;
  line-height: 16px;
  font-size: 16px;
  font-family: "Metropolis 600";
}

@media screen and (max-width: 991px) {
  .sidebar.filters .widget-heading {
    margin: 0 0 23px 0;
  }
}

.sidebar.filters .widget-heading.allow-slide {
  cursor: pointer;
}

.sidebar.filters .widget-heading.allow-slide::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 12px;
  height: 7px;
  margin: auto 0;
  background: url("../img/arrow-down.svg") center center no-repeat;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.sidebar.filters .widget-heading.closed {
  margin: 0;
  border-color: transparent;
}

.sidebar.filters .widget-heading.closed::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
  background: url("../img/arrow-down.svg") center center no-repeat;
}

.sidebar.filters .amount {
  margin-left: 15px;
  color: #BCBCBC;
  font-weight: 400;
  font-style: normal;
}

.sidebar.filters .widget {
  padding: 0 25px 30px 25px;
  margin: 0 0 30px 0;
  border-bottom: 1px solid rgba(12, 12, 12, 0.05);
}

@media screen and (max-width: 1199px) {
  .sidebar.filters .widget {
    padding: 0 15px 30px 15px;
  }
}

.sidebar.filters .widget:last-child {
  margin: 0;
  border: 0;
}

.sidebar.filters .price-range-holder {
  margin: 0 0 24px 0;
}

.sidebar.filters .price-range-holder input {
  width: 50%;
  background: #fff;
  border: 0;
  font-weight: 400;
}

.sidebar.filters .price-range-holder input:last-child {
  text-align: right;
}

.sidebar.filters .ui-slider {
  height: 4px;
  margin: 0 0 8px 0;
  border: 0;
  background: #EFEFEF;
  border-radius: 2px;
}

.sidebar.filters .ui-slider .ui-slider-range {
  background: #FAD1CE;
  border: 0;
  border-radius: 2px;
}

.sidebar.filters .ui-slider .ui-slider-handle {
  top: -6px;
  width: 16px;
  height: 16px;
  margin: 0;
  border: 0;
  background: #0C0C0C;
  cursor: pointer;
  outline: none;
  border-radius: 50%;
}

.sidebar.filters .ui-slider .ui-slider-handle::before {
  content: '';
  position: absolute;
  right: -10px;
  display: block;
  width: 20px;
  height: 20px;
  border: 0;
  background: transparent;
}

@media screen and (max-width: 991px) {
  .sidebar.filters .checkboxes {
    margin-top: 0;
  }
}

.sidebar.filters .checkboxes label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sidebar.filters .ps-wrapper {
  max-height: 300px;
  padding-right: 20px;
  padding-top: 2px;
}

.sidebar.filters .selected-filters {
  margin: -10px 0;
}

.sidebar.filters .selected-filters li {
  position: relative;
  padding: 0 0 0 17px;
  margin: 0 0 14px 0;
  font-size: 16px;
}

.sidebar.filters .selected-filters li:last-child {
  margin: 0;
}

.sidebar.filters .selected-filters li .remove {
  position: absolute;
  left: 0;
  width: 8px;
  height: 100%;
  border: 0;
  background: url("../img/icon-close.svg") center center no-repeat;
}

.sidebar.filters .selected-filters li a {
  line-height: 16px;
  color: #5F5F5F;
}

.mobile-total {
  margin: 0 0 25px 0;
}

.mobile-total .total {
  line-height: 24px;
  color: #A4A3A3;
  font-weight: 300;
}

.mobile-total .total strong {
  color: #888380;
  font-weight: 600;
}

.toolbar {
  margin: 0 0 60px 0;
}

@media screen and (max-width: 991px) {
  .toolbar {
    margin: 0 0 15px 0;
  }
}

@media screen and (max-width: 575px) {
  .toolbar .selects-holder {
    width: calc(50% - 7.5px);
  }
}

.toolbar .mobile-filter-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  min-width: 150px;
  border: 1px solid #cfcbc8;
  background: #fff;
}

@media screen and (max-width: 576px) {
  .toolbar .mobile-filter-button {
    width: calc(50% - 7.5px);
  }
}

.toolbar .total {
  line-height: 24px;
  color: #666;
}

@media screen and (max-width: 991px) {
  .toolbar .total {
    display: none;
  }
}

.toolbar .bootstrap-select {
  width: 100%;
}

.toolbar .bootstrap-select .dropdown-toggle {
  height: 32px;
  padding-left: 10px;
}

.toolbar .limit > span, .toolbar .sort-by > span {
  margin: 0 10px 0 0;
  white-space: nowrap;
}

.toolbar .limit {
  margin: 0 25px 0 0;
}

@media screen and (max-width: 767px) {
  .toolbar .limit {
    display: none !important;
  }
}

@media screen and (max-width: 575px) {
  .toolbar .sort-by {
    width: 100%;
    min-width: 100%;
  }
  .toolbar .sort-by > span {
    display: none;
  }
}

.toolbar .sort-by .bootstrap-select .dropdown-toggle {
  min-width: 150px;
}

@media screen and (max-width: 767px) {
  .toolbar .sort-by .bootstrap-select .dropdown-toggle {
    min-width: 1px;
  }
}

.mobile-back-link {
  margin: -29px 0 30px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-back-link a {
  display: block;
  padding: 23px 0;
  background: url("../img/mobile-back-arrow.svg") left center no-repeat;
  font-family: "Metropolis 600";
  text-align: center;
}

.mobile-products-amount {
  display: block;
  margin: 0 0 35px 0;
  line-height: 16px;
  font-size: 14px;
  color: #585858;
}

.section-heading {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 55px 0;
  line-height: 36px;
  font-size: 36px;
  font-weight: 600;
  font-family: "Metropolis 600";
}

@media screen and (max-width: 1399px) {
  .section-heading {
    line-height: 36px;
    font-size: 32px;
  }
}

@media screen and (max-width: 767px) {
  .section-heading {
    margin: 0 0 40px 0;
    line-height: 28px;
    font-size: 24px;
  }
}

.section-heading::before {
  content: '';
  position: absolute;
  top: -11px;
  width: 54px;
  height: 54px;
  left: -26px;
  margin: -1px 0 0 0;
  background: linear-gradient(49.97deg, #EBBCB9 14.71%, rgba(235, 188, 185, 0.14) 82.86%);
  border-radius: 50%;
}

.section-heading span {
  position: relative;
  z-index: 1;
}

.section-heading .view-more {
  position: absolute;
  right: 0;
}

@media screen and (max-width: 991px) {
  .section-heading .view-more {
    display: none;
  }
}

.section-block.hero-slider {
  margin: -5px 0 130px 0;
}

@media screen and (max-width: 991px) {
  .section-block.hero-slider {
    margin-bottom: 75px;
  }
}

.section-block.hero-slider .hero-swiper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*min-height: 540px;*/
  background-size: cover !important;
}

@media screen and (max-width: 1299px) {
  .section-block.hero-slider .hero-swiper .swiper-slide {
    /*min-height: 460px;*/
  }
}

@media screen and (max-width: 991px) {
  .section-block.hero-slider .hero-swiper .swiper-slide {
    height: auto;
    min-height: 1px;
    /*padding: 50px 0;*/
  }
}

.section-block.hero-slider .hero-swiper .swiper-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: transparent;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .section-block.hero-slider .hero-swiper .swiper-pagination {
    bottom: 18px;
  }
}

.section-block.hero-slider .hero-swiper .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  width: 12px;
  height: 12px;
  margin: 0 2px;
  background: transparent;
  border: 2px solid #FBE0DD;
  opacity: 1;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  border-radius: 50%;
}

@media screen and (max-width: 767px) {
  .section-block.hero-slider .hero-swiper .swiper-pagination .swiper-pagination-bullet:last-child {
    margin: 0;
  }
}

@media screen and (min-width: 992px) {
  .section-block.hero-slider .hero-swiper .swiper-pagination .swiper-pagination-bullet:hover {
    background-color: #0C0C0C;
    border-color: #0C0C0C;
  }
}

.section-block.hero-slider .hero-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #0C0C0C;
  border-color: #0C0C0C;
}

.section-block.hero-slider .text {
  max-width: 60%;
}

@media screen and (max-width: 991px) {
  .section-block.hero-slider .text {
    max-width: 100%;
  }
}

.section-block.hero-slider .text .slide-heading {
  margin: 0 0 14px 0;
  line-height: 65px;
  font-size: 55px;
  font-weight: 600;
  font-family: "Metropolis 600";
}

@media screen and (max-width: 1299px) {
  .section-block.hero-slider .text .slide-heading {
    line-height: 55px;
    font-size: 45px;
  }
}

@media screen and (max-width: 991px) {
  .section-block.hero-slider .text .slide-heading {
    line-height: 42px;
    font-size: 36px;
  }
}

@media screen and (min-width: 768px) {
  .section-block.hero-slider .text .slide-heading {
    max-width: 70%;
  }
}

@media screen and (max-width: 767px) {
  .section-block.hero-slider .text .slide-heading {
    margin: 0 0 8px 0;
  }
}

.section-block.hero-slider .text p, .section-block.hero-slider .text span {
  margin: 0 0 47px 0;
  line-height: 34px;
  font-size: 24px;
  font-family: "Metropolis 300";
}

@media screen and (max-width: 991px) {
  .section-block.hero-slider .text p, .section-block.hero-slider .text span {
    margin: 0 0 32px 0;
    line-height: 24px;
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .section-block.hero-slider .text p, .section-block.hero-slider .text span {
    margin: 0 0 24px 0;
  }
}

.section-block.hero-slider .text .btn {
  min-width: 195px;
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (max-width: 1399px) {
  .section-block.categories .categories-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (min-width: 992px) {
  .section-block.categories .categories-list {
    margin: 0 -12.5px;
  }
}

@media screen and (min-width: 992px) {
  .section-block.categories .categories-list [class*="col-"] {
    padding: 0 12.5px;
  }
}

@media screen and (max-width: 991px) {
  .section-block.categories .owl-carousel {
    width: 105vw;
  }
}

@media screen and (max-width: 767px) {
  .section-block.categories .owl-carousel {
    width: 100vw;
    margin-left: -30px;
  }
  .section-block.categories .owl-carousel .owl-stage-outer {
    padding-left: 30px;
  }
}

@media screen and (max-width: 575px) {
  .section-block.categories .owl-carousel {
    width: calc(100vw + 70px);
  }
}

.section-block.categories .category {
  display: block;
  position: relative;
  height: 400px;
  width: calc(16.66% - 25px);
  margin: 0 12.5px;
  background-color: #FFF0EF;
  overflow: hidden;
  border-radius: 2px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
}

@media screen and (min-width: 1400px) {
  .section-block.categories .category {
    min-width: 191px;
  }
}

@media screen and (max-width: 1399px) {
  .section-block.categories .category {
    width: calc(33.33% - 25px);
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 991px) {
  .section-block.categories .category {
    width: 100%;
    margin: 0;
  }
}

@media screen and (max-width: 767px) {
  .section-block.categories .category {
    height: 300px;
  }
}

@media screen and (max-width: 575px) {
  .section-block.categories .category {
    height: 240px;
  }
}

.section-block.categories .category .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 15px;
  left: 50%;
  bottom: 15px;
  width: 100%;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
}

.section-block.categories .category .image img {
  max-height: 100%;
  width: auto;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.section-block.categories .category .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  bottom: 30px;
}

@media screen and (max-width: 575px) {
  .section-block.categories .category .text {
    left: 15px;
    bottom: 23px;
  }
}

.section-block.categories .category .text .name {
  margin: 0 0px -25px 0;
  line-height: 24px;
  font-weight: 300;
  font-family: "Metropolis 300";
  font-size: 24px;
  white-space: nowrap;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
}

@media screen and (max-width: 767px) {
  .section-block.categories .category .text .name {
    line-height: 18px;
    font-size: 18px;
  }
}

.section-block.categories .category .text .view-more {
  position: absolute;
  bottom: -75px;
}

@media screen and (min-width: 992px) {
  .section-block.categories .category:hover {
    min-width: 300px;
  }
  .section-block.categories .category:hover .image {
    top: 25px;
    left: 0;
    bottom: 120px;
    width: 100%;
  }
  .section-block.categories .category:hover .text .name {
    margin: 0 0px 30px 0;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  .section-block.categories .category:hover .text .view-more {
    bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .section-block.categories .mobile-button {
    margin-top: 35px;
  }
}

.section-block.products-list {
  padding-bottom: 105px;
}

@media screen and (max-width: 1299px) {
  .section-block.products-list {
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 767px) {
  .section-block.products-list {
    padding-bottom: 80px;
  }
}

.section-block.products-list.popular {
  padding-top: 130px;
  padding-bottom: 110px;
}

@media screen and (max-width: 1399px) {
  .section-block.products-list.popular {
    padding-top: 105px;
  }
}

@media screen and (max-width: 1299px) {
  .section-block.products-list.popular {
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 767px) {
  .section-block.products-list.popular {
    padding-top: 75px;
    padding-bottom: 70px;
  }
}

.section-block.products-list.discounts .mobile-button {
  padding-top: 7px;
}

.section-block.products-list.has-banners {
  padding-bottom: 92px;
}

@media screen and (max-width: 1199px) {
  .section-block.products-list.has-banners {
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .section-block.products-list.has-banners {
    padding-bottom: 0;
  }
}

.section-block.products-list.has-banners .section-heading {
  margin: 0 0 35px 0;
  line-height: 24px;
  font-size: 24px;
}

.section-block.products-list.has-banners .section-heading::before {
  content: normal;
}

@media screen and (max-width: 991px) {
  .section-block.products-list.has-banners .banners-list {
    margin-bottom: 45px;
  }
}

.section-block.products-list.has-banners .banners-list .row {
  margin: 0 -12.5px;
}

@media screen and (max-width: 575px) {
  .section-block.products-list.has-banners .banners-list .row {
    margin: 0 -4px;
  }
}

.section-block.products-list.has-banners .banners-list .row [class*="col-"] {
  padding: 0 12.5px;
  margin: 0 0 24px 0;
}

@media screen and (max-width: 575px) {
  .section-block.products-list.has-banners .banners-list .row [class*="col-"] {
    padding: 0 4px;
    margin: 0 0 8px 0;
  }
}

.section-block.products-list.has-banners .banners-list .row [class*="col-"]:last-child {
  margin: 0;
}

.section-block.products-list.has-banners .banners-list .banner {
  border-radius: 2px;
}

.section-block.products-list.has-banners .banners-list .banner.banner-1 {
  padding-top: 30px;
}

@media screen and (max-width: 767px) {
  .section-block.products-list.has-banners .banners-list .banner.banner-1 {
    text-align: left;
  }
  .section-block.products-list.has-banners .banners-list .banner.banner-1 .text {
    text-align: left;
  }
}

@media screen and (max-width: 575px) {
  .section-block.products-list.has-banners .banners-list .banner.banner-1 {
    padding-top: 15px;
  }
}

.section-block.products-list.has-banners .banners-list .banner.banner-1 .banner-heading {
  margin: 0 0 65px 0;
  line-height: 40px;
  font-size: 40px;
  text-align: center;
}

@media screen and (max-width: 1399px) {
  .section-block.products-list.has-banners .banners-list .banner.banner-1 .banner-heading {
    line-height: 35px;
    font-size: 30px;
  }
}

@media screen and (max-width: 767px) {
  .section-block.products-list.has-banners .banners-list .banner.banner-1 .banner-heading {
    text-align: left;
  }
}

@media screen and (max-width: 575px) {
  .section-block.products-list.has-banners .banners-list .banner.banner-1 .banner-heading {
    margin: 0 0 25px 0;
    line-height: 24px;
    font-size: 24px;
  }
}

.section-block.products-list.has-banners .banners-list .banner.banner-1 p {
  margin: 0;
  line-height: 1.3;
}

@media screen and (max-width: 575px) {
  .section-block.products-list.has-banners .banners-list .banner.banner-1 p {
    font-size: 14px;
  }
}

.section-block.products-list.has-banners .banners-list .banner.banner-1 .discount {
  position: relative;
  left: 35px;
  display: block;
  margin: -20px 0 32px 0;
  line-height: 60px;
  font-size: 60px;
  font-family: "Metropolis 700";
}

@media screen and (max-width: 1399px) {
  .section-block.products-list.has-banners .banners-list .banner.banner-1 .discount {
    line-height: 50px;
    font-size: 45px;
  }
}

@media screen and (max-width: 575px) {
  .section-block.products-list.has-banners .banners-list .banner.banner-1 .discount {
    margin: -20px 0 17px 0;
    line-height: 32px;
    font-size: 32px;
  }
}

.section-block.products-list.has-banners .banners-list .banner.banner-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.section-block.products-list.has-banners .banners-list .banner.banner-2 .banner-heading {
  margin: 0 0 2px 0;
  line-height: 36px;
  font-size: 36px;
  text-transform: uppercase;
}

@media screen and (max-width: 575px) {
  .section-block.products-list.has-banners .banners-list .banner.banner-2 .banner-heading {
    margin: 0 0 5px 0;
    line-height: 24px;
    font-size: 24px;
  }
}

.section-block.products-list.has-banners .banners-list .banner.banner-2 .text {
  text-align: center;
}

.section-block.products-list.has-banners .banners-list .banner.banner-2 .text p {
  margin: 0 0 32px 0;
}

@media screen and (max-width: 575px) {
  .section-block.products-list.has-banners .banners-list .banner.banner-2 .text p {
    margin: 0 0 18px 0;
    font-size: 14px;
  }
}

.section-block.products-list.has-banners .banners-list .banner.banner-3 {
  padding: 15px;
  background-size: auto !important;
}

@media screen and (max-width: 575px) {
  .section-block.products-list.has-banners .banners-list .banner.banner-3 {
    padding: 8px;
    background-size: 50% !important;
  }
}

.section-block.products-list.has-banners .banners-list .banner.banner-3 .text {
  max-width: 200px;
  text-align: left;
}

@media screen and (max-width: 575px) {
  .section-block.products-list.has-banners .banners-list .banner.banner-3 .text {
    max-width: 115px;
  }
}

.section-block.products-list.has-banners .banners-list .banner.banner-3 .banner-heading {
  max-width: 200px;
  margin: 0 0 11px 0;
  line-height: 28px;
  font-size: 24px;
}

@media screen and (max-width: 1399px) {
  .section-block.products-list.has-banners .banners-list .banner.banner-3 .banner-heading {
    line-height: 24px;
    font-size: 20px;
  }
}

@media screen and (max-width: 575px) {
  .section-block.products-list.has-banners .banners-list .banner.banner-3 .banner-heading {
    line-height: 18px;
    font-size: 14px;
  }
}

.section-block.products-list.has-banners .banners-list .banner.banner-3 .discount {
  position: absolute;
  top: 0;
  left: calc(100% - 15px);
  bottom: -6px;
  margin: auto 0;
  height: 45px;
  line-height: 50px;
  font-size: 50px;
  font-family: "Metropolis 600";
  color: #000;
}

@media screen and (max-width: 1399px) {
  .section-block.products-list.has-banners .banners-list .banner.banner-3 .discount {
    line-height: 40px;
    font-size: 35px;
  }
}

@media screen and (max-width: 575px) {
  .section-block.products-list.has-banners .banners-list .banner.banner-3 .discount {
    bottom: -10px;
    left: 110px;
    line-height: 26px;
    font-size: 26px;
  }
}

.section-block.products-list.has-banners .banners-list .banner.banner-4 {
  background-size: auto !important;
}

@media screen and (max-width: 575px) {
  .section-block.products-list.has-banners .banners-list .banner.banner-4 {
    background-size: 100% !important;
  }
}

.section-block.products-list.has-banners .banners-list .banner.banner-4 .text {
  max-width: 265px;
  padding: 50px 0 50px 32px;
  text-align: left;
}

@media screen and (max-width: 1199px) {
  .section-block.products-list.has-banners .banners-list .banner.banner-4 .text {
    padding: 30px 0 30px 20px;
  }
}

@media screen and (max-width: 991px) {
  .section-block.products-list.has-banners .banners-list .banner.banner-4 .text {
    max-width: 50%;
  }
}

@media screen and (max-width: 575px) {
  .section-block.products-list.has-banners .banners-list .banner.banner-4 .text {
    padding: 20px 0 10px 15px;
    max-width: 160px;
  }
}

.section-block.products-list.has-banners .banners-list .banner.banner-4 .text .banner-heading {
  margin: 0 0 14px 0;
  line-height: 45px;
  font-size: 45px;
}

@media screen and (max-width: 1399px) {
  .section-block.products-list.has-banners .banners-list .banner.banner-4 .text .banner-heading {
    line-height: 32px;
    font-size: 30px;
  }
}

@media screen and (max-width: 575px) {
  .section-block.products-list.has-banners .banners-list .banner.banner-4 .text .banner-heading {
    margin: 0 0 12px 0;
    line-height: 26px;
    font-size: 24px;
  }
}

.section-block.products-list.has-banners .banners-list .banner.banner-4 .text p {
  margin: 0 0 15px 0;
  line-height: 24px;
}

@media screen and (max-width: 575px) {
  .section-block.products-list.has-banners .banners-list .banner.banner-4 .text p {
    margin: 0 0 13px 0;
    line-height: 16px;
    font-size: 14px;
  }
}

.section-block.products-list.has-banners .banners-list .banner.banner-1, .section-block.products-list.has-banners .banners-list .banner.banner-2 {
  position: relative;
  min-height: 400px;
  padding: 32px 24px;
  background-size: cover !important;
  color: #fff;
}

@media screen and (max-width: 575px) {
  .section-block.products-list.has-banners .banners-list .banner.banner-1, .section-block.products-list.has-banners .banners-list .banner.banner-2 {
    min-height: 215px;
    padding: 15px 10px;
  }
}

.section-block.products-list.has-banners .banners-list .banner.banner-1::before, .section-block.products-list.has-banners .banners-list .banner.banner-2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.65)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
}

.section-block.products-list.has-banners .banners-list .banner.banner-1 .banner-heading, .section-block.products-list.has-banners .banners-list .banner.banner-2 .banner-heading {
  color: #fff;
}

.section-block.products-list.has-banners .banners-list .banner.banner-1 .text, .section-block.products-list.has-banners .banners-list .banner.banner-2 .text {
  position: relative;
  z-index: 1;
}

.section-block.products-list.has-banners .banners-list .banner.banner-1 .text .btn, .section-block.products-list.has-banners .banners-list .banner.banner-2 .text .btn {
  min-width: 105px;
  padding: 10px 15px;
  background: #FAD1CE;
  color: #0C0C0C;
}

@media screen and (min-width: 992px) {
  .section-block.products-list.has-banners .banners-list .banner.banner-1 .text .btn:hover, .section-block.products-list.has-banners .banners-list .banner.banner-2 .text .btn:hover {
    background: #000;
    color: #fff;
  }
}

@media screen and (max-width: 575px) {
  .section-block.products-list.has-banners .banners-list .banner.banner-1 .text .btn, .section-block.products-list.has-banners .banners-list .banner.banner-2 .text .btn {
    padding: 8px 15px;
    min-width: 80px;
    min-height: 28px;
    font-size: 12px;
  }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
  .section-block.products-list.has-banners .list [class*="col-"]:last-child {
    display: none;
  }
}

.section-block.products-list .mobile-button {
  margin: 0;
}

@media screen and (max-width: 575px) {
  .section-block.products-list {
    padding-bottom: 60px;
  }
}

.section-block.banners .row {
  margin: 0;
}

.section-block.banners .row [class*="col"] {
  padding: 0;
}

.section-block.banners .banner {
  min-height: 400px;
  text-align: left;
}

@media screen and (max-width: 991px) {
  .section-block.banners .banner {
    height: 290px;
  }
}

@media screen and (max-width: 767px) {
  .section-block.banners .banner {
    height: auto;
    min-height: 200px;
  }
}

@media screen and (max-width: 575px) {
  .section-block.banners .banner {
    min-height: 125px;
  }
}

.section-block.banners .banner .banner-heading {
  line-height: 46px;
  font-size: 36px;
}

@media screen and (max-width: 1399px) {
  .section-block.banners .banner .banner-heading {
    line-height: 36px;
    font-size: 32px;
  }
}

@media screen and (max-width: 1199px) {
  .section-block.banners .banner .banner-heading {
    line-height: 30px !important;
    font-size: 26px;
  }
}

.section-block.banners .banner.banner-1 {
  position: relative;
  text-align: center;
}

.section-block.banners .banner.banner-1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(206, 148, 143, 0.7);
}

.section-block.banners .banner.banner-1 .banner-heading {
  position: relative;
  max-width: 385px;
  padding: 11px 20px;
  margin: 0 0 36px 0;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .section-block.banners .banner.banner-1 .banner-heading {
    padding: 8px;
    margin: 0 auto 15px;
    line-height: 22px;
    font-size: 18px;
  }
}

@media screen and (max-width: 575px) {
  .section-block.banners .banner.banner-1 .banner-heading {
    line-height: 18px !important;
    font-size: 14px;
  }
}

.section-block.banners .banner.banner-1 .banner-heading::before {
  content: '';
  position: absolute;
  top: -8px;
  right: -8px;
  left: -8px;
  bottom: -8px;
  border: 1px solid #FAD1CE;
}

@media screen and (max-width: 767px) {
  .section-block.banners .banner.banner-1 .banner-heading::before {
    top: -4px;
    right: -4px;
    left: -4px;
    bottom: -4px;
  }
}

.section-block.banners .banner.banner-1 .text {
  width: auto;
}

@media screen and (max-width: 767px) {
  .section-block.banners .banner.banner-1 .text .btn {
    min-height: 22px;
    padding: 6px 12px;
    line-height: 10px;
    font-size: 10px;
  }
}

@media screen and (max-width: 575px) {
  .section-block.banners .banner.banner-1 .text {
    padding: 12px 20px;
  }
}

.section-block.banners .banner.banner-2 .text {
  padding: 0 40px 0 45px;
  text-align: left;
}

@media screen and (min-width: 1400px) {
  .section-block.banners .banner.banner-2 .text {
    padding-right: 25%;
  }
}

@media screen and (max-width: 575px) {
  .section-block.banners .banner.banner-2 .text {
    padding: 12px 20px 12px 12px;
  }
}

.section-block.banners .banner.banner-2 .text .banner-heading {
  margin: 0 0 16px 0;
  line-height: 40px;
}

@media screen and (max-width: 767px) {
  .section-block.banners .banner.banner-2 .text .banner-heading {
    margin: 0 0 9px 0;
    line-height: 24px !important;
    font-size: 18px;
  }
}

@media screen and (max-width: 575px) {
  .section-block.banners .banner.banner-2 .text .banner-heading {
    line-height: 16px !important;
    font-size: 14px;
  }
}

.section-block.banners .banner.banner-2 .text p {
  padding-right: 25%;
  margin: 0 0 40px 0;
  line-height: 30px;
  font-size: 24px;
  font-family: "Metropolis 300";
}

@media screen and (max-width: 1399px) {
  .section-block.banners .banner.banner-2 .text p {
    line-height: 22px;
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .section-block.banners .banner.banner-2 .text p {
    padding: 0;
    margin: 0 0 15px 0;
    line-height: 16px;
    font-size: 14px;
  }
}

@media screen and (max-width: 575px) {
  .section-block.banners .banner.banner-2 .text p {
    line-height: 12px;
    font-size: 10px;
  }
}

@media screen and (max-width: 767px) {
  .section-block.banners .banner.banner-2 .text .btn {
    min-height: 22px;
    padding: 6px 12px;
    line-height: 10px;
    font-size: 10px;
  }
}

.section-block.banners.no-bottom-margin {
  margin-bottom: -120px;
}

@media screen and (max-width: 767px) {
  .section-block.banners.no-bottom-margin {
    margin-bottom: -66px;
  }
}

.section-block.features {
  padding: 42px 0;
  margin: 0 0 130px 0;
  background: linear-gradient(89.06deg, #F2DDDE 0%, #F3C9C6 0.01%, #F9E5E6 100%);
}

@media screen and (max-width: 767px) {
  .section-block.features {
    padding: 65px 0;
    margin: 0 0 80px 0;
  }
  .section-block.features .row > [class*="col-"] {
    margin: 0 0 62px 0;
  }
  .section-block.features .row > [class*="col-"]:last-child {
    margin: 0;
  }
}

.section-block.features .block {
  padding: 0 75px;
}

@media screen and (max-width: 1399px) {
  .section-block.features .block {
    padding: 0 35px;
  }
}

@media screen and (max-width: 1199px) and (min-width: 768px) {
  .section-block.features .block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}

@media screen and (max-width: 991px) {
  .section-block.features .block {
    padding: 0 30px;
  }
}

@media screen and (max-width: 767px) {
  .section-block.features .block {
    padding: 0;
  }
}

.section-block.features .block .icon {
  min-width: 88px;
}

@media screen and (max-width: 1199px) and (min-width: 768px) {
  .section-block.features .block .icon {
    margin-bottom: 25px;
  }
}

.section-block.features .block .icon::before {
  content: normal;
}

.section-block.features .block .text .heading {
  margin: 0 0 13px 0;
  line-height: 16px;
  font-size: 16px;
  font-family: "Metropolis 600";
  text-transform: uppercase;
}

.section-block.features .block .text > span {
  font-family: "Metropolis 300";
  line-height: 24px;
}

@media screen and (max-width: 767px) and (min-width: 440px) {
  .section-block.features .block .text > span {
    padding-right: 20%;
  }
}

.section-block.features .row {
  margin: 0;
}

@media screen and (min-width: 992px) {
  .section-block.features .row [class*="col-"]:first-child .block {
    padding-left: 55px;
  }
}

@media screen and (min-width: 768px) {
  .section-block.features .row [class*="col-"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    border-right: 1px solid #EBBCB9;
  }
  .section-block.features .row [class*="col-"]:last-child {
    padding-right: 55px;
    border: 0;
  }
  .section-block.features .row [class*="col-"]:last-child .block {
    padding-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .section-block.features .row [class*="col-"]:first-child {
    padding-top: 0;
  }
  .section-block.features .row [class*="col-"]:last-child .block {
    padding-bottom: 0;
    border-bottom: 0;
  }
}

.banner {
  position: relative;
  height: 100%;
  background-size: cover !important;
}

.banner .text {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .banner .text {
    width: 100%;
    text-align: center;
  }
}

.banner .banner-heading {
  margin: 0 0 43px 0;
  line-height: 60px;
  font-size: 55px;
  font-family: "Metropolis 600";
}

@media screen and (max-width: 1499px) {
  .banner .banner-heading {
    line-height: 55px;
    font-size: 45px;
  }
}

@media screen and (max-width: 767px) {
  .banner .banner-heading {
    line-height: 50px;
    font-size: 40px;
  }
}

.banner.wide {
  min-height: 1px;
  margin: 0 0 130px 0;
}

@media screen and (max-width: 767px) {
  .banner.wide {
    margin: 0 0 75px 0;
  }
}

.banner.wide .container {
  position: relative;
  height: 100%;
  min-height: 330px;
}

@media screen and (max-width: 767px) {
  .banner.wide .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.banner.wide .text {
  padding: 50px 50px 50px 0;
}

@media screen and (min-width: 768px) {
  .banner.wide .text {
    width: 54.72%;
  }
}

@media screen and (max-width: 767px) {
  .banner.wide .text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 24px 0 32px 0;
    text-align: left;
  }
}

.banner.wide .text .banner-heading {
  margin: 0;
}

@media screen and (max-width: 1499px) {
  .banner.wide .text .banner-heading {
    margin-bottom: 10px;
  }
}

.banner.wide .text p {
  margin: 0 0 32px 0;
  line-height: 45px;
  font-size: 33px;
}

@media screen and (max-width: 1499px) {
  .banner.wide .text p {
    line-height: 33px;
    font-size: 26px;
  }
}

@media screen and (max-width: 767px) {
  .banner.wide .text p {
    margin: 0 0 24px 0;
    line-height: 30px;
    font-size: 24px;
  }
}

.banner.wide .text .btn {
  min-width: 230px;
}

@media screen and (max-width: 767px) {
  .banner.wide .text .btn {
    min-width: 130px;
  }
}

.banner.wide .image {
  background-size: cover !important;
}

@media screen and (min-width: 768px) {
  .banner.wide .image {
    position: absolute;
    left: 54.72%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    height: 100%;
    width: calc(45.28% + ((100vw - 100%) / 2));
  }
}

@media screen and (max-width: 767px) {
  .banner.wide .image {
    display: block;
    height: 196px;
    min-height: 196px;
    width: calc(100% + 60px);
    margin-left: -30px;
    margin-right: -30px;
  }
}

.product-layout {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  background-color: #fff;
  text-decoration: none !important;
  border-radius: 2px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media screen and (min-width: 992px) {
  .product-layout:hover {
    -webkit-box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
  }
}

.product-layout .stickers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: absolute;
  top: 15px;
  left: 15px;
}

@media screen and (max-width: 767px) {
  .product-layout .stickers {
    left: 0;
    top: 0;
  }
}

.product-layout .stickers .sticker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 24px;
  padding: 0 12px;
  margin: 0 0 8px 0;
  color: #fff;
  font-size: 12px;
  font-family: "Metropolis 600";
  -webkit-box-shadow: 0px 2px 4px rgba(17, 17, 17, 0.2);
          box-shadow: 0px 2px 4px rgba(17, 17, 17, 0.2);
  border-radius: 2px;
  text-align: center;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .product-layout .stickers .sticker {
    font-size: 10px;
  }
}

.product-layout .stickers .sticker:last-child {
  margin: 0;
}

.product-layout .stickers .sticker.discount {
  background: linear-gradient(45deg, #A68E3B 0%, #DDBD4C 100%);
}

.product-layout .stickers .sticker.on-sale {
  background: linear-gradient(45deg, #A73030 0%, #EE6158 100%);
}

.product-layout .stickers .sticker.new {
  background: linear-gradient(45deg, #3C9F58 0%, #47D870 100%);
}

.product-layout .stickers .sticker.fast-delivery {
  background: linear-gradient(45deg, #292929 0%, #6F6F6F 100%);
}

.product-layout .whishlist {
  position: absolute;
  top: 20px;
  right: 12px;
  width: 26px;
  height: 24px;
  border: 0;
  background: url("../img/heart-icon.svg") center center no-repeat;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  z-index: 1;
}

.product-layout .whishlist.active {
  background: url("../img/heart-icon-hover.svg") center center no-repeat;
}

@media screen and (min-width: 992px) {
  .product-layout .whishlist:hover {
    background: url("../img/heart-icon-hover.svg") center center no-repeat;
  }
}

@media screen and (max-width: 767px) {
  .product-layout .whishlist {
    top: 0;
  }
}

.product-layout .image {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 230px;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .product-layout .image {
    height: 200px;
  }
}

@media screen and (max-width: 575px) {
  .product-layout .image {
    height: 150px;
  }
}

.product-layout .image img {
  max-height: 100%;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.product-layout .details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 33px 30px 22px 30px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .product-layout .details {
    padding: 25px 15px 0 15px;
  }
}

.product-layout .details .name {
  margin: 0 0 20px 0;
  line-height: 24px;
  font-size: 16px;
  color: #0C0C0C;
}

@media screen and (max-width: 575px) {
  .product-layout .details .name {
    line-height: 16px;
    font-size: 12px;
  }
}

.product-layout .details .price {
  line-height: 28px;
  font-size: 16px;
  font-family: "Metropolis 700";
  color: #161514;
  text-decoration: none;
}

@media screen and (max-width: 575px) {
  .product-layout .details .price {
    font-size: 14px;
  }
}

.product-layout .details .price .new {
  color: #161514;
}

.product-layout .details .price .old {
  margin: 0 15px 0 0;
  font-family: "Metropolis 400";
  color: #8B8B8B;
  text-decoration: line-through;
}

@media screen and (min-width: 768px) {
  .products-list .row {
    margin: 0 -12px;
  }
  .products-list .row [class*="col-"] {
    padding: 0 12px 20px 12px;
  }
}

@media screen and (max-width: 767px) {
  .products-list .row [class*="col-"] {
    margin: 0 0 35px 0;
  }
}

.product .entry-title {
  margin: 0 0 7px 0;
  line-height: 52px;
  font-weight: 300;
  font-size: 34px;
}

@media screen and (max-width: 1299px) {
  .product .entry-title {
    line-height: 43px;
    font-size: 28px;
  }
}

@media screen and (max-width: 767px) {
  .product .entry-title {
    margin: 0 0 15px 0;
    line-height: 34px;
    font-size: 24px;
  }
}

.product .gallery {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.product .gallery .stickers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 100;
}

.product .gallery .stickers .sticker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 24px;
  padding: 0 12px;
  margin: 0 0 8px 0;
  color: #fff;
  font-size: 12px;
  font-family: "Metropolis 600";
  -webkit-box-shadow: 0px 2px 4px rgba(17, 17, 17, 0.2);
          box-shadow: 0px 2px 4px rgba(17, 17, 17, 0.2);
  border-radius: 2px;
  text-align: center;
  z-index: 1;
}

.product .gallery .stickers .sticker:last-child {
  margin: 0;
}

.product .gallery .stickers .sticker.discount {
  background: linear-gradient(45deg, #A68E3B 0%, #DDBD4C 100%);
}

.product .gallery .stickers .sticker.on-sale {
  background: linear-gradient(45deg, #A73030 0%, #EE6158 100%);
}

.product .gallery .stickers .sticker.new {
  background: linear-gradient(45deg, #3C9F58 0%, #47D870 100%);
}

.product .gallery .stickers .sticker.fast-delivery {
  background: linear-gradient(45deg, #292929 0%, #6F6F6F 100%);
}

.product .gallery .swiper-container {
  width: 100%;
  height: 100%;
}

.product .gallery .slider-thumbs {
  height: 120px;
  width: 100%;
  margin: 15px 0 0 0;
}

.product .gallery .slider-thumbs .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  outline: 2px solid transparent;
  outline-offset: -2px;
  cursor: pointer;
  border-radius: 2px;
  -webkit-transition: outline .3s ease-in-out;
  transition: outline .3s ease-in-out;
}

.product .gallery .slider-thumbs .swiper-slide img {
  width: auto;
  height: auto;
  max-height: 100%;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  border-radius: 2px;
}

.product .gallery .slider-thumbs .swiper-slide.swiper-slide-thumb-active {
  outline-color: #FAD1CE;
}

.product .gallery .slider-images {
  position: relative;
  height: 380px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}

.product .gallery .slider-images .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.product .gallery .slider-images .swiper-slide img {
  max-height: 100%;
}

@media screen and (max-width: 767px) {
  .product .gallery .slider__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .product .gallery .slider__col {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 0;
    margin-top: 24px;
    width: 100%;
  }
  .product .gallery .slider__images {
    width: 100%;
  }
  .product .gallery .slider__thumbs {
    height: 100px;
    width: calc(100% - 96px);
    margin: 0 16px;
  }
  .product .gallery .slider__prev,
  .product .gallery .slider__next {
    height: auto;
    width: 32px;
  }
}

.product .summary {
  padding-left: 105px;
}

@media screen and (max-width: 1399px) {
  .product .summary {
    padding-left: 40px;
  }
}

@media screen and (max-width: 1299px) {
  .product .summary {
    padding-left: 20px;
  }
}

@media screen and (max-width: 767px) {
  .product .summary {
    padding: 0;
    margin: 45px 0 0 0;
  }
}

.product .summary .entry-title {
  margin: 0 0 21px 0;
  line-height: 30px;
  font-family: "Metropolis 600";
  font-size: 24px;
}

@media screen and (max-width: 767px) {
  .product .summary .entry-title {
    margin: 0 0 14px 0;
  }
}

.product .summary .text {
  margin: 0 0 35px 0;
  line-height: 24px;
  color: #585858;
}

@media screen and (max-width: 767px) {
  .product .summary .text {
    margin: 0 0 30px 0;
  }
}

.product .summary .text p:last-child {
  margin: 0;
}

.product .summary .price {
  margin: 0 0 30px 0;
  line-height: 24px;
  font-size: 24px;
  font-family: "Metropolis 600";
}

.product .summary .price .old {
  margin-left: 13px;
  text-decoration: line-through;
  font-size: 24px;
  font-family: "Metropolis 400";
  color: #676563;
}

.product .summary .details {
  margin: 0 0 50px 0;
}

.product .summary .details li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 20px 0;
  line-height: 16px;
  font-family: "Metropolis 600";
}

.product .summary .details li .icon {
  margin: -3px 6px 0 0;
}

.product .summary .details li.in-stock {
  color: #3C9F58;
}

.product .summary .details li:last-child {
  margin: 0;
}

.product .summary .quantity {
  margin: 0 15px 0 0;
}

.product .summary .whishlist-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: none;
  padding: 0;
  margin: 30px 0 0 0;
  border: 0;
}

.product .summary .whishlist-btn::before {
  content: '';
  width: 26px;
  height: 24px;
  margin: 0 8px 0 0;
  background: url("../img/heart-icon.svg") center center no-repeat;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media screen and (min-width: 992px) {
  .product .summary .whishlist-btn:hover::before {
    background: url("../img/heart-icon-hover.svg") center center no-repeat;
  }
}

.product .summary .whishlist-btn.selected::before {
  background: url("../img/heart-icon-hover.svg") center center no-repeat;
}

.product .summary input[type="submit"],
.product .summary button[type="submit"] {
  min-height: 100%;
  min-width: 200px;
  padding: 5px 15px;
  font-size: 16px;
  font-weight: 400;
}

@media screen and (max-width: 575px) {
  .product .summary input[type="submit"],
  .product .summary button[type="submit"] {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

@media screen and (max-width: 400px) {
  .product .summary input[type="submit"],
  .product .summary button[type="submit"] {
    min-width: 1px;
  }
}

.product .tabs {
  margin: 120px 0 0 0;
}

@media screen and (max-width: 991px) {
  .product .tabs {
    margin: 70px 0 0 0;
  }
}

.product .tabs .nav-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 32px 0;
  border: 0;
  border-bottom: 1px solid rgba(12, 12, 12, 0.1);
}

@media screen and (max-width: 575px) {
  .product .tabs .nav-tabs {
    margin: 0 -15px 32px -15px;
    padding: 0 15px;
  }
}

.product .tabs .nav-tabs .nav-item {
  margin: 0 35px 0 0;
}

.product .tabs .nav-tabs .nav-item:last-child {
  margin-right: 0;
}

.product .tabs .nav-tabs .nav-item .nav-link {
  padding: 0 25px 11px 25px;
  border: 0;
  border-bottom: 3px solid transparent;
  font-size: 24px;
  color: #0C0C0C;
  font-family: "Metropolis 600";
  border-radius: 0;
}

@media screen and (max-width: 991px) {
  .product .tabs .nav-tabs .nav-item .nav-link {
    font-size: 18px;
  }
}

@media screen and (max-width: 575px) {
  .product .tabs .nav-tabs .nav-item .nav-link {
    padding-left: 0;
    padding-bottom: 8px;
  }
}

.product .tabs .nav-tabs .nav-item .nav-link.active {
  border-color: #FAD1CE;
  font-family: "Metropolis 600";
  pointer-events: none;
}

.product .tabs .tab-pane {
  color: #585858;
}

.product .tabs .tab-pane p {
  margin: 0 0 24px 0;
  line-height: 24px;
}

.product .tabs .tab-pane p:last-child {
  margin: 0;
}

.similar-products {
  margin: 130px 0 0 0;
  padding: 0 !important;
}

@media screen and (max-width: 767px) {
  .similar-products {
    margin: 65px 0 0 0;
  }
  .similar-products .desktop-view {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .similar-products .owl-carousel {
    width: 115vw;
  }
  .similar-products .owl-carousel .product-layout .details {
    padding: 25px 0 0 0;
  }
}

.similar-products .owl-carousel .owl-item img {
  width: auto;
}

@media screen and (min-width: 992px) {
  .similar-products .section-heading {
    line-height: 36px;
    font-size: 36px;
  }
}

.similar-products .list.columns-5 > li {
  margin-bottom: 0;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .similar-products .list li:last-child {
    display: none;
  }
}

.similar-products .mobile-button {
  margin: 30px 0 0 0 !important;
}

@media screen and (max-width: 575px) {
  .similar-products .mobile-button a {
    width: 100%;
  }
}

.product-brands .brands-logos {
  max-width: 860px;
  margin: 0 auto 60px;
}

.product-brands .brands-logos li {
  margin: 0 15px 15px 0;
  text-align: center;
}

.product-brands .brands-logos li img {
  display: block;
  margin: 0 auto;
}

.product-brands .mobile-brands-logos {
  width: 105vw;
  margin: 0 0 35px 0;
}

.product-brands .mobile-brands-logos .swiper .swiper-slide {
  text-align: center;
}

.product-brands .mobile-brands-logos .swiper .swiper-slide img {
  display: block;
  margin: 0 auto;
}

.product-brands form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 57px;
}

@media screen and (min-width: 992px) {
  .product-brands form {
    max-width: 860px;
  }
}

@media screen and (max-width: 991px) {
  .product-brands form {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .product-brands form .holder {
    width: calc(50% - 7.5px);
  }
}

@media screen and (max-width: 767px) {
  .product-brands form {
    margin: 0 0 27px 0;
  }
}

.product-brands form .span-label {
  margin: 0 15px 0 0;
  line-height: 28px;
}

@media screen and (max-width: 991px) {
  .product-brands form .span-label {
    display: none;
  }
}

.product-brands form .search-input-holder {
  position: relative;
  width: 100%;
}

@media screen and (min-width: 992px) {
  .product-brands form .search-input-holder {
    width: 242px;
    margin: 0 35px 0 0;
  }
}

.product-brands form .search-input-holder input[type="text"] {
  padding-right: 45px;
}

.product-brands form .search-input-holder button[type="submit"],
.product-brands form .search-input-holder input[type="submit"] {
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  width: 16px;
  height: 16px;
  margin: auto 0;
  border: 0;
  background: url("../img/search-icon.svg") center center no-repeat;
  background-size: contain;
}

.product-brands form .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: auto;
  min-width: 220px;
}

@media screen and (max-width: 991px) {
  .product-brands form .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 100%;
    min-width: 1px;
  }
}

.product-brands .letters {
  padding: 0 0 19px 0;
  margin: 0 0 -5px 0;
  border-bottom: 2px solid #161514;
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
  .product-brands .letters {
    padding-left: 100px;
    padding-right: 100px;
  }
}

@media screen and (max-width: 767px) {
  .product-brands .letters {
    padding: 0;
    margin: 0 0 26px 0;
    border: 0;
  }
}

.product-brands .letters li {
  margin: 0 35px 0 0;
  line-height: 28px;
  font-weight: 500;
  text-transform: uppercase;
}

@media screen and (max-width: 1399px) {
  .product-brands .letters li {
    margin: 0 30px 0 0;
  }
}

@media screen and (min-width: 1200px) {
  .product-brands .letters li:last-child {
    margin: 0;
  }
}

@media screen and (max-width: 1199px) {
  .product-brands .letters li {
    margin: 5px 30px 5px 0;
  }
}

@media screen and (max-width: 767px) {
  .product-brands .letters li {
    width: 25%;
    margin: 15px 0;
    text-align: center;
  }
}

.product-brands .letters li a {
  color: #161514;
  text-decoration: none;
}

@media screen and (max-width: 575px) {
  .product-brands .brands-list {
    position: relative;
    margin: 0 -20px;
  }
  .product-brands .brands-list::after {
    content: '';
    position: absolute;
    top: calc(100% - 21px);
    left: 0;
    right: 0;
    height: 1px;
    background-color: #fff;
  }
}

.product-brands .brands-list > li {
  position: relative;
  width: 20%;
  padding: 38px 0 33px 60px;
  border-bottom: 1px solid #EBE8E5;
}

@media screen and (max-width: 991px) {
  .product-brands .brands-list > li {
    width: 33.333%;
  }
}

@media screen and (max-width: 575px) {
  .product-brands .brands-list > li {
    width: 50%;
    padding: 0 20px 20px 20px;
    margin: 0 0 20px 0;
  }
}

.product-brands .brands-list > li::before {
  content: attr(data-letter);
  position: absolute;
  top: 38px;
  left: 0;
  line-height: 25px;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: .42px;
}

@media screen and (max-width: 575px) {
  .product-brands .brands-list > li::before {
    position: static;
    display: block;
    margin: 0 0 16px 0;
  }
}

.product-brands .brands-list > li ul li {
  margin: 0 0 7px 0;
  line-height: 24px;
  color: #676563;
  font-size: 14px;
}

.product-brands .brands-list > li ul li:last-child {
  margin: 0;
}

.product-brands .brands-list > li ul li a {
  color: #676563;
}

.cart-steps {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 65px 0;
  border-bottom: 6px solid #FCF0EF;
}

@media screen and (max-width: 1399px) {
  .cart-steps {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

@media screen and (max-width: 575px) {
  .cart-steps {
    margin: -20px 0 40px 0;
    border-width: 4px;
  }
}

.cart-steps .step {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 105px;
  text-align: center;
  z-index: 1;
}

@media screen and (max-width: 1399px) {
  .cart-steps .step {
    margin: 0;
  }
}

.cart-steps .step .name {
  padding: 33px 0 30px 0;
  line-height: 24px;
  font-size: 24px;
  font-family: "Metropolis 600";
  color: #777;
  text-decoration: none;
}

@media screen and (max-width: 1399px) {
  .cart-steps .step .name {
    padding: 13px 0;
    line-height: 24px;
    font-size: 22px;
  }
}

@media screen and (max-width: 767px) {
  .cart-steps .step .name {
    line-height: 20px;
    font-size: 18px;
  }
}

@media screen and (max-width: 575px) {
  .cart-steps .step .name {
    line-height: 16px;
    font-size: 12px;
  }
}

.cart-steps .step.active {
  pointer-events: none;
}

.cart-steps .step.active .name {
  color: #0C0C0C;
}

.cart-steps .step.active::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 50%;
  width: 100vw;
  background-color: #E9B3AF;
  height: 6px;
  border-radius: 0px 4px 4px 0px;
}

@media screen and (max-width: 575px) {
  .cart-steps .step.active::after {
    height: 4px;
  }
}

.cart-steps .step.active:last-child {
  position: static;
}

.cart-steps .step.active:last-child::after {
  right: 0;
  width: 100vw;
  border-radius: 0;
}

.cart-steps .step.done .name {
  pointer-events: all;
}

@media screen and (min-width: 1200px) {
  .cart-overview .page-title {
    margin: 0 0 34px 0;
  }
}

@media screen and (max-width: 767px) {
  .cart-overview .page-title {
    margin: 0 0 7px 0;
  }
}

@media screen and (min-width: 768px) {
  .cart-overview .row {
    margin: 0 -12px;
  }
  .cart-overview .row > [class*="col"] {
    padding: 0 12px;
  }
}

.cart-overview table {
  width: 100%;
}

.cart-overview #cart-table {
  margin: 0 0 40px 0;
}

@media screen and (max-width: 767px) {
  .cart-overview #cart-table thead {
    display: none;
  }
}

.cart-overview #cart-table thead tr th {
  padding: 0 0 15px 0;
  border-bottom: 1px solid rgba(12, 12, 12, 0.1);
  font-size: 16px;
  font-family: "Metropolis 600";
  color: #000;
}

.cart-overview #cart-table thead tr th:first-child {
  padding-left: 25px;
}

.cart-overview #cart-table tbody tr td {
  padding: 32px 0;
  border-bottom: 1px solid rgba(12, 12, 12, 0.1);
  vertical-align: middle;
}

@media screen and (max-width: 991px) {
  .cart-overview #cart-table tbody tr td {
    padding: 20px 0;
  }
}

@media screen and (max-width: 767px) {
  .cart-overview #cart-table tbody tr td {
    display: none;
    padding: 30px 0;
  }
  .cart-overview #cart-table tbody tr td:first-child {
    display: table-cell;
    width: 100% !important;
  }
}

.cart-overview #cart-table tbody tr td strong {
  font-family: "Metropolis 700";
}

.cart-overview #cart-table tbody tr td .remove-btn {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0;
  border: 0;
  background: url("../img/remove-icon.svg") center center no-repeat;
  background-size: contain;
}

.cart-overview #cart-table tbody tr td.product {
  position: relative;
  padding-left: 25px;
  padding-right: 40px;
}

@media screen and (min-width: 1300px) {
  .cart-overview #cart-table tbody tr td.product {
    width: 57.14%;
  }
}

@media screen and (max-width: 1299px) {
  .cart-overview #cart-table tbody tr td.product {
    width: 63.45%;
  }
}

@media screen and (max-width: 767px) {
  .cart-overview #cart-table tbody tr td.product {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
}

.cart-overview #cart-table tbody tr td.product .thumbnail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 150px;
  min-width: 150px;
  margin: 0 30px 0 0;
}

@media screen and (max-width: 1299px) {
  .cart-overview #cart-table tbody tr td.product .thumbnail {
    width: 100px;
    min-width: 100px;
    margin: 0 25px 0 0;
  }
}

.cart-overview #cart-table tbody tr td.product .thumbnail img {
  margin: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media screen and (min-width: 992px) {
  .cart-overview #cart-table tbody tr td.product .thumbnail:hover img {
    opacity: .85;
  }
}

.cart-overview #cart-table tbody tr td.product .details {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 10px 0;
}

@media screen and (max-width: 767px) {
  .cart-overview #cart-table tbody tr td.product .details {
    padding: 0 30px 0 0;
  }
  .cart-overview #cart-table tbody tr td.product .details .price {
    display: block;
    margin-bottom: 13px;
  }
}

.cart-overview #cart-table tbody tr td.product .details .name {
  line-height: 24px;
  font-size: 16px;
  font-weight: 300;
}

@media screen and (max-width: 767px) {
  .cart-overview #cart-table tbody tr td.product .details .name {
    margin: 0 0 10px 0;
  }
}

.cart-overview #cart-table tbody tr td.product .details .name a {
  color: #161514;
}

.cart-overview #cart-table tbody tr td.product .mobile-view {
  margin: 0;
}

.cart-overview #cart-table tbody tr td.product .mobile-view .price {
  font-size: 16px;
  font-family: "Metropolis 600";
}

.cart-overview #cart-table tbody tr td.product .mobile-view .price .old-price {
  display: block;
  margin: 0 0 4px 0;
  line-height: 14px;
  color: #8B8B8B;
  font-family: "Metropolis 400";
  text-decoration: line-through;
}

.cart-overview #cart-table tbody tr td.product .mobile-view .remove-btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 0;
}

.cart-overview #cart-table tbody tr td.product-price {
  width: 17.26%;
}

.cart-overview #cart-table tbody tr td.product-price .old-price {
  display: block;
  margin: 0 0 6px 0;
  line-height: 16px;
  color: #8B8B8B;
  text-decoration: line-through;
}

.cart-overview #cart-table tbody tr td.product-quantity {
  width: 21.42%;
}

.cart-overview #cart-table tbody tr td.product-quantity .quantity {
  height: 42px;
}

.cart-overview #cart-table tbody tr td.remove {
  padding-right: 25px;
  text-align: right;
}

@media screen and (max-width: 1199px) {
  .cart-overview #cart-table tbody tr td.remove {
    padding-left: 20px;
    padding-right: 0;
  }
}

.cart-overview .notices-block p {
  margin: 0 0 4px 0;
  line-height: 20px;
}

.cart-overview .notices-block p:last-child {
  margin: 0;
}

.cart-overview .discount-code {
  margin: 0 0 48px 0;
}

.cart-overview .discount-code input[type="text"] {
  margin: 0 15px 0 0;
}

.cart-overview .discount-code button[type="submit"],
.cart-overview .discount-code button[type="button"],
.cart-overview .discount-code input[type="submit"] {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0;
  min-width: 125px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.cart-overview .order-summary {
  padding: 25px;
  border: 1px solid rgba(12, 12, 12, 0.1);
}

@media screen and (max-width: 991px) {
  .cart-overview .order-summary .mobile-hidden {
    display: none;
  }
}

@media screen and (max-width: 1199px) {
  .cart-overview .order-summary {
    margin-top: 20px;
    padding: 15px;
  }
}

@media screen and (max-width: 991px) {
  .cart-overview .order-summary {
    margin: 50px 0 0 0;
    padding: 0;
    border: 0;
  }
}

.cart-overview .order-summary h3, .cart-overview .order-summary h4 {
  margin: 0 0 24px 0;
  line-height: 30px;
  font-size: 24px;
  font-family: "Metropolis 600";
}

@media screen and (max-width: 991px) {
  .cart-overview .order-summary h3, .cart-overview .order-summary h4 {
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .cart-overview .order-summary h3, .cart-overview .order-summary h4 {
    line-height: 18px;
    font-size: 18px;
  }
}

.cart-overview .order-summary .cart-products-list li {
  margin: 0 0 18px 0;
  line-height: 24px;
  color: #585858;
}

.cart-overview .order-summary .cart-products-list li .name {
  max-width: 70%;
  padding-right: 15px;
}

.cart-overview .order-summary .cart-products-list li .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #000;
  font-family: "Metropolis 600";
}

.cart-overview .order-summary .cart-products-list li .price .amount {
  margin: 0 5px 0 0;
  font-style: normal;
  font-family: "Metropolis 400";
  color: #777;
}

.cart-overview .order-summary .total-products-sum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 21px 0 0 0;
  border-top: 1px solid rgba(12, 12, 12, 0.1);
  font-family: "Metropolis 600";
}

.cart-overview .order-summary .notice {
  display: block;
  margin: 0 0 20px 0;
  line-height: 24px;
  color: #585858;
}

.cart-overview .order-summary .delivery {
  margin-top: 50px;
}

.cart-overview .order-summary .delivery-methods {
  margin: 27px 0 25px 0;
}

.cart-overview .order-summary .delivery-methods label {
  padding: 15px 15px 15px 40px;
  margin: 0 0 15px 0;
  border: 1px solid #e7e7e7;
  font-size: 16px;
  font-weight: 300;
  text-align: left;
  border-radius: 2px;
}

@media screen and (max-width: 767px) {
  .cart-overview .order-summary .delivery-methods label {
    padding-left: 25px;
    margin: 0;
    border: 0;
  }
}

.cart-overview .order-summary .delivery-methods label::before {
  top: 15px;
  left: 15px;
}

@media screen and (max-width: 767px) {
  .cart-overview .order-summary .delivery-methods label::before {
    left: 0;
  }
}

.cart-overview .order-summary .delivery-methods label img {
  display: block;
  margin-top: 8px;
}

.cart-overview .order-summary .delivery-methods label:last-child {
  margin: 0;
}

.cart-overview .order-summary .delivery-methods label .free-delivery {
  margin: 24px 0 0 0;
  font-size: 14px;
  color: #5F5F5F;
}

.cart-overview .order-summary .delivery-methods label .free-delivery strong {
  color: #0C0C0C;
}

.cart-overview .order-summary .delivery-methods input[type="radio"]:checked + label {
  border-color: #0c0c0c;
}

@media screen and (min-width: 992px) {
  .cart-overview .order-summary .total {
    margin: 23px -25px 0 -25px;
    padding: 27px 25px 0 25px;
    border-top: 1px solid rgba(12, 12, 12, 0.1);
  }
}

@media screen and (max-width: 991px) {
  .cart-overview .order-summary .total {
    padding: 12px 40px;
    margin: 0 -40px;
    background: #FFF0EF;
  }
}

@media screen and (max-width: 991px) {
  .cart-overview .order-summary .total table {
    margin: 0;
  }
}

.cart-overview .order-summary .total table tbody tr td {
  padding: 5px 0 15px 0;
  border: 0;
  font-size: 20px;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .cart-overview .order-summary .total table tbody tr td {
    padding: 0;
  }
}

@media screen and (max-width: 575px) {
  .cart-overview .order-summary .total table tbody tr td {
    font-size: 16px;
  }
}

.cart-overview .order-summary .total table tbody tr td:last-child {
  text-align: right;
}

.cart-overview .order-summary .total table tbody tr td .vat {
  display: block;
  display: block;
  margin: 11px 0 0 0;
  font-size: 16px;
  color: #5F5F5F;
}

@media screen and (max-width: 575px) {
  .cart-overview .order-summary .total table tbody tr td .vat {
    margin: 6px 0 0 0;
    font-size: 14px;
  }
}

.cart-overview .order-summary .total table tbody tr td .vat strong {
  color: #0C0C0C;
  font-family: "Metropolis 400";
}

.cart-overview .order-summary button[type="submit"],
.cart-overview .order-summary input[type="submit"] {
  width: 100%;
  font-weight: 400;
}

@media screen and (max-width: 991px) {
  .cart-overview .total-holder .discount-code {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .cart-overview .total-holder .total {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-bottom: 50px;
  }
}

.checkout .delivery-method input[type="radio"] + label {
  padding: 0 30px 0 0;
}

.checkout .delivery-method input[type="radio"] + label::before {
  left: auto;
  right: 0;
}

.checkout .delivery-method label {
  margin: 0 0 19px 0;
  font-weight: 300;
  white-space: nowrap;
}

.checkout .delivery-method label::before {
  top: 7px;
}

.checkout .delivery-method label strong {
  font-weight: 600;
}

.checkout .delivery-method label:last-child {
  margin: 0;
}

.checkout .delivery-method .logo {
  margin: 13px -30px 0 0;
}

.checkout .delivery-method .logo img {
  margin: 0;
}

@media screen and (min-width: 768px) {
  .checkout form .row {
    margin: 0 -12px;
  }
  .checkout form .row [class*="col-"] {
    padding: 0 12px;
  }
}

@media screen and (min-width: 768px) {
  .checkout form .form-group {
    margin: 0 0 25px 0;
  }
}

.checkout form .person-type {
  margin-bottom: 45px;
}

@media screen and (max-width: 767px) {
  .checkout form .person-type {
    margin-bottom: 22px;
  }
}

@media screen and (max-width: 420px) {
  .checkout form .person-type {
    display: block !important;
  }
}

.checkout form .person-type label {
  margin: 0 25px 0 0;
}

@media screen and (max-width: 575px) {
  .checkout form .person-type label {
    margin: 0 0 17px 0;
  }
  .checkout form .person-type label:last-child {
    margin: 0;
  }
}

@media screen and (max-width: 420px) {
  .checkout form .person-type label {
    margin: 0 0 14px 0;
  }
  .checkout form .person-type label:last-child {
    margin: 0;
  }
}

.checkout form textarea {
  min-height: 125px;
  padding-top: 15px;
}

.checkout .cart-summary {
  width: 100%;
}

@media screen and (min-width: 1200px) {
  .checkout .cart-summary {
    max-width: 515px;
  }
}

@media screen and (max-width: 1199px) {
  .checkout .cart-summary {
    margin-left: 30px;
  }
}

@media screen and (max-width: 991px) {
  .checkout .cart-summary {
    margin-top: 50px;
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .checkout .cart-summary .mobile-hidden {
    display: none;
  }
}

.checkout .cart-summary .block {
  width: 100%;
  padding: 32px;
  margin: 0 0 24px 0;
  border: 1px solid rgba(12, 12, 12, 0.1);
  border-radius: 2px;
}

@media screen and (max-width: 991px) {
  .checkout .cart-summary .block {
    padding: 25px 20px;
  }
}

@media screen and (max-width: 767px) {
  .checkout .cart-summary .block {
    padding: 0;
    margin: 0 0 64px 0;
    border: 0;
  }
  .checkout .cart-summary .block:last-child {
    margin: 0;
  }
}

.checkout .cart-summary .block .block-heading {
  margin: 0 0 27px 0;
  line-height: 24px;
  font-size: 24px;
  font-family: "Metropolis 600";
}

@media screen and (max-width: 767px) {
  .checkout .cart-summary .block .block-heading {
    margin: 0 0 27px 0;
    line-height: 18px;
    font-size: 18px;
  }
}

.checkout .cart-summary table {
  margin: 0;
}

.checkout .cart-summary table thead tr th {
  padding: 0 0 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(12, 12, 12, 0.1);
  font-family: "Metropolis 600";
}

.checkout .cart-summary table thead tr th:last-child {
  text-align: right;
}

.checkout .cart-summary table tbody {
  border: 0;
}

.checkout .cart-summary table tbody tr td {
  padding: 7px 0;
  border: 0;
  line-height: 25px;
  vertical-align: middle;
}

.checkout .cart-summary table tbody tr td a {
  color: #585858;
}

.checkout .cart-summary table tbody tr td .amount {
  margin: 8px 0 0 0;
  color: #585858;
  font-style: normal;
}

.checkout .cart-summary table tbody tr td strong {
  font-weight: 600;
}

.checkout .cart-summary table tbody tr td:last-child {
  text-align: right;
}

.checkout .cart-summary table tbody tr:first-child td {
  padding-top: 24px;
}

.checkout .cart-summary table tfoot {
  border: 0;
}

.checkout .cart-summary table tfoot tr td {
  padding: 23px 0 0 0;
  border: 0;
  font-weight: 400;
  font-size: 24px;
  vertical-align: top;
}

.checkout .cart-summary table tfoot tr td:last-child {
  text-align: right;
}

.checkout .cart-summary table tfoot tr td:last-child strong {
  font-weight: 600;
}

.checkout .cart-summary table tfoot tr td .vat {
  display: block;
  margin: 10px 0 0 0;
  font-size: 14px;
  color: #676563;
  white-space: nowrap;
}

.checkout .cart-summary table tfoot tr td .vat strong {
  color: #161514;
  font-weight: 400;
}

.checkout .cart-summary table tfoot tr.total-tr {
  position: relative;
}

.checkout .cart-summary table tfoot tr.total-tr td {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .checkout .cart-summary table tfoot tr.total-tr td {
    padding: 12px 0;
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .checkout .cart-summary table tfoot tr.total-tr::before {
    content: '';
    position: absolute;
    top: 0;
    left: -30px;
    right: -30px;
    bottom: 0;
    background-color: #FFF0EF;
  }
}

.checkout .cart-summary .discount-code {
  margin: 10px 0 0 0;
  padding: 32px 0 28px 0;
  border-top: 1px solid rgba(12, 12, 12, 0.1);
}

.checkout .cart-summary .discount-code input[type="text"] {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin: 0 15px 0 0;
}

.checkout .cart-summary .discount-code button[type="submit"],
.checkout .cart-summary .discount-code button[type="button"],
.checkout .cart-summary .discount-code input[type="submit"] {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0;
  min-width: 125px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.checkout .cart-summary .products-sum {
  margin: 0 0 5px 0;
}

.checkout .delivery-method {
  margin: 30px 0 0 0;
  padding: 0 0 30px 0;
  border-bottom: 1px solid rgba(12, 12, 12, 0.1);
}

@media screen and (max-width: 767px) {
  .checkout .delivery-method {
    margin: 0 0 60px 0;
    padding: 0;
    border: 0;
  }
}

.checkout .delivery-method .block-heading {
  text-align: left;
}

.checkout .delivery-method .name {
  line-height: 16px;
}

.checkout .delivery-method .name img {
  display: block;
  margin: 8px 0 0 0;
}

.checkout .delivery-method .price span, .checkout .delivery-method .price strong {
  display: block;
  line-height: 16px;
}

.checkout .delivery-method .price span {
  margin: 0 0 7px 0;
  color: #585858;
}

.checkout .payment-methods {
  margin: 0 0 24px 0;
}

.checkout .payment-methods label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 48px;
  margin: 0 0 15px 0;
  padding: 10px 15px 10px 40px;
  border: 1px solid rgba(12, 12, 12, 0.1);
  border-radius: 3px;
}

.checkout .payment-methods label::before {
  top: 0;
  left: 15px;
  bottom: 0;
  margin: auto 0;
}

.checkout .payment-methods label img {
  margin-left: 10px;
}

.checkout .payment-methods input:checked + label {
  font-family: "Metropolis 600";
  color: #000;
}

.checkout .confirm-terms label a {
  color: #5f5f5f;
  font-family: "Metropolis 600";
  text-decoration: underline;
}

.checkout .confirm-terms label a:hover {
  text-decoration: none;
}

.checkout button[type="submit"],
.checkout input[type="submit"] {
  width: 100%;
  margin: 24px 0 0 0;
}

@media screen and (max-width: 767px) {
  .checkout button[type="submit"],
  .checkout input[type="submit"] {
    margin: 10px 0 0 0;
  }
}

.checkout .secure-payment-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 25px 0 0 0;
  line-height: 16px;
  color: #5F5F5F;
}

.checkout .secure-payment-text span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.checkout .secure-payment-text span::before {
  content: '';
  width: 12px;
  height: 15px;
  margin: -2px 11px 0 0;
  background: url("../img/lock-icon.svg") center center no-repeat;
}

@media screen and (max-width: 767px) and (min-width: 576px) {
  .checkout.summary-thanks {
    margin-top: -30px;
  }
}

.checkout.summary-thanks .page-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: -10px;
  text-align: center;
}

@media screen and (max-width: 1199px) {
  .checkout.summary-thanks .page-title {
    line-height: 34px;
    font-size: 30px;
  }
}

@media screen and (max-width: 767px) {
  .checkout.summary-thanks .page-title {
    margin: 0 0 50px 0;
    line-height: 30px;
    font-size: 24px;
  }
}

@media screen and (min-width: 576px) {
  .checkout.summary-thanks .page-title {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.checkout.summary-thanks .page-title::before {
  content: normal;
}

.checkout.summary-thanks .page-title span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}

.checkout.summary-thanks .page-title span::before {
  content: '';
  width: 30px;
  min-width: 30px;
  height: 30px;
  margin: -2px 15px 0 0;
  background: url("../img/paldies-icon.svg") center center no-repeat;
}

.checkout.summary-thanks .short-summary {
  margin: 0 0 80px 0;
}

@media screen and (max-width: 767px) {
  .checkout.summary-thanks .short-summary {
    margin: 0 0 65px 0;
  }
}

.checkout.summary-thanks .short-summary .row {
  margin: 0;
}

@media screen and (min-width: 992px) {
  .checkout.summary-thanks .short-summary .row {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.checkout.summary-thanks .short-summary .row [class*="col-"] {
  padding: 0 78px;
  border-right: 1px solid rgba(12, 12, 12, 0.1);
  white-space: nowrap;
}

@media screen and (max-width: 1399px) {
  .checkout.summary-thanks .short-summary .row [class*="col-"] {
    padding: 0 40px;
  }
}

@media screen and (max-width: 1199px) {
  .checkout.summary-thanks .short-summary .row [class*="col-"] {
    padding: 0 25px;
  }
}

@media screen and (max-width: 991px) {
  .checkout.summary-thanks .short-summary .row [class*="col-"] {
    margin: 0 0 25px 0;
    padding: 0;
    border: 0;
  }
  .checkout.summary-thanks .short-summary .row [class*="col-"]:last-child {
    margin: 0;
  }
}

.checkout.summary-thanks .short-summary .row [class*="col-"]:first-child {
  padding-left: 0;
}

.checkout.summary-thanks .short-summary .row [class*="col-"]:last-child {
  border: 0;
}

.checkout.summary-thanks .short-summary .span-label {
  margin: 0 0 15px 0;
  line-height: 16px;
  color: #5F5F5F;
}

@media screen and (max-width: 991px) {
  .checkout.summary-thanks .short-summary .span-label {
    margin: 0 0 8px 0;
  }
}

.checkout.summary-thanks .table-heading {
  margin: 0 0 48px 0;
  line-height: 24px;
  font-family: "Metropolis 600";
  font-size: 24px;
}

@media screen and (max-width: 767px) {
  .checkout.summary-thanks .table-heading {
    margin: 0 0 23px 0;
  }
}

.checkout.summary-thanks .table {
  margin: 0 0 65px 0;
}

@media screen and (max-width: 767px) {
  .checkout.summary-thanks .table {
    margin: 0 0 35px 0;
  }
}

.checkout.summary-thanks .table thead tr th {
  padding: 0 0 24px 0;
  border: 0;
  border-bottom: 1px solid rgba(48, 48, 48, 0.1);
  font-family: "Metropolis 600";
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .checkout.summary-thanks .table thead tr th {
    display: none;
  }
}

.checkout.summary-thanks .table thead tr th:first-child {
  width: 64.96%;
  padding-left: 30px;
}

.checkout.summary-thanks .table thead tr th:last-child {
  padding-right: 30px;
  text-align: right;
}

.checkout.summary-thanks .table thead tr th.product-quantity {
  width: 7.48%;
  text-align: center;
}

.checkout.summary-thanks .table tbody {
  border: 0;
}

.checkout.summary-thanks .table tbody tr td {
  padding: 14px 0;
  border: 0;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .checkout.summary-thanks .table tbody tr td {
    padding: 17.5px 0;
    border: 0;
  }
}

@media screen and (max-width: 575px) {
  .checkout.summary-thanks .table tbody tr td {
    display: none;
  }
  .checkout.summary-thanks .table tbody tr td:first-child {
    display: table-cell;
    width: 100% !important;
  }
  .checkout.summary-thanks .table tbody tr td .price {
    margin: 12px 0 0 0;
  }
  .checkout.summary-thanks .table tbody tr td .price .old-price {
    display: block;
    margin: 0 0 4px 0;
    font-size: 14px;
    line-height: 14px;
    color: #8B8B8B;
    font-family: "Metropolis 400";
    text-decoration: line-through;
  }
  .checkout.summary-thanks .table tbody tr td .price .product-quantity {
    margin: 0 2px 0 0;
    color: #8B8B8B;
    font-style: normal;
  }
}

.checkout.summary-thanks .table tbody tr td:first-child {
  width: 64.96%;
  padding-left: 30px;
  padding-right: 30px;
}

@media screen and (max-width: 767px) {
  .checkout.summary-thanks .table tbody tr td:first-child {
    padding-left: 0;
  }
}

.checkout.summary-thanks .table tbody tr td:last-child {
  padding-right: 30px;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .checkout.summary-thanks .table tbody tr td:last-child {
    padding-right: 0;
  }
}

.checkout.summary-thanks .table tbody tr td.product-quantity {
  width: 7.48%;
  text-align: center;
}

.checkout.summary-thanks .table tbody tr td .thumbnail {
  width: 130px;
  min-width: 130px;
  margin: 0 55px 0 0;
  padding: 0 20px;
}

@media screen and (max-width: 991px) {
  .checkout.summary-thanks .table tbody tr td .thumbnail {
    margin: 0 25px 0 0;
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .checkout.summary-thanks .table tbody tr td .thumbnail {
    width: 100px;
    min-width: 100px;
  }
}

.checkout.summary-thanks .table tbody tr td .name {
  font-size: 16px;
  font-family: "Metropolis 400";
}

@media screen and (max-width: 575px) {
  .checkout.summary-thanks .table tbody tr td .name {
    line-height: 18px;
    font-size: 14px;
  }
}

@media screen and (min-width: 768px) {
  .checkout.summary-thanks .table tbody tr:first-child td {
    padding-top: 30px;
  }
  .checkout.summary-thanks .table tbody tr:last-child td {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .checkout.summary-thanks .table tbody tr:last-child td {
    padding-bottom: 35px;
  }
}

.checkout.summary-thanks .table tfoot {
  border: 0;
}

.checkout.summary-thanks .table tfoot tr td {
  padding: 16px 30px;
  border: 0;
  border-bottom: 1px solid rgba(12, 12, 12, 0.1);
  vertical-align: middle;
}

@media screen and (min-width: 768px) {
  .checkout.summary-thanks .table tfoot tr td strong {
    margin-left: 20px;
  }
}

@media screen and (max-width: 767px) {
  .checkout.summary-thanks .table tfoot tr td strong {
    padding-left: 0;
    padding-right: 0;
  }
}

.checkout.summary-thanks .table tfoot tr td span {
  color: #777;
}

@media screen and (max-width: 991px) {
  .checkout.summary-thanks .table tfoot tr td {
    padding-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .checkout.summary-thanks .table tfoot tr td {
    padding: 15px 0;
    padding-right: 0;
  }
  .checkout.summary-thanks .table tfoot tr td .mobile strong {
    margin-bottom: 10px;
  }
  .checkout.summary-thanks .table tfoot tr td .mobile span {
    display: block;
    line-height: 20px;
    padding-right: 30px;
  }
}

.checkout.summary-thanks .table tfoot tr:first-child td {
  padding-top: 12px;
  padding-bottom: 12px;
  background: #FFF0EF;
  border-color: #FFF0EF;
}

@media screen and (max-width: 767px) {
  .checkout.summary-thanks .table tfoot tr:first-child td {
    position: relative;
  }
  .checkout.summary-thanks .table tfoot tr:first-child td::before, .checkout.summary-thanks .table tfoot tr:first-child td::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: -1px;
    right: 100%;
    width: 30px;
    background-color: #FFF0EF;
  }
}

@media screen and (max-width: 767px) and (max-width: 575px) {
  .checkout.summary-thanks .table tfoot tr:first-child td::before, .checkout.summary-thanks .table tfoot tr:first-child td::after {
    width: 15px;
  }
}

@media screen and (max-width: 767px) {
  .checkout.summary-thanks .table tfoot tr:first-child td::after {
    right: auto;
    left: 100%;
  }
}

.checkout.summary-thanks .table tfoot tr:last-child td {
  border: 0;
  line-height: 24px;
  font-size: 24px;
}

@media screen and (min-width: 768px) {
  .checkout.summary-thanks .table tfoot tr:last-child td {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

.cart-notice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 768px) {
  .cart-notice {
    padding: 30px 0 0 0;
  }
}

@media screen and (max-width: 767px) {
  .cart-notice {
    padding: 35px 0 0 0;
  }
}

.cart-notice .icon {
  margin: 0 0 24px 0;
  pointer-events: none;
}

@media screen and (max-width: 991px) {
  .cart-notice .icon img {
    max-height: 150px;
  }
}

@media screen and (max-width: 575px) {
  .cart-notice .icon {
    margin: 0 0 29px 0;
  }
  .cart-notice .icon img {
    max-height: 120px;
  }
}

.cart-notice h1 {
  margin: 0 0 10px 0;
  line-height: 52px;
  font-size: 36px;
  font-family: "Metropolis 600";
  text-align: center;
}

@media screen and (max-width: 991px) {
  .cart-notice h1 {
    line-height: 34px;
    font-size: 24px;
  }
}

@media screen and (max-width: 575px) {
  .cart-notice h1 {
    line-height: 28px;
    font-size: 24px;
  }
}

.cart-notice p {
  margin: 0 0 34px 0;
  color: #585858;
}

.cart-notice p a {
  font-family: "Metropolis 500";
  text-decoration: underline;
}

.cart-notice p a:hover {
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .cart-notice p {
    padding: 0 10%;
    margin: 0 0 48px 0;
    line-height: 24px;
    text-align: center;
  }
}

.cart-notice .btn {
  min-width: 145px;
}

.about-us {
  margin: 0 0 -120px 0;
}

@media screen and (max-width: 767px) {
  .about-us {
    margin: 0 0 -65px 0;
  }
}

.about-us .text-block {
  margin: 0 0 130px 0;
}

@media screen and (max-width: 991px) {
  .about-us .text-block {
    margin: 0 0 75px 0;
  }
}

@media screen and (max-width: 575px) {
  .about-us .text-block .holder {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
}

.about-us .text-block:last-child {
  margin: 0;
}

@media screen and (min-width: 992px) {
  .about-us .text-block .section-heading {
    margin: 0 0 40px 0;
  }
}

.about-us .text-block .image {
  pointer-events: none;
}

@media screen and (max-width: 575px) {
  .about-us .text-block .image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 30px 0 0 0;
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
}

.about-us .text-block .image.w-410 {
  min-width: 410px;
  width: 410px;
  margin: 0 130px 0 0;
}

@media screen and (max-width: 1199px) {
  .about-us .text-block .image.w-410 {
    margin: 0 90px 0 0;
  }
}

@media screen and (max-width: 991px) {
  .about-us .text-block .image.w-410 {
    min-width: 40%;
    width: 40%;
    margin: 0 60px 0 0;
  }
}

@media screen and (max-width: 575px) {
  .about-us .text-block .image.w-410 {
    min-width: 100%;
    width: 100%;
    margin: 23px 0 0 0;
  }
}

.about-us .text-block .image.w-515 {
  min-width: 515px;
  width: 515px;
}

@media screen and (max-width: 1199px) {
  .about-us .text-block .image.w-515 {
    width: 40%;
    min-width: 40%;
  }
}

@media screen and (max-width: 575px) {
  .about-us .text-block .image.w-515 {
    min-width: 100%;
    width: 100%;
  }
  .about-us .text-block .image.w-515 img {
    max-height: 355px;
  }
}

.about-us .text-block .image.order-1 {
  margin: 0 130px 0 0;
}

@media screen and (max-width: 1199px) {
  .about-us .text-block .image.order-1 {
    margin: 0 80px 0 0;
  }
}

@media screen and (max-width: 575px) {
  .about-us .text-block .image.order-1 {
    margin: 30px 0 0 0;
  }
}

.about-us .text-block .image.order-2 {
  margin: 0 0 0 130px;
}

@media screen and (max-width: 1199px) {
  .about-us .text-block .image.order-2 {
    margin: 0 0 0 80px;
  }
}

@media screen and (max-width: 575px) {
  .about-us .text-block .image.order-2 {
    margin: 30px 0 0 0;
  }
}

.about-us .text-block .text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-bottom: 50px;
  color: #585858;
}

@media screen and (max-width: 575px) {
  .about-us .text-block .text {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
    padding: 0;
  }
}

.about-us .text-block .text p {
  margin: 0 0 25px 0;
  line-height: 24px;
}

.about-us .text-block .text p:last-child {
  margin: 0;
}

.about-us .stars-carousel-block {
  margin: 0 0 130px 0;
}

@media screen and (max-width: 767px) {
  .about-us .stars-carousel-block {
    margin: 0 0 80px 0;
  }
}

.about-us .stars-carousel-block .owl-carousel {
  width: 100vw;
}

.about-us .stars-carousel-block .image {
  overflow: hidden;
}

.about-us .stars-carousel-block img {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.about-us .stars-carousel-block img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.about-us .manicure {
  margin: 0 0 120px 0;
}

@media screen and (max-width: 767px) {
  .about-us .manicure {
    margin: 0 0 80px 0;
  }
}

.about-us .manicure .section-heading {
  margin: 0 0 16px 0;
}

.about-us .manicure .sub-heading {
  margin: 0 0 50px 0;
  line-height: 24px;
  font-size: 24px;
}

@media screen and (max-width: 767px) {
  .about-us .manicure .sub-heading {
    margin: 0 0 40px 0;
    line-height: 20px;
    font-size: 18px;
  }
}

@media screen and (max-width: 575px) {
  .about-us .manicure .sub-heading {
    margin: -15px 0 38px 21px;
  }
}

@media screen and (max-width: 767px) {
  .about-us .manicure .images-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.about-us .manicure .images-list .image {
  width: 25vw;
  height: 356px;
  background-size: cover !important;
}

@media screen and (max-width: 767px) {
  .about-us .manicure .images-list .image {
    width: 50vw;
    height: 250px;
    background-position: center 100% !important;
  }
}

@media screen and (max-width: 520px) {
  .about-us .manicure .images-list .image {
    height: 180px;
  }
}

@media screen and (min-width: 992px) {
  .authentication {
    margin-top: 95px;
  }
}

@media screen and (min-width: 992px) {
  .authentication .block-heading {
    text-align: center;
  }
}

@media screen and (min-width: 992px) {
  .authentication .form-holder {
    max-width: 405px;
    margin-left: 110px;
  }
}

.authentication form {
  width: 100%;
}

.authentication .sep-text {
  position: relative;
  margin: 33px 0;
  color: #777;
}

.authentication .sep-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  margin: auto 0;
  background-color: rgba(0, 0, 0, 0.1);
}

.authentication .sep-text span {
  position: relative;
  padding: 0 15px;
  background: #fff;
}

.authentication .social-login {
  margin: 0;
}

.authentication .social-login a, .authentication .social-login button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
  padding: 0 20px 0 60px;
  font-size: 16px;
  width: calc(50% - 12px);
  color: #fff;
  text-decoration: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  border-radius: 2px;
}

.authentication .social-login a.fb-btn, .authentication .social-login button.fb-btn {
  background: #3B5998 url("../img/facebook-icon.svg") 20px center no-repeat;
}

@media screen and (min-width: 992px) {
  .authentication .social-login a.fb-btn:hover, .authentication .social-login button.fb-btn:hover {
    background-color: #344e86;
  }
}

.authentication .social-login a.google-btn, .authentication .social-login button.google-btn {
  border: 1px solid rgba(12, 12, 12, 0.1);
  background: #fff url("../img/google-icon.svg") 17px center no-repeat;
  color: #0C0C0C;
}

@media screen and (min-width: 992px) {
  .authentication .social-login a.google-btn:hover, .authentication .social-login button.google-btn:hover {
    background-color: #e7e1dc;
  }
}

.authentication input[type="checkbox"] + label {
  margin: 0;
}

@media screen and (max-width: 991px) {
  .authentication .remember-checkbox {
    margin-top: -10px;
  }
}

.authentication .form-control {
  height: 40px;
}

.authentication .forgotten-password {
  margin: 0;
  text-align: right;
}

.authentication .forgotten-password a {
  font-size: 13px;
  color: #0C0C0C;
  text-decoration: underline;
}

@media screen and (min-width: 992px) {
  .authentication .forgotten-password a:hover {
    text-decoration: none;
  }
}

.authentication .input-holder {
  position: relative;
}

.authentication .show-password {
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  height: 12px;
  width: 16px;
  margin: auto 0;
  border: 0;
  background: url("../img/show-password-icon.svg") center center no-repeat;
  outline: none;
}

.authentication .form-notice {
  margin: 16px 0 0 0;
}

.authentication button[type="submit"],
.authentication input[type="submit"] {
  margin: 30px 0 0 0;
}

.authentication .register-cta {
  margin: 32px 0 0 0;
  line-height: 16px;
  color: #303030;
  text-align: center;
}

@media screen and (max-width: 575px) {
  .authentication .register-cta {
    font-size: 13px;
  }
}

.authentication .register-cta a {
  text-decoration: underline;
}

.authentication .register-cta a:hover {
  text-decoration: none;
}

.authentication .image {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 100%;
  min-height: 485px;
  padding: 30px;
  background-size: cover !important;
  border-radius: 2px;
}

.authentication .image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, right top, left top, from(#FAD1CE), to(rgba(250, 209, 206, 0)));
  background: linear-gradient(270deg, #FAD1CE 0%, rgba(250, 209, 206, 0) 100%);
  -webkit-transform: matrix(-1, 0, 0, 1, 0, 0);
          transform: matrix(-1, 0, 0, 1, 0, 0);
}

.authentication .image::after {
  content: '';
  position: absolute;
  left: 30px;
  bottom: 30px;
  width: 172px;
  height: 46px;
  background: url("../img/logo.svg") center center no-repeat;
  z-index: 1;
}

.authentication .image h3, .authentication .image h4 {
  position: relative;
  line-height: 50px;
  font-family: "Metropolis 700";
  font-size: 60px;
  z-index: 1;
}

@media screen and (max-width: 1399px) {
  .authentication .image h3, .authentication .image h4 {
    line-height: 50px;
    font-size: 45px;
  }
}

.authentication .image h3 span, .authentication .image h4 span {
  display: block;
  margin: 6px 0 0 0;
  font-family: "Metropolis 300";
  font-size: 40px;
}

@media screen and (max-width: 1399px) {
  .authentication .image h3 span, .authentication .image h4 span {
    margin: 0;
    line-height: 40px;
    font-size: 30px;
  }
}

@media screen and (min-width: 768px) {
  .user-profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.user-profile .welcome > h2 {
  margin: 0 0 21px 0;
  line-height: normal;
  font-size: 16px;
  font-weight: 300;
}

@media screen and (max-width: 575px) {
  .user-profile .welcome > h2 {
    margin: 0 0 18px 0;
  }
}

.user-profile .welcome .name {
  margin: 0;
}

.user-profile .welcome p {
  margin: 0 0 20px 0;
  line-height: 24px;
}

.user-profile .welcome.mobile {
  padding: 24px 30px;
  margin: -30px -30px 15px -30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.user-profile .welcome.mobile h2 {
  margin: 0;
}

.user-profile .aside {
  width: 192px;
  min-width: 192px;
  margin: 0 130px 0 0;
}

@media screen and (max-width: 1199px) {
  .user-profile .aside {
    margin: 0 80px 0 0;
  }
}

@media screen and (max-width: 767px) {
  .user-profile .aside {
    width: 100%;
    margin: 0 0 35px 0;
  }
}

.user-profile .aside ul li {
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .user-profile .aside ul li {
    margin: 0 0 5px 0;
  }
}

.user-profile .aside ul li a {
  display: block;
  padding: 12px 15px 12px 25px;
  background-color: transparent;
  border-left: 3px solid transparent;
  color: #585858;
  text-decoration: none;
}

@media screen and (min-width: 992px) {
  .user-profile .aside ul li a:hover {
    color: #0C0C0C;
  }
}

@media screen and (max-width: 767px) {
  .user-profile .aside ul li a {
    padding-left: 0;
    border: 0;
  }
}

.user-profile .aside ul li.current a {
  background-color: #fbedec;
  border-color: #fad1cf;
  color: #0C0C0C;
  font-family: "Metropolis 600";
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .user-profile .aside ul li.current a {
    background: none;
    font-family: "Metropolis 400";
  }
}

@media screen and (max-width: 767px) {
  .user-profile .aside ul li.logout {
    padding-top: 24px;
    border-top: 1px solid rgba(12, 12, 12, 0.1);
  }
  .user-profile .aside ul li.logout a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    font-family: "Metropolis 600";
    color: #0C0C0C;
  }
  .user-profile .aside ul li.logout a::before {
    content: '';
    width: 14px;
    height: 15px;
    margin: 0 9px 0 0;
    background: url("../img/logout-icon.svg") left center no-repeat;
  }
}

.user-profile .content-output {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0;
}

.user-profile .content-output .page-title {
  margin: 0 0 47px 0;
  line-height: 24px;
  font-size: 24px;
  text-align: left;
}

.user-profile .content-output .page-title span {
  font-family: "Metropolis 400";
}

.user-profile .content-output .content-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 48px 0 0 0;
}

@media screen and (max-width: 991px) {
  .user-profile .content-output .content-nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .user-profile .content-output .content-nav {
    display: none;
    margin: 0;
  }
}

.user-profile .content-output .content-nav li {
  width: calc(33.33% - 12px);
  border: 1px solid rgba(12, 12, 12, 0.1);
  text-align: center;
}

@media screen and (max-width: 1299px) {
  .user-profile .content-output .content-nav li {
    width: calc(33.33% - 15px);
  }
}

@media screen and (max-width: 991px) {
  .user-profile .content-output .content-nav li {
    width: 100%;
    margin: 0 0 25px 0;
  }
}

.user-profile .content-output .content-nav li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px 25px 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 24px;
  font-family: "Metropolis 300";
  color: #0C0C0C;
  text-decoration: none;
}

.user-profile .content-output .content-nav li a:hover {
  color: #f5a6a0;
}

@media screen and (max-width: 1199px) {
  .user-profile .content-output .content-nav li a {
    font-size: 20px;
  }
}

@media screen and (max-width: 991px) {
  .user-profile .content-output .content-nav li a {
    padding: 25px;
  }
}

.user-profile .content-output .content-nav li .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 152px;
  margin: 0 0 32px 0;
}

@media screen and (max-width: 1299px) {
  .user-profile .content-output .content-nav li .icon img {
    max-width: 70px;
  }
}

@media screen and (max-width: 991px) {
  .user-profile .content-output .content-nav li .icon {
    height: auto;
  }
}

.help-desk > .row {
  margin: 0 -12px;
}

.help-desk > .row > [class*="col-"] {
  padding: 0 12px;
}

.help-desk .tabs-holder .nav-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 20px 0;
  border-bottom: 1px solid #e7e7e7;
}

.help-desk .tabs-holder .nav-tabs .nav-item {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 33.333%;
  margin: 0;
}

.help-desk .tabs-holder .nav-tabs .nav-link {
  display: block;
  width: 100%;
  padding: 0 0 17px 0;
  border: 0;
  border-bottom: 4px solid transparent;
  color: #585858;
  border-radius: 0;
  text-align: center;
}

@media screen and (max-width: 575px) {
  .help-desk .tabs-holder .nav-tabs .nav-link {
    padding: 0 3px 10px 3px;
    font-size: 14px;
  }
}

.help-desk .tabs-holder .nav-tabs .nav-link:hover {
  color: #000;
}

.help-desk .tabs-holder .nav-tabs .nav-link.active {
  border-color: #e9b4b0;
  color: #000;
  font-family: "Metropolis 600";
}

@media screen and (max-width: 991px) {
  .help-desk .aside {
    margin: 0 0 60px 0;
    background-color: #FAEDEC;
  }
}

.help-desk .aside ul li {
  padding: 0;
  margin: 0;
}

.help-desk .aside ul li a {
  display: block;
  padding: 12px 15px 12px 25px;
  line-height: 20px;
  background-color: transparent;
  border-left: 3px solid transparent;
  color: #585858;
  text-decoration: none;
}

@media screen and (min-width: 992px) {
  .help-desk .aside ul li a:hover {
    color: #0C0C0C;
  }
}

@media screen and (max-width: 991px) {
  .help-desk .aside ul li a {
    border: 0;
  }
}

@media screen and (max-width: 575px) {
  .help-desk .aside ul li a {
    text-align: center;
  }
}

.help-desk .aside ul li.current a {
  background-color: #fbedec;
  border-color: #fad1cf;
  color: #0C0C0C;
  font-family: "Metropolis 600";
  pointer-events: none;
}

@media screen and (max-width: 991px) {
  .help-desk .aside ul li.current a {
    background-color: #FAD1CE;
  }
}

.help-desk .content-output {
  color: #585858;
}

.help-desk .content-output .block-heading, .help-desk .content-output h3, .help-desk .content-output h4 {
  margin: 0 0 24px 0;
  line-height: 42px;
  font-size: 36px;
  font-family: "Metropolis 600";
  color: #000;
}

@media screen and (max-width: 991px) {
  .help-desk .content-output .block-heading, .help-desk .content-output h3, .help-desk .content-output h4 {
    margin: 0 0 21px 0;
    line-height: 32px;
    font-size: 24px;
  }
}

@media screen and (max-width: 991px) {
  .help-desk .content-output h3 {
    margin: 0 0 16px 0;
    line-height: 22px;
    font-size: 18px;
  }
}

.help-desk .content-output h4 {
  margin: 0 0 28px 0;
  line-height: 30px;
  font-size: 24px;
}

@media screen and (max-width: 991px) {
  .help-desk .content-output h4 {
    line-height: 20px;
    font-size: 16px;
  }
}

.help-desk .content-output .subheading {
  display: block;
  margin: -16px 0 67px 0;
  line-height: 30px;
  font-size: 24px;
}

@media screen and (max-width: 767px) {
  .help-desk .content-output .subheading {
    margin-bottom: 37px;
    line-height: 24px;
    font-size: 18px;
  }
}

@media screen and (min-width: 768px) {
  .help-desk .content-output .highlighted {
    padding: 8px 3px;
    background-color: #FAD1CE;
  }
}

.help-desk .content-output ol {
  list-style: none;
  counter-reset: ol-counter;
}

.help-desk .content-output ol li {
  position: relative;
  padding: 0 0 0 38px;
  margin: 0 0 40px 0;
  counter-increment: ol-counter;
  line-height: 24px;
  color: #585858;
}

@media screen and (max-width: 575px) {
  .help-desk .content-output ol li {
    margin: 0 0 23px 0;
    padding: 0;
  }
}

.help-desk .content-output ol li::before {
  content: counter(ol-counter) ".";
  position: absolute;
  top: -12px;
  left: 0;
  line-height: 36px;
  font-size: 36px;
  font-family: "Metropolis 700";
  color: #FAD1CE;
}

@media screen and (max-width: 575px) {
  .help-desk .content-output ol li::before {
    position: static;
    display: block;
  }
}

.help-desk .content-output ul li {
  margin: 0 0 14px 0;
  line-height: 20px;
}

.help-desk .content-output ul.has-dots {
  margin: 0;
}

.help-desk .content-output ul.has-dots li {
  position: relative;
  padding-left: 17px;
  margin: 0 0 20px 0;
}

.help-desk .content-output ul.has-dots li::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  width: 8px;
  height: 8px;
  background: #FAD1CE;
  border-radius: 50%;
}

.help-desk .content-output p {
  margin: 0 0 24px 0;
  line-height: 24px;
  color: #585858;
}

.help-desk .content-output strong {
  font-family: "Metropolis 600";
  color: #0C0C0C;
}

.help-desk .content-output .logos {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 32px 0;
}

.help-desk .content-output .logos li {
  margin: 0 15px 0 0;
}

.help-desk .content-output .logos li:last-child {
  margin: 0;
}

.help-desk .other-answers {
  margin: 120px 0 0 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .help-desk .other-answers {
    margin: 64px 0 0 0;
    padding: 0 5%;
  }
}

.help-desk .other-answers h3, .help-desk .other-answers h4 {
  margin: 0 0 12px 0;
  line-height: 36px;
  font-size: 36px;
  font-family: "Metropolis 600";
}

@media screen and (max-width: 767px) {
  .help-desk .other-answers h3, .help-desk .other-answers h4 {
    margin: 0 0 4px 0;
    line-height: 30px;
    font-size: 24px;
  }
}

.help-desk .other-answers p {
  margin: 0 0 43px 0;
  line-height: 24px;
  color: #585858;
}

.contact-us {
  margin: -30px 0 0 0;
}

.contact-us .page-title {
  margin: 0 0 40px 0;
}

.contact-us .map {
  margin: 0 0 50px 0;
}

@media screen and (max-width: 767px) {
  .contact-us .map {
    margin: 0;
  }
}

.contact-us .map iframe {
  width: 100%;
  height: 320px;
}

@media screen and (max-width: 991px) {
  .contact-us .map iframe {
    height: 135px;
  }
}

.contact-us .container {
  max-width: 1085px;
}

.contact-us form .form-group {
  margin: 0 0 23px 0;
}

@media screen and (max-width: 767px) {
  .contact-us form .form-group {
    margin: 0 0 18px 0;
  }
}

.contact-us form label {
  margin: 0 0 8px 0;
  font-family: "Metropolis 600";
}

.contact-us form input[type="checkbox"] + label {
  margin: -7px 0 16px 0;
  font-family: "Metropolis 400";
}

@media screen and (max-width: 767px) {
  .contact-us form input[type="submit"],
  .contact-us form button[type="submit"] {
    width: 100%;
  }
}

.contact-us .contacts-details {
  max-width: 405px;
  padding: 40px 40px 30px 40px;
  background: #fff;
  color: #585858;
  -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}

@media screen and (max-width: 991px) {
  .contact-us .contacts-details {
    margin: 0 0 50px 0;
    padding: 0;
    max-width: 100%;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

@media screen and (max-width: 767px) {
  .contact-us .contacts-details {
    min-width: calc(100% + 60px);
    padding: 20px 30px 15px 30px;
    margin: 0 -30px 75px -30px;
    background-color: #fff;
    -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  }
}

.contact-us .contacts-details .block-heading {
  line-height: 36px;
  font-size: 36px;
}

@media screen and (max-width: 991px) {
  .contact-us .contacts-details .block-heading {
    margin: 0 0 16px 0;
    line-height: 28px;
    font-size: 24px;
  }
}

.contact-us .contacts-details h3 {
  margin: 0 0 19px 0;
  line-height: 24px;
  font-family: "Metropolis 600";
  font-size: 24px;
}

@media screen and (max-width: 767px) {
  .contact-us .contacts-details h3 {
    line-height: 18px;
    font-size: 18px;
  }
}

.contact-us .contacts-details ul.general-details {
  margin: 0 0 45px 0;
}

@media screen and (max-width: 767px) {
  .contact-us .contacts-details ul.general-details {
    margin: 0 0 40px 0;
  }
}

.contact-us .contacts-details ul.general-details li {
  padding-left: 25px;
}

.contact-us .contacts-details ul.general-details li.location {
  background: url("../img/contacts-location-icon.svg") left center no-repeat;
}

.contact-us .contacts-details ul.general-details li.phone {
  background: url("../img/contacts-phone-icon.svg") left center no-repeat;
}

.contact-us .contacts-details ul.general-details li.email {
  background: url("../img/contacts-email-icon.svg") left center no-repeat;
}

.contact-us .contacts-details ul li {
  line-height: 30px;
}

.contact-us .social-media {
  position: relative;
  padding: 20px 0;
  margin: 120px 0 -120px 0;
  background: url("../img/contacts-social-media-bg.png") center center no-repeat;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .contact-us .social-media {
    margin-top: 65px;
    margin-bottom: -65px;
    padding-bottom: 50px;
    background-size: contain !important;
  }
}

.contact-us .social-media::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, right top, left top, from(#FBE7E6), to(rgba(255, 240, 239, 0.3)));
  background: linear-gradient(270deg, #FBE7E6 0%, rgba(255, 240, 239, 0.3) 100%);
}

.contact-us .social-media .container {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .contact-us .social-media .logo-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .contact-us .social-media .logo {
    margin-bottom: 55px;
  }
}

.contact-us .social-media .logo span {
  display: block;
  margin: 15px 0 0 0;
  line-height: 24px;
  font-size: 24px;
}

@media screen and (max-width: 1299px) {
  .contact-us .social-media .logo span {
    line-height: 18px;
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .contact-us .social-media .logo span {
    margin: 10px 0 0 0;
  }
}

@media screen and (max-width: 1299px) {
  .contact-us .social-media .logo img {
    max-height: 85px;
  }
}

@media screen and (max-width: 767px) {
  .contact-us .social-media .logo img {
    max-height: 60px;
  }
}

.contact-us .social-media .links {
  padding-right: 30px;
}

.contact-us .social-media .links li {
  margin: 0 90px 0 0;
  font-size: 24px;
  font-family: "Metropolis 600";
}

@media screen and (max-width: 1299px) {
  .contact-us .social-media .links li {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .contact-us .social-media .links li {
    margin: 0 50px 0 0;
  }
}

.contact-us .social-media .links li:last-child {
  margin: 0;
}

.contact-us .social-media .links li a {
  color: #D79E99;
  text-decoration: none;
}

@media screen and (min-width: 992px) {
  .contact-us .social-media .links li a:hover {
    color: #000;
  }
}

.contact-us .social-media .links li img {
  margin: 0 15px 0 0;
}

@media screen and (max-width: 767px) {
  .contact-us .social-media .links li img {
    max-height: 24px;
  }
}

.video-gallery .block-heading {
  margin: 0 0 49px 0;
  line-height: 36px;
  font-size: 36px;
}

@media screen and (max-width: 1199px) {
  .video-gallery .block-heading {
    margin: 0 0 30px 0;
  }
}

@media screen and (max-width: 991px) {
  .video-gallery .block-heading {
    margin: 0 0 20px 0;
    line-height: 24px;
    font-size: 24px;
  }
}

.video-gallery .yt-video-holder {
  width: 66.14%;
  min-width: 66.14%;
}

@media screen and (max-width: 1199px) {
  .video-gallery .yt-video-holder {
    width: 55%;
    min-width: 55%;
  }
}

@media screen and (max-width: 991px) {
  .video-gallery .yt-video-holder {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    min-width: 100%;
  }
}

.video-gallery .yt-video-holder iframe {
  max-width: 100%;
}

@media screen and (max-width: 991px) {
  .video-gallery .yt-video-holder iframe {
    height: 290px;
  }
}

@media screen and (max-width: 575px) {
  .video-gallery .yt-video-holder iframe {
    height: 200px;
  }
}

.video-gallery .yt-video-list {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 1px;
}

@media screen and (max-width: 991px) {
  .video-gallery .yt-video-list {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: -3px 0 0 0;
  }
}

.video-gallery .yt-video-list .ps-wrapper {
  max-height: 480px;
}

@media screen and (max-width: 991px) {
  .video-gallery .yt-video-list .ps-wrapper {
    max-height: 330px;
  }
}

.video-gallery .yt-video-list .video {
  padding: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.video-gallery .yt-video-list .video .thumbnail {
  width: 72px;
  min-width: 72px;
  margin: 0 15px 0 0;
}

@media screen and (max-width: 575px) {
  .video-gallery .yt-video-list .video .thumbnail {
    width: 65px;
    min-width: 65px;
    margin: 0 8px 0 0;
  }
}

.video-gallery .yt-video-list .video .details {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.video-gallery .yt-video-list .video .details .name {
  display: block;
  margin: 0 0 2px 0;
  line-height: 16px;
  font-size: 16px;
  font-family: "Metropolis 400";
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #000;
}

@media screen and (max-width: 575px) {
  .video-gallery .yt-video-list .video .details .name {
    margin: 0 0 5px 0;
    line-height: 14px;
    font-size: 14px;
  }
}

.video-gallery .yt-video-list .video .details .message {
  color: #585858;
}

@media screen and (max-width: 575px) {
  .video-gallery .yt-video-list .video .details .message {
    line-height: 13px;
    font-size: 12px;
  }
}

.video-gallery .yt-video-list .video.active {
  background: #FAEDEC;
  border-color: #FAEDEC;
  pointer-events: none;
}

@media screen and (min-width: 992px) {
  .video-gallery .yt-video-list .video:hover {
    background: #FAEDEC;
    border-color: #FAEDEC;
  }
}

.video-gallery .block {
  margin: 0 0 120px 0;
}

@media screen and (max-width: 991px) {
  .video-gallery .block {
    margin: 0 0 55px 0;
  }
}

.video-gallery .block:last-child {
  margin: 0;
}

@media screen and (min-width: 992px) {
  .video-gallery .block:nth-child(2n+0) .yt-video-list {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .video-gallery .block:nth-child(2n+0) .yt-video-holder {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.blog-posts, .posts-list {
  margin-bottom: -8px;
}

@media screen and (max-width: 991px) {
  .blog-posts .row, .posts-list .row {
    margin: 0 -12.5px;
  }
}

.blog-posts .row [class*="col-"], .posts-list .row [class*="col-"] {
  margin: 0 0 24px 0;
}

@media screen and (max-width: 991px) {
  .blog-posts .row [class*="col-"], .posts-list .row [class*="col-"] {
    padding: 0 12.5px;
  }
}

@media screen and (max-width: 450px) {
  .blog-posts .row [class*="col-"], .posts-list .row [class*="col-"] {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
}

.blog-posts .post, .posts-list .post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: 0;
  border: 1px solid rgba(12, 12, 12, 0.1);
  border-radius: 2px;
}

.blog-posts .post .featured-image, .posts-list .post .featured-image {
  margin: -1px;
}

.blog-posts .post .featured-image a, .posts-list .post .featured-image a {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media screen and (min-width: 992px) {
  .blog-posts .post .featured-image a:hover, .posts-list .post .featured-image a:hover {
    opacity: .85;
  }
}

.blog-posts .post .details, .posts-list .post .details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 25px 15px 25px 15px;
}

.blog-posts .post .details .posted-on, .posts-list .post .details .posted-on {
  display: block;
  margin: 0 0 14px 0;
  color: #777;
  font-size: 12px;
}

@media screen and (max-width: 575px) {
  .blog-posts .post .details .posted-on, .posts-list .post .details .posted-on {
    margin: 0 0 10px 0;
  }
}

.blog-posts .post .details .entry-title, .posts-list .post .details .entry-title {
  margin: 0 0 8px 0;
  line-height: 24px;
  font-family: "Metropolis 600";
  font-size: 16px;
}

.blog-posts .post .details .entry-title a, .posts-list .post .details .entry-title a {
  line-height: 24px;
}

@media screen and (min-width: 992px) {
  .blog-posts .post .details .entry-title a:hover, .posts-list .post .details .entry-title a:hover {
    color: #000;
  }
}

.blog-posts .post .details .excerpt, .posts-list .post .details .excerpt {
  margin: 0 0 20px 0;
  line-height: 24px;
  color: #585858;
}

@media screen and (max-width: 575px) {
  .blog-posts .post .details .excerpt, .posts-list .post .details .excerpt {
    margin: 0 0 15px 0;
  }
}

.single-post-view .entry-header .post-thumb {
  margin: 0 0 24px 0;
}

.single-post-view .entry-header .entry-title {
  margin: 0 0 35px 0;
  line-height: 42px;
  font-size: 36px;
  font-family: "Metropolis 700";
}

@media screen and (max-width: 1199px) {
  .single-post-view .entry-header .entry-title {
    line-height: 36px;
    font-size: 26px;
  }
}

@media screen and (max-width: 767px) {
  .single-post-view .entry-header .entry-title {
    margin: 0 0 16px 0;
    line-height: 30px;
    font-size: 24px;
  }
}

.single-post-view .entry-content {
  color: #585858;
}

.single-post-view .entry-content p {
  margin: 0 0 41px 0;
  line-height: 24px;
  color: #4B4B4B;
}

.single-post-view .entry-content h2, .single-post-view .entry-content h3 {
  margin: 0 0 15px 0;
  line-height: 32px;
  font-size: 24px;
  font-family: "Metropolis 400";
  color: #585858;
}

@media screen and (max-width: 767px) {
  .single-post-view .entry-content h2, .single-post-view .entry-content h3 {
    margin: 0 0 20px 0;
    line-height: 27px;
    font-size: 18px;
  }
}

.single-post-view .entry-content ul {
  margin: 0 0 39px 0;
}

.single-post-view .entry-content ul li {
  position: relative;
  margin: 0 0 25px 0;
  padding: 0 0 0 17px;
  line-height: 24px;
}

.single-post-view .entry-content ul li::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
  width: 8px;
  height: 8px;
  background: #E1AEAA;
  border-radius: 50%;
}

@media screen and (max-width: 767px) {
  .single-post-view .post-sidebar {
    margin: 15px 0 50px 0;
  }
}

.single-post-view .post-sidebar .widget {
  padding: 23px 15px 25px 15px;
  margin: 0 0 25px 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 767px) {
  .single-post-view .post-sidebar .widget {
    padding: 0;
    margin: 0 0 58px 0;
    border: 0;
  }
}

.single-post-view .post-sidebar .widget .widget-heading {
  margin: 0 0 25px 0;
  line-height: 24px;
  font-size: 24px;
  font-family: "Metropolis 700";
}

.single-post-view .post-sidebar .posts-list {
  width: 100%;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 767px) and (min-width: 680px) {
  .single-post-view .post-sidebar .posts-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.single-post-view .post-sidebar .post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0;
  margin: 0 0 38px 0;
  border: 0;
}

@media screen and (max-width: 767px) {
  .single-post-view .post-sidebar .post {
    margin: 0 0 22px 0;
  }
}

@media screen and (max-width: 767px) and (min-width: 680px) {
  .single-post-view .post-sidebar .post {
    width: calc(50% - 15px);
  }
}

.single-post-view .post-sidebar .post:last-child {
  margin: 0;
}

.single-post-view .post-sidebar .post .featured-image {
  width: 108px;
  min-width: 108px;
  margin: 0 8px 0 0;
}

.single-post-view .post-sidebar .post .details {
  display: block;
  margin: -5px 0 0 0;
  padding: 0;
}

.single-post-view .post-sidebar .post .details .entry-title {
  margin: 0 0 12px 0;
  line-height: 24px;
  font-family: "Metropolis 600";
}

@media screen and (max-width: 679px) {
  .single-post-view .post-sidebar .post .details .entry-title {
    margin: 0 0 10px 0;
  }
}

.single-post-view .post-sidebar .post .details .view-more {
  font-size: 14px;
}

.single-post-view .post-sidebar .popular-products .product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 24px 0;
}

.single-post-view .post-sidebar .popular-products .product:last-child {
  margin: 0;
}

.single-post-view .post-sidebar .popular-products .product .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 108px;
  min-width: 108px;
  margin: 0 8px 0 0;
}

.single-post-view .post-sidebar .popular-products .product .details {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.single-post-view .post-sidebar .popular-products .product .details .name {
  margin: 0 0 5px 0;
  padding-right: 10px;
  line-height: 24px;
  font-size: 16px;
  font-family: "Metropolis 400";
}

.single-post-view .post-sidebar .popular-products .product .details .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 28px;
  font-size: 16px;
  font-family: "Metropolis 700";
  color: #0C0C0C;
  text-decoration: none;
}

.single-post-view .post-sidebar .popular-products .product .details .price .new {
  color: #161514;
}

.single-post-view .post-sidebar .popular-products .product .details .price .old {
  margin: 0 0 0 15px;
  font-family: "Metropolis 400";
  color: #8B8B8B;
  text-decoration: line-through;
}

.single-post-view .recommended-posts {
  margin: 107px 0 0 0;
}

@media screen and (max-width: 991px) {
  .single-post-view .recommended-posts {
    margin: 25px 0 0 0;
  }
}

.single-post-view .recommended-posts .block-heading {
  margin: 0 0 72px 0;
  line-height: 52px;
  font-size: 52px;
}

@media screen and (max-width: 1399px) {
  .single-post-view .recommended-posts .block-heading {
    margin: 0 0 48px 0;
    line-height: 36px;
    font-size: 36px;
  }
}

@media screen and (max-width: 991px) {
  .single-post-view .recommended-posts .block-heading {
    margin: 0 0 38px 0;
  }
}

.single-post-view .recommended-posts .mobile-carousel .owl-carousel {
  width: 110vw;
}

@media screen and (max-width: 650px) {
  .single-post-view .recommended-posts .mobile-carousel .owl-carousel {
    width: 96vw;
  }
}

@media screen and (max-width: 580px) {
  .single-post-view .recommended-posts .mobile-carousel .owl-carousel {
    width: 105vw;
  }
}

@media screen and (max-width: 500px) {
  .single-post-view .recommended-posts .mobile-carousel .owl-carousel {
    width: 115vw;
  }
}

@media screen and (max-width: 420px) {
  .single-post-view .recommended-posts .mobile-carousel .owl-carousel {
    width: 135vw;
  }
}

.error-404 {
  padding: 90px 0 0 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .error-404 {
    padding: 80px 0 0 0;
  }
}

.error-404::before {
  content: '';
  display: block;
  width: 550px;
  height: 200px;
  margin: 0 auto 30px;
  background: url("../img/icon-404.svg") center center no-repeat;
}

@media screen and (max-width: 991px) {
  .error-404::before {
    width: 100%;
    height: 100px;
    background-size: contain;
  }
}

@media screen and (max-width: 767px) {
  .error-404::before {
    height: 80px;
    margin-bottom: 15px;
  }
}

.error-404 .entry-title {
  margin: 0 0 15px 0;
  line-height: 26px;
  font-family: "Metropolis 600";
  font-size: 36px;
}

@media screen and (max-width: 767px) {
  .error-404 .entry-title {
    margin: 0;
    line-height: 28px;
    font-size: 24px;
  }
}

.error-404 p {
  margin: 0 0 30px 0;
  line-height: 28px;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .error-404 p {
    margin: 0 0 43px 0;
    line-height: 24px;
  }
}

.error-404 .btn {
  min-width: 165px;
}

@media screen and (max-width: 575px) {
  .error-404 .btn {
    min-width: 225px;
  }
}

#main-footer {
  margin: 120px 0 0 0;
  padding: 50px 0 0 0;
  background: #FAD1CE;
}

@media screen and (max-width: 991px) {
  #main-footer {
    padding: 40px 0 0 0;
  }
}

@media screen and (max-width: 767px) {
  #main-footer {
    margin: 65px 0 0 0;
  }
}

@media screen and (max-width: 575px) {
  #main-footer .container > .row [class*="col-"]:not(.col-heading) {
    margin: 0 0 42px 0;
  }
}

@media screen and (min-width: 992px) {
  #main-footer a:hover {
    color: #000;
  }
}

#main-footer .col-heading {
  margin: 0 0 23px 0;
  line-height: 20px;
  font-family: "Metropolis 600";
  font-size: 20px;
  color: #000;
}

#main-footer .footer-contacts {
  padding-right: 20px;
  font-weight: 400;
}

@media screen and (max-width: 991px) {
  #main-footer .footer-contacts {
    margin-bottom: 30px;
  }
}

#main-footer .footer-contacts li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 15px 0;
}

#main-footer .footer-contacts .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 23px;
  min-width: 23px;
  padding-right: 5px;
  pointer-events: none;
}

#main-footer .footer-nav.two-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 991px) {
  #main-footer .footer-nav.two-columns {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 575px) {
  #main-footer .footer-nav.two-columns {
    margin: 0;
  }
}

#main-footer .footer-nav.two-columns li {
  width: 50%;
  padding-right: 15px;
}

@media screen and (max-width: 991px) {
  #main-footer .footer-nav.two-columns li {
    width: 25%;
  }
}

@media screen and (max-width: 767px) {
  #main-footer .footer-nav.two-columns li {
    width: 33.33%;
  }
}

@media screen and (max-width: 575px) {
  #main-footer .footer-nav.two-columns li {
    width: 50%;
  }
}

#main-footer .footer-nav li {
  margin: 0 0 13px 0;
}

#main-footer .footer-nav li a {
  line-height: 18px;
  word-break: break-all;
}

#main-footer .footer-nav li:last-child {
  margin: 0;
}

#main-footer .working-time {
  width: 172px;
  min-width: 172px;
}

@media screen and (max-width: 1199px) and (min-width: 576px) {
  #main-footer .working-time {
    width: 100%;
    min-width: 100%;
  }
}

#main-footer .working-time li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 15px 0;
}

#main-footer .working-time li:last-child {
  margin: 0;
}

#main-footer .social-media-holder {
  margin: 45px 0 0 0;
}

@media screen and (max-width: 991px) {
  #main-footer .social-media-holder {
    margin: 0 0 113px 0;
  }
}

#main-footer .social-media {
  padding: 0 0 0 32px;
  margin: 0 0 0 32px;
  border-left: 1px solid #ecbcba;
}

@media screen and (max-width: 350px) {
  #main-footer .social-media {
    padding: 0 0 0 20px;
    margin: 0 0 0 20px;
  }
}

#main-footer .social-media li {
  margin: 0 8px 0 0;
}

#main-footer .social-media li:last-child {
  margin: 0;
}

#main-footer .social-media li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(49.97deg, #CC9B97 14.71%, rgba(236, 174, 169, 0.14) 82.86%);
  border-radius: 50%;
}

#main-footer .social-media li:last-child {
  margin: 0;
}

#main-footer .footer-bottom {
  margin: 47px 0 0 0;
  padding: 17px 0;
  border-top: 1px solid rgba(12, 12, 12, 0.05);
  font-size: 14px;
}

@media screen and (max-width: 575px) {
  #main-footer .footer-bottom {
    margin: -40px 0 0 0;
  }
  #main-footer .footer-bottom .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#main-footer .footer-bottom .copyrights {
  font-family: "Metropolis 500";
}

@media screen and (max-width: 575px) {
  #main-footer .footer-bottom .copyrights {
    margin: 15px 0 0 0;
  }
}


/* Extra CSS */

.product-layout .details .price del > span  {
    margin: 0 15px 0 0;
    font-family: "Metropolis 400";
    color: #8B8B8B;
    text-decoration: line-through;
}

.product-layout .details .price ins {
  text-decoration: none;
}




body.home {
  padding: 163px 0 0 0;
}
body:not(.home) {
  padding: 195px 0 0 0;
}
@media screen and (max-width: 1199px) {
  body.home {
    padding: 158px 0 0 0;
  }
  body:not(.home) {
    padding: 190px 0 0 0;
  }
}
@media screen and (max-width: 1090px) {
  body.home {
    padding: 108px 0 0 0;
  }
  body:not(.home) {
    padding: 138px 0 0 0;
  }
}
@media screen and (max-width: 767px) {
  body.home {
    padding: 97px 0 0 0;
  }
  body:not(.home) {
    padding: 127px 0 0 0;
  }
}
@media screen and (max-width: 575px) {
  body.home {
    padding: 88px 0 0 0;
  }
  body:not(.home) {
    padding: 118px 0 0 0;
  }
}

/* Bundle css update */

.bundled_product_summary .bundled_product_optional_checkbox input, .single-product form.cart .bundled_product_summary .bundled_product_optional_checkbox input {
    width: auto;
    vertical-align: baseline;
    appearance: auto !important;
    display: inline-block !important;
}

.bundled_product_title_inner .item_title {
  font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
}

.bundled_product_summary .bundled_product_optional_checkbox span {
  color:#0C0C0C;
  font-size:14px;
}

.bundled_product_optional_checkbox {
  font-size:14px !important;
}

.bundled_product_title_link {
  display:none;
}

.woocommerce-page div.product div.bundled_product_images, .woocommerce-page #content div.product div.bundled_product_images, .woocommerce div.product div.bundled_product_images, .woocommerce #content div.product div.bundled_product_images {
  width:15% !important;
}

div.bundled_product_summary:not(.thumbnail_hidden) .details {
  width:85% !important;
}

.bundle-section-title {
  font-size:18px;
  font-weight:600;
  margin-bottom:25px;
}

.notices-block-upsale {
  border: 1px solid rgba(12, 12, 12, 0.1);
  padding: 20px;
}

.cart-overview .notices-block-upsale span {
  display: inline-block !important;
  margin-left: 0px !important;
}

.notices-block-upsale  {
  margin-bottom: 30px;
}

.notices-block-upsale .last-row {
  margin-bottom: 0px;
}

.notices-block-upsale .ico {
  margin-right: 15px;
}

.notices-block-upsale .ico-success {
  margin-right: 15px;
}
/*added by j*/
.woocommerce-cart .cross-sells {
    display: flex;
    flex-wrap: wrap;
}
.woocommerce-cart .cross-sells .product-layout {
    width: 33.33%;
}
.woocommerce-cart .cross-sells .product-layout .image{
	height:auto;
}
.woocommerce-cart .cross-sells img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}
.woocommerce-cart .cross-sells .product-layout .details {
    flex-wrap: wrap;
}
.woocommerce-cart .cross-sells .product-layout a.button {
    width: 100%;
}
section.up-sells.upsells.products h2 {
    padding-bottom: 40px;
}
section.up-sells.upsells.products {
    padding-top: 70px;
}
.bundle_sells_title {
    width: 100%;
    margin-bottom: 20px;
}
/*end by j*/
@media (max-width: 768px) {
  .notices-block-upsale {
    margin-top: 30px;
  }
  .notices-block-upsale .ico {
    display: none;
  }
	.woocommerce-cart .cross-sells .product-layout {
		width: 50%;
	}
}
@media (max-width: 500px) {
	.woocommerce-cart .cross-sells .product-layout {
		width: 100%;
	}
}
.progress {
  height: 6px;
  background: #FCF0EF;
  border-radius: 3px;
  margin-bottom: 10px;
}

.progress-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    background-color: #E9B3AF;
    transition: width .6s ease;
    height: 6px;
    border-radius: 3px;
}

.widget_shopping_cart_content .notices-block-upsale {
  margin-top: 20px;
}

.widget_shopping_cart_content .notices-block-upsale .ico {
  display: none;
}

.widget_shopping_cart_content .notices-block-upsale .ico-success {
  display: none;
}

.out-of-stock-extra {
  background:#FBEAEA;
  color:#D42E32;
  font-size:14px;
  font-weight:600;
  height: 24px;
  line-height: 24px;
  padding: 0 12px;
  margin: 0 0 0px 0;
  border-radius: 12px;
  display:inline-block;
}
.mobile-nav-opened .navbar-brand.d-md-flex{
    display:flex!important;
}
@media screen and (max-width: 575px) {
    #main-header .mid-section {
        min-height: min-content;
        padding: 12px 0;
        display: block;
        height: auto;
    }
}
@media screen and (min-width: 768px) {

    .mid-section .form-col.col-lg-6.col-md-5.d-flex.justify-content-start {
        width: auto !important;
        margin: auto;
    }
}
#main-footer .social-media-holder a{
    gap: 10px;
    display: flex;
}
/*# sourceMappingURL=style.css.map */
