/* 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: 991px) {
  html.mobile-nav-opened {
    overflow: hidden;
  }
}

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

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: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #161514;
  letter-spacing: .32px;
  overflow-x: hidden;
  position: relative;
}

@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: #747373;
  text-decoration: none;
  outline: none;
  -webkit-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out;
}

@media screen and (min-width: 992px) {
  a:hover {
    color: #CE4939;
    text-decoration: none;
  }
}

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

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

h1 {
  line-height: 50px;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.54px;
  color: #151617;
  margin-bottom: 15px;
}

@media screen and (min-width: 992px) {
  h1 {
    line-height: 66px;
    font-size: 44px;
  }
}

h2 {
  line-height: 64px;
  font-size: 48px;
  font-weight: 300;
  letter-spacing: .2px;
}

@media screen and (max-width: 767px) {
  h2 {
    line-height: 37px;
    font-size: 31px;
  }
}

h3 {
  line-height: 52px;
  font-weight: 300;
  font-size: 34px;
  letter-spacing: .2px;
}

@media screen and (max-width: 767px) {
  h3 {
    line-height: 34px;
    font-size: 24px;
  }
}

h4 {
  line-height: 28px;
  font-size: 21px;
  font-weight: 300;
  letter-spacing: .2px;
}

@media screen and (max-width: 767px) {
  h4 {
    line-height: 34px;
    font-size: 24px;
  }
}

h5 {
  line-height: 32px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.27px;
  color: #151617;
}

@media screen and (max-width: 767px) {
  h5 {
    line-height: 34px;
    font-size: 24px;
  }
}

p {
  letter-spacing: 0.24px;
  color: #151617;
  font-size: 16px;
  line-height: 31px;
  font-weight: 400;
}

.container {
  padding: 0 15px;
}

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

@media screen and (max-width: 1339px) {
  .container {
    max-width: 1200px;
  }
}

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

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

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

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

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

form label {
  display: block;
  margin: 0 0 13px 0;
  font-size: 16px;
}

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

.form-control {
  height: 51px;
  padding: 0 15px;
  background: #fff;
  border: 1px solid #CACED2;
  color: #161514;
  font-size: 16px;
  font-weight: 400;
  outline: 1px solid transparent !important;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
}

.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: 2px solid #3A4557;
  }
}

.form-control:focus {
  border: 1px solid #3A4557;
  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: #161514;
}

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

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

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

.form-control:hover {
  border: 2px solid #3A4557;
}

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

.form-group input[type="text"] + label,
.form-group input[type="email"] + label,
.form-group input[type="number"] + label,
.form-group textarea + label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 2px;
  left: 10px;
  bottom: 2px;
  height: 18px;
  margin: auto 0;
  padding: 0 5px;
  background: #fff;
  line-height: 28px;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: .2px;
  cursor: text;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

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

.form-group textarea + label {
  top: 10px;
  bottom: auto;
}

.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: 17px 29.5px;
  background: #499C4E;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  text-align: center;
  border-radius: 0;
  font-weight: 500;
}

.btn.btn-primary:hover, .btn.btn-secondary:hover {
  background: #161514;
}

.btn.btn-primary:active, .btn.btn-secondary:active {
  background: #161514;
}

.btn.btn-primary.sm, .btn.btn-secondary.sm {
  min-width: 250px;
  padding: 10px 25px;
}

@media screen and (max-width: 767px) {
  .btn.btn-primary, .btn.btn-secondary {
    font-size: 14px;
  }
}

html[lang="en-GB"] .btn.btn-secondary  {
  padding: 14px 54px !important;
}

html[lang="lv"] .btn.btn-secondary  {
  padding: 14px 7.5px !important;
}

.btn.btn-secondary {
  /* padding: 14px 29.5px; */
  background: #3A4557;
  border: 2px solid transparent;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
}



@media (max-width: 767px) {
  .btn.btn-secondary {
    width: 100%;
  }
}

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

@media screen and (min-width: 992px) {
  .btn.btn-secondary:hover {
    background: #151617;
    border-color: #151617;
    color: #fff;
  }
  .btn.btn-secondary:active {
    background: #151617;
    border-color: #151617;
    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: auto;
  padding: 0 32px 0 5px;
  border: 1px solid #D1CBC6;
  background-color: #fff;
  font-size: 16px;
  font-weight: 300;
  outline: 1px solid transparent;
  outline-offset: -2px;
  border-radius: 0;
}

@media screen and (min-width: 992px) {
  .bootstrap-select .dropdown-toggle:hover {
    outline-color: none;
    border-color: none;
  }
}

.bootstrap-select .dropdown-toggle:focus {
  border-color: 0;
  outline: none !important;
  outline-offset: -2px;
}

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

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

.bootstrap-select .dropdown-toggle::after {
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  width: 11px;
  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 {
  outline: color 0;
  border-color: transparent;
}

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

.bootstrap-select .dropdown-menu {
  padding: 0;
  margin-top: -4px !important;
  border: transparent;
  border-top: 0;
  border-radius: 0;
}

.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 #EBE8E5;
  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: #F1EEEB;
}

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

.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: 33px 0 20px 0;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

@media screen and (max-width: 767px) {
  .breadcrumb {
    margin: 0 0 20px 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.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: #161514;
  white-space: nowrap;
  letter-spacing: 0.21px;
}

@media screen and (max-width: 767px) {
  .breadcrumb .breadcrumb-item {
    margin: 0 0 4px;
    white-space: normal;
    word-break: break-word;
  }
}

@media screen and (max-width: 400px) {
  .breadcrumb .breadcrumb-item {
    font-size: 12px;
  }
}

.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: '';
  min-width: 5px;
  height: 8px;
  margin: 0 15px;
  padding: 0;
  background: url("../img/category/arrow-right.svg") 0 0 no-repeat;
}

@media screen and (max-width: 767px) {
  .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    margin: 0 10px 0 0;
  }
}

.breadcrumb .breadcrumb-item a {
  color: #83878B;
}

@media screen and (max-width: 767px) {
  .breadcrumb .breadcrumb-item a {
    margin-right: 10px;
  }
}

.breadcrumb .breadcrumb-item.active {
  font-weight: 500;
  color: #3A4557;
}

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

.pagination li {
  margin: 0 15px 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: 34px;
  height: 34px;
  color: #161514;
  text-decoration: none;
  border-radius: 50%;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media screen and (min-width: 992px) {
  .pagination li a:hover {
    background: #888380;
    color: #fff;
  }
}

.pagination li.prev {
  margin: 0 5px 0 0;
}

.pagination li.prev a {
  width: 27px;
  background: url(../img/arrow-right.svg) center center no-repeat;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.pagination li.next {
  margin: 0 0 0 10px;
  width: 27px;
}

.pagination li.next a {
  width: 27px;
  background: url(../img/arrow-right.svg) center center no-repeat;
}

.pagination a.next {
  width: 27px;
  background: url(../img/arrow-right.svg) center center no-repeat;
  text-indent: -9999px;
}

.pagination a.next:hover {
  width: 27px !important;
  background: url(../img/arrow-right.svg) center center no-repeat !important;
  text-indent: -9999px;
}

.pagination a.prev {
  width: 27px;
  background: url(../img/arrow-right.svg) center center no-repeat;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  text-indent: -9999px;
}

.pagination a.prev:hover {
  width: 27px !important;
  background: url(../img/arrow-right.svg) center center no-repeat !important;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}


.pagination li.active a {
  background: #888380;
  color: #fff;
}

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

input[type="checkbox"] + label {
  position: relative;
  padding: 0 0 0 25px;
  margin: 0 0 15px 0;
  font-size: 14px;
  cursor: pointer;
}

input[type="checkbox"] + label::before {
  content: '';
  position: absolute;
  top: 1px;
  left: 0;
  width: 15px;
  height: 15px;
  background: url("../img/checkmark-icon.svg") center center no-repeat;
  background-size: 0;
  border: 1px solid #D1CBC6;
  border-radius: 0;
  -webkit-transition: border-color .3s ease-in-out;
  transition: border-color .3s ease-in-out;
}

@media screen and (min-width: 992px) {
  input[type="checkbox"] + label:checked::before {
    background-size: 12px;
  }
}

input[type="checkbox"]:checked + label::before {
  border-color: #3A4557;
  background: #3A4557 url("../img/checkmark-icon-white.svg") center center no-repeat;
}

input[type="checkbox"]:hover + label::before {
  border: 2px solid #3A4557;
}

/* Radios */
input[type="radio"] {
  display: none;
}

input[type="radio"] + label {
  position: relative;
  padding: 0 0 0 30px;
  font-size: 16px;
  cursor: pointer;
  letter-spacing: 0.24px;
  color: #151617;
}

input[type="radio"] + label::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  width: 17px;
  height: 17px;
  border: 1px solid #3A4557;
  background: url("../img/product/radio-dot.svg") center center no-repeat;
  background-size: 0;
  border-radius: 50%;
}

input[type="radio"] + label strong {
  font-weight: 600;
}

input[type="radio"]:checked + label {
  border-color: #3A4557;
}

input[type="radio"]:checked + label::before {
  background-size: 11px;
}

.ps-wrapper {
  position: relative;
}

.ps-wrapper.ps--active-y {
  padding-right: 22px;
}

.ps-wrapper.ps--active-y .ps__rail-y {
  width: 3px;
  margin-right: 0;
  opacity: 1;
  background: transparent;
}

.ps-wrapper.ps--active-y .ps__rail-y .ps__thumb-y {
  right: 0;
  width: 3px;
  background: #D1CBC6;
  border-radius: 5px;
}

/* Icons */
.icon {
  display: inline-block;
  position: relative;
}

.icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.icon.user {
  width: 16px;
  height: 18px;
  background: url("../img/home/user-icon.svg") 0 0 no-repeat;
}

@media screen and (min-width: 992px) {
  .icon.user:hover {
    background: url("../img/home/user-icon-hover.svg") 0 0 no-repeat;
  }
}

.icon.whishlist {
  width: 20px;
  height: 18px;
  background: url("../img/home/wishlist-icon.svg") center center no-repeat;
}

@media screen and (min-width: 992px) {
  .icon.whishlist:hover {
    background: url("../img/home/wishlist-icon-hover.svg") center center no-repeat;
  }
}

.icon.cart {
  height: 22px;
  width: 25px;
  background: url("../img/home/icon-cart.svg") center center no-repeat;
}

.modal.cart-success {
  padding: 0 !important;
  text-align: right;
}

.modal.cart-success .modal-dialog {
  max-width: 392px;
  margin-top: 10vh;
}

@media screen and (max-width: 575px) {
  .modal.cart-success .modal-dialog {
    max-width: 100%;
  }
}

.modal.cart-success .modal-dialog .modal-content {
  height: 100%;
  padding: 25px;
  border: 0;
  border-radius: 0;
  overflow: auto;
}

.modal.cart-success .modal-dialog .modal-content .modal-header {
  display: block;
  padding: 5px 0 18px 0;
  border: 0;
  text-align: center;
}

.modal.cart-success .modal-dialog .modal-content .modal-header .modal-title {
  font-size: 21px;
  font-weight: 500;
}

.modal.cart-success .modal-dialog .modal-content .modal-header .btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 12px;
  height: 12px;
  margin: 0;
  padding: 0;
  background: url("../img/modal-close-icon.svg") center center no-repeat;
  border: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media screen and (min-width: 992px) {
  .modal.cart-success .modal-dialog .modal-content .modal-header .btn-close {
    opacity: .85;
  }
}

.modal.cart-success .modal-dialog .modal-content .modal-body {
  padding: 0;
}

.modal.cart-success .modal-dialog .modal-content .modal-body .product-layout .image {
  height: 190px;
}

.modal.cart-success .modal-dialog .modal-content .modal-body .product-layout .name {
  text-decoration: none;
}

.modal.cart-success .modal-dialog .modal-content .modal-body .product-layout .price-holder {
  position: relative;
  text-align: center;
}

.modal.cart-success .modal-dialog .modal-content .modal-body .product-layout .price-holder .pieces {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 0;
  font-size: 14px;
  color: #676563;
}

.modal.cart-success .modal-dialog .modal-content .modal-footer {
  padding: 20px 0 0 0;
  border: 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-bordered, .modal.cart-success .modal-dialog .modal-content .modal-footer .buttons button.btn-bordered {
  margin: 0 0 15px 0;
  padding: 15px 20px;
  background: #fff;
  border: 2px solid #161514;
  color: #161514;
}

@media screen and (min-width: 992px) {
  .modal.cart-success .modal-dialog .modal-content .modal-footer .buttons a.btn-bordered:hover, .modal.cart-success .modal-dialog .modal-content .modal-footer .buttons button.btn-bordered:hover {
    border-color: #888380;
    background: #888380;
    color: #fff;
  }
}

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

#cookie-bar.hide-block {
  left: auto;
  right: -100vw;
}

#cookie-bar .message {
  line-height: 28px;
  color: #161514;
  font-size: 16px;
}

#cookie-bar .message span {
  display: block;
  font-size: 16px;
}

#cookie-bar .message a {
  color: #3A4557;
  font-size: 16px;
  font-weight: 500;
}

#cookie-bar .message a:hover {
  color: #000;
  text-decoration: underline;
}

#cookie-bar .buttons {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 24px 0 0 0;
}

#cookie-bar .buttons .confirm {
  background: #151617;
  text-transform: uppercase;
  margin-right: 20px;
}

#cookie-bar .buttons .not-confirm {
  color: #3A4557;
  text-decoration: underline;
}

#cookie-bar .buttons .not-confirm:hover {
  color: #151617;
  text-decoration: underline;
}

.top-btn {
  position: absolute;
  top: 24px;
  left: 0;
  z-index: 99;
}

@media (max-width: 500px) {
  .top-btn {
    top: 5px;
  }
}

.top-btn .on-sale {
  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: 69px;
  height: 29px;
  background: #161514;
  color: #fff;
  font-weight: 500;
  text-align: center;
  z-index: 1;
  margin-bottom: 10px;
  position: static !important;
  font-size: 16px;
}

@media (max-width: 500px) {
  .top-btn .on-sale {
    width: 55px !important;
    margin-bottom: 5px;
    font-size: 12px;
  }
}

.top-btn .new-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: 69px;
  height: 29px;
  background: #3A4557;
  color: #fff;
  font-weight: 500;
  text-align: center;
  z-index: 1;
  margin-bottom: 10px;
  font-size: 16px;
}

@media (max-width: 500px) {
  .top-btn .new-btn {
    width: 55px !important;
    margin-bottom: 5px;
    font-size: 12px;
  }
}

.top-btn .sale-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: 69px;
  height: 29px;
  background: #499C4E;
  color: #fff;
  font-weight: 500;
  text-align: center;
  z-index: 1;
  margin-bottom: 10px;
  font-size: 16px;
}

@media (max-width: 500px) {
  .top-btn .sale-btn {
    width: 55px !important;
    margin-bottom: 5px;
    font-size: 12px;
  }
}

@media (min-width: 991px) {
  body .d-md-none .d-md-none {
    display: none !important;
  }
}

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

.tab_heading .view-more {
  margin-bottom: 63px;
}

@media (max-width: 767px) {
  .tab_heading .view-more {
    display: none;
  }
}

/*************font family*****************/
#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;
}

@media screen and (max-width: 767px) {
  #main-header {
    border-bottom: 1px solid #eae9e7;
  }
}

#main-header.on-scroll .mid-section {
  padding: 0 0 0 0;
  -webkit-box-shadow: 0 0 5px #ccc;
          box-shadow: 0 0 5px #ccc;
  height: 81px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1199px) {
  #main-header.on-scroll .mid-section {
    padding: 0;
  }
}

#main-header .notice-bar {
  padding: 3.5px 0;
  line-height: 28px;
  background-color: #888380;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
}

#main-header .top-bar {
  padding: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media screen and (max-width: 1199px) {
  #main-header .top-bar {
    display: none;
  }
}

#main-header .top-bar .phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18px;
  color: #151617;
}

#main-header .top-bar .phone::before {
  content: '';
  width: 16px;
  height: 16px;
  margin: 0 10px 0 0;
  background: url("../img/home/icon-whatsapp.svg") center center no-repeat;
  background-size: contain;
}

#main-header .lang-bar {
  margin: 0 0 0 15px;
}

#main-header .lang-bar .dropdown-toggle {
  border: 0;
  background: none;
  font-weight: 600;
  color: #3A4557;
  font-size: 12px;
}

#main-header .lang-bar .dropdown-menu {
  top: calc(100% + 5px);
  left: auto;
  right: 0;
  width: 85px;
  min-width: 1px;
  padding: 0;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
}

@media (min-width: 1199px) {
  #main-header .lang-bar .dropdown-menu {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    position: static;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

#main-header .lang-bar .dropdown-menu.show {
  width: auto;
}

#main-header .lang-bar .dropdown-menu.show li:last-child {
  margin-right: 10px;
}

#main-header .lang-bar .dropdown-menu li {
  margin-right: 12px;
}

#main-header .lang-bar .dropdown-menu li:last-child {
  margin-right: 0;
}

#main-header .lang-bar .dropdown-menu li.active a {
  font-weight: 600;
  color: #3A4557;
}

#main-header .lang-bar .dropdown-menu 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;
  padding: 10px 0;
  background: none;
  font-size: 12px;
  font-weight: 400;
  color: #57595B;
  text-decoration: none;
  letter-spacing: 0.18px;
}

#main-header .lang-bar .dropdown-menu li a:hover {
  font-weight: 600;
  color: #3A4557;
}

#main-header .lang-bar .dropdown-menu li a img {
  margin: 0 5px 0 0;
  border: 1px solid #D4D4D4;
  border-radius: 2px;
}

@media screen and (min-width: 992px) {
  #main-header .lang-bar .dropdown-menu li a:hover {
    color: #161514;
  }
}

#main-header .header-search {
  position: static;
}

#main-header .header-search .header-search-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 0;
  background: #fff;
  color: #676563;
  font-size: 14px;
}

#main-header .header-search .header-search-btn .icon {
  width: 20px;
  height: 20px;
  margin: 0 18px 0 0;
  background: #fff url("../img/home/icon-search.svg") center center no-repeat;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  background-size: 20px;
}

#main-header .header-search .header-search-btn::after {
  content: normal;
}

#main-header .header-search .header-search-btn.show .icon {
  background: url("../img/home/icon-close.svg") center center no-repeat;
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

#main-header .header-search .dropdown-menu {
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 30px 0;
  border: 0;
  border-top: 1px solid #eae9e7;
  background-color: #fff;
  border-radius: 0;
}

@media screen and (max-width: 1199px) {
  #main-header .header-search .dropdown-menu {
    top: 100%;
  }
}

@media screen and (min-width: 1200px) {
  #main-header .header-search .dropdown-menu .container {
    max-width: 850px;
  }
}

#main-header .header-search .dropdown-menu .search-form {
  width: 100%;
  margin: 0 0 30px 0;
  border-bottom: 1px solid #eae9e7;
}

#main-header .header-search .dropdown-menu .search-form .form-group {
  margin: 0;
}

#main-header .header-search .dropdown-menu .search-form .search-close {
  background: url(../img/home/icon-close.svg) center center no-repeat;
  width: 30px;
  height: 30px;
  display: inline-block;
}

#main-header .header-search .dropdown-menu .search-form input[type="text"] {
  width: 100%;
  padding: 10px 0;
  border: 0;
  font-size: 20px;
  line-height: 30px;
  color: #161514;
}

@media (min-width: 991px) {
  #main-header .header-search .dropdown-menu .search-form input[type="text"] {
    font-size: 34px;
    font-weight: 600;
    letter-spacing: 0.51px;
    line-height: 46px;
  }
}

#main-header .header-search .dropdown-menu .search-form input[type="text"]::-webkit-input-placeholder {
  color: #161514;
}

#main-header .header-search .dropdown-menu .search-form input[type="text"]::-moz-placeholder {
  color: #161514;
}

#main-header .header-search .dropdown-menu .search-form input[type="text"]:-ms-input-placeholder {
  color: #161514;
}

#main-header .header-search .dropdown-menu .search-form input[type="text"]:-moz-placeholder {
  color: #161514;
}

#main-header .header-search .dropdown-menu .search-form input[type="reset"] {
  width: 16px;
  height: 16px;
  border: 0;
  background: url("../img/home/icon-close.svg") center center no-repeat;
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

#main-header .header-search .dropdown-menu .search-form input[type="submit"],
#main-header .header-search .dropdown-menu .search-form button[type="submit"] {
  width: 23px;
  height: 20px;
  margin: 0 0 0 13px;
  border: 0;
  background: #fff url("../img/home/icon-search.svg") center center no-repeat;
  background-size: 20px;
}

#main-header .header-search .dropdown-menu .search-form .has-value input[type="reset"] {
  opacity: 1;
}

#main-header .header-search .dropdown-menu .instant-results .block {
  margin: 0 0 30px 0;
}

#main-header .header-search .dropdown-menu .instant-results .block h2, #main-header .header-search .dropdown-menu .instant-results .block h3, #main-header .header-search .dropdown-menu .instant-results .block h4 {
  margin: 0 0 10px 0;
  line-height: 28px;
  font-weight: 500;
  font-size: 16px;
}

#main-header .header-search .dropdown-menu .instant-results .block:last-child {
  margin: 0;
}

#main-header .header-search .dropdown-menu .instant-results ul li {
  margin: 0 0 11px 0;
}

#main-header .header-search .dropdown-menu .instant-results ul li:last-child {
  margin: 0;
}

#main-header .header-search .dropdown-menu .instant-results ul li a {
  font-size: 14px;
}

#main-header .header-search .dropdown-menu .products-list .product-layout {
  -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;
}

#main-header .header-search .dropdown-menu .products-list .product-layout .on-sale {
  width: 55px;
  height: 27px;
  font-size: 14px;
}

#main-header .header-search .dropdown-menu .products-list .product-layout .image {
  height: 176px;
  width: 80px;
  margin-right: 22px;
}

#main-header .header-search .dropdown-menu .products-list .product-layout .details {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 34px;
}

#main-header .header-search .dropdown-menu .products-list .product-layout .details .search-desc {
  width: 30%;
}

#main-header .header-search .dropdown-menu .products-list .product-layout .details .name {
  margin: 0 0 5px 0;
  line-height: 32px;
  font-size: 18px;
  letter-spacing: 0.27px;
  color: #151617;
  text-transform: capitalize;
  font-weight: 500;
}

@media (max-width: 1199px) {
  #main-header .header-search .dropdown-menu .products-list .product-layout .details .name {
    font-size: 16px;
  }
}

#main-header .header-search .dropdown-menu .products-list .product-layout .details .product-name {
  letter-spacing: 0.18px;
  color: #499C4E;
  font-weight: 500;
  width: 25%;
}

#main-header .header-search .dropdown-menu .products-list .product-layout .details .price {
  width: 22%;
}

#main-header .header-search .dropdown-menu .products-list .product-layout .details .product-title {
  letter-spacing: 0.18px;
  color: #83878B;
  line-height: 14px;
  margin-bottom: 9px;
  font-size: 12px;
  display: block;
}

#main-header .header-search .dropdown-menu .products-list .view-more {
  background: #3A4557;
  width: 100%;
  text-align: center;
  padding: 15px;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
}

#main-header .header-search .dropdown-menu .products-list .view-more::after {
  display: none;
}

#main-header .header-search .dropdown-menu .products-list .view-more:hover {
  background: #151617;
}

#main-header .header-search .dropdown-menu .view-more {
  margin: 40px 0 0 0;
  line-height: 24px;
  font-size: 14px;
}

#main-header .header-search .dropdown-menu .products-list {
  overflow-y: scroll;
  overflow-x: hidden;
  max-height: 500px;
  /* Track */
  /* Handle */
}

#main-header .header-search .dropdown-menu .products-list::-webkit-scrollbar {
  display: none;
}

#main-header .header-search .dropdown-menu .products-list::-webkit-scrollbar-track {
  background: #f1f1f1;
}

#main-header .header-search .dropdown-menu .products-list::-webkit-scrollbar-thumb {
  background: #888;
}

#main-header .mid-section {
  padding: 0;
}

@media screen and (max-width: 1199px) {
  #main-header .mid-section {
    padding: 10px 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
}

#main-header .mid-section .user-menu li {
  position: relative;
  margin: 0 22px 0 0;
}

@media screen and (max-width: 575px) {
  #main-header .mid-section .user-menu li {
    margin: 0 15px 0 0;
  }
}

#main-header .mid-section .user-menu li:last-child {
  margin: 0;
}

#main-header .mid-section .user-menu li .dropdown-toggle {
  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 .mid-section .user-menu li .dropdown-toggle::after {
  content: normal;
}

#main-header .mid-section .user-menu li.mobile-search-botton button {
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  background: #fff url("../img/home/icon-search.svg") center center no-repeat;
  background-size: contain;
}

@media (max-width: 991px) {
  #main-header .mid-section .user-menu li.mobile-search-botton button {
    background-size: 20px;
    width: 20px;
    height: 20px;
    position: relative;
    top: 2px;
  }
}

@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 .cart {
  position: relative;
}

#main-header .mid-section .user-menu .cart .counter {
  width: 18px;
  height: 18px;
  background: #3A4557;
  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;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18px;
  color: #FFFFFF;
  border-radius: 50%;
  position: absolute;
  left: 15px;
  top: -7px;
}

#main-header .mid-section .user-menu .cart .cart-dropdown {
  display: block;
  top: 50px;
  text-align: center;
  padding: 30px;
  border: 1px solid #E7EBEF;
  width: 368px;
  left: 50%;
  margin-left: -337px;
}

@media (min-width: 991px) {
  #main-header .mid-section .user-menu .cart .cart-dropdown {
    width: 368px;
    left: 50%;
    margin-left: -337px;
  }
}

@media (max-width: 400px) {
  #main-header .mid-section .user-menu .cart .cart-dropdown {
    width: 300px;
    left: 50%;
    margin-left: -269px;
  }
}

#main-header .mid-section .user-menu .cart .cart-dropdown:before {
  content: '';
  display: block;
  position: absolute;
  top: -10px;
  right: 18px;
  width: 18px;
  height: 18px;
  background: #FFFFFF;
  border-right: 1px solid #E7EBEF;
  border-bottom: 1px solid #E7EBEF;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-134deg);
}

#main-header .mid-section .user-menu .cart .cart-dropdown h5 {
  margin-bottom: 20px;
  font-size: 16px;
  letter-spacing: 0.24px;
  color: #151617;
}

#main-header .mid-section .user-menu .cart .cart-dropdown .cart-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

#main-header .mid-section .user-menu .cart .cart-dropdown .cart-box .image {
  width: 20%;
}

#main-header .mid-section .user-menu .cart .cart-dropdown .cart-box img {
  height: 77px;
  -o-object-fit: contain;
     object-fit: contain;
}

#main-header .mid-section .user-menu .cart .cart-dropdown .cart-box .details {
  text-align: left;
  padding-left: 20px;
  width: 80%;
}

#main-header .mid-section .user-menu .cart .cart-dropdown .cart-box .details h3 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.21px;
  color: #151617;
  line-height: 24px;
}

#main-header .mid-section .user-menu .cart .cart-dropdown .cart-box .details .sub-title {
  font-size: 12px;
  letter-spacing: 0.18px;
  color: #83878B;
  text-transform: uppercase;
  font-weight: 500;
}

#main-header .mid-section .user-menu .cart .cart-dropdown .cart-box .details .price {
  letter-spacing: 0.21px;
  color: #151617;
  font-size: 14px;
  line-height: 24px;
}

#main-header .mid-section .user-menu .cart .cart-dropdown .cart-box .details .product-name {
  font-size: 12px;
}

#main-header .mid-section .user-menu .cart .cart-dropdown .cart-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 34px;
}

#main-header .mid-section .user-menu .cart .cart-dropdown .cart-btn .border-btn {
  border: 2px solid #3A4557;
  height: 51px;
  line-height: 51px;
  color: #3A4557;
  text-align: center;
  width: 100%;
  display: inline-block;
  margin-bottom: 16px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
}

#main-header .mid-section .user-menu .cart .cart-dropdown .cart-btn .border-btn:hover {
  background: #151617;
  color: #fff;
  border: 2px solid #151617;
}

#main-header .mid-section .user-dropdown {
  position: absolute;
  width: 246px;
  background: #fff;
  left: -200px;
  text-align: center;
  padding: 21px;
  top: 50px;
  border: 1px solid #E7EBEF;
}

#main-header .mid-section .user-dropdown:before {
  content: '';
  display: block;
  position: absolute;
  top: -10px;
  right: 28px;
  width: 18px;
  height: 18px;
  background: #FFFFFF;
  border-right: 1px solid #E7EBEF;
  border-bottom: 1px solid #E7EBEF;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-134deg);
}

#main-header .mid-section .user-dropdown li {
  margin-bottom: 16px;
  margin-right: 0;
  font-size: 16px;
  letter-spacing: 0.24px;
  color: #151617;
  font-weight: 500;
  text-transform: capitalize;
}

#main-header .mid-section .user-dropdown li a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.21px;
  color: #151617;
}

#main-header .mid-section .user-dropdown li .accoutn_btn {
  background: #3A4557;
  width: 100%;
  height: 51px;
  text-align: center;
  display: inline-block;
  line-height: 51px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#main-header .mid-section .user-dropdown li .accoutn_btn:hover {
  background: #151617;
}

#main-header .mid-section .user-dropdown li:last-child {
  border-top: 1px solid #CACED2;
  padding-top: 15px;
}

#main-header .navbar-brand {
  margin: 0;
  font-size: 24px;
  color: #000;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 40px;
}

@media screen and (max-width: 767px) {
  #main-header .navbar-brand img {
    max-height: 32px;
    margin: 0 20px 0 0;
  }
}

@media screen and (max-width: 380px) {
  #main-header .navbar-brand img {
    max-width: 115px;
  }
}

#main-header .navbar-section {
  padding: 0;
}

@media screen and (min-width: 1200px) {
  #main-header .navbar-section {
    border-top: 1px solid #eae9e7;
    border-bottom: 1px solid #eae9e7;
  }
}

@media screen and (max-width: 1199px) {
  #main-header .navbar-nav {
    display: block;
  }
}

#main-header .navbar-nav > li {
  margin: 0 33px 0 0;
}

@media screen and (max-width: 1339px) {
  #main-header .navbar-nav > li {
    margin: 0 38px 0 0;
  }
}

@media screen and (max-width: 1199px) {
  #main-header .navbar-nav > li {
    margin: 0;
    border-bottom: 1px solid #eae9e7;
  }
}

#main-header .navbar-nav > li:first-child {
  padding-right: 20px;
}

@media screen and (max-width: 1199px) {
  #main-header .navbar-nav > li:first-child {
    padding-right: 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: 0;
  letter-spacing: .58px;
  color: #161514;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0;
}

@media screen and (max-width: 1399px) {
  #main-header .navbar-nav > li > a {
    font-size: 15px;
  }
}

@media screen and (min-width: 1200px) {
  #main-header .navbar-nav > li > a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    width: 100%;
    margin: 0;
    border: 0;
    background-color: transparent;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    bottom: -37px !important;
    top: auto;
  }
}

@media screen and (max-width: 1199px) {
  #main-header .navbar-nav > li > a {
    padding: 12px 40px 12px 20px;
    line-height: 28px;
    font-size: 16px;
  }
}

@media screen and (min-width: 992px) {
  #main-header .navbar-nav > li > a:hover {
    color: #3A4557;
  }
  #main-header .navbar-nav > li > a:hover::after {
    background-color: #7A8597;
  }
}

@media screen and (max-width: 991px) {
  #main-header .navbar-nav > li > a {
    position: relative;
    padding: 15px 30px 15px 15px;
    margin: 0;
    line-height: 23px;
    font-size: 17px;
  }
}

#main-header .navbar-nav > li.active > a {
  color: #3A4557;
}

#main-header .navbar-nav > li.active > a::after {
  background-color: #7A8597;
}

#main-header .navbar-nav > li.dropdown {
  position: static;
  margin: 0 32px 0 0;
}

@media (max-width: 1199px) {
  #main-header .navbar-nav > li.dropdown {
    margin: 0 0 0 0;
  }
}

#main-header .navbar-nav > li.dropdown.active .dropdown-toggle:before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  right: -30px;
}

#main-header .navbar-nav > li.dropdown img {
  margin-left: 10px;
}

@media (max-width: 1199px) {
  #main-header .navbar-nav > li.dropdown img {
    display: none;
  }
}

#main-header .navbar-nav > li.dropdown .dropdown-toggle {
  position: relative;
}

#main-header .navbar-nav > li.dropdown .dropdown-toggle:before {
  background: url(../img/home/arrow-down.svg) no-repeat right center;
  position: absolute;
  width: 20px;
  height: 20px;
  content: "";
  right: -25px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media screen and (max-width: 1199px) {
  #main-header .navbar-nav > li.dropdown .dropdown-toggle:before {
    display: none;
  }
}

#main-header .navbar-nav > li.dropdown .dropdown-toggle:after {
  width: calc(100% + 25px);
}

@media screen and (max-width: 1199px) {
  #main-header .navbar-nav > li.dropdown .dropdown-toggle::after {
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    width: 11px;
    height: 14px;
    margin: auto 0;
    border: 0;
    background: transparent url("../img/home/arrow-down.svg") center center no-repeat;
    background-size: contain;
    opacity: .6;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  #main-header .navbar-nav > li.dropdown .dropdown-toggle.show {
    background-color: #f2eeeb;
  }
  #main-header .navbar-nav > li.dropdown .dropdown-toggle.show::after {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
}

#main-header .navbar-nav > li.dropdown > .dropdown-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 30px 0 30px;
  border: 0;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  overflow: hidden;
  margin-top: 30px;
}

@media screen and (max-width: 1199px) {
  #main-header .navbar-nav > li.dropdown > .dropdown-menu {
    position: static;
    display: none;
    margin: 0 0 -1px 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    margin-top: 0;
  }
  #main-header .navbar-nav > li.dropdown > .dropdown-menu .container {
    width: 100%;
    padding: 0;
  }
  #main-header .navbar-nav > li.dropdown > .dropdown-menu .container .row {
    margin: 0;
  }
  #main-header .navbar-nav > li.dropdown > .dropdown-menu .container .row [class*="col"] {
    padding: 0;
  }
}

#main-header .navbar-nav > li.dropdown > .dropdown-menu h6 {
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  #main-header .navbar-nav > li.dropdown > .dropdown-menu h6 {
    padding: 13px 15px;
    border-bottom: 1px solid #eae9e7;
  }
}

#main-header .navbar-nav > li.dropdown > .dropdown-menu h6 a {
  color: #161514;
}

#main-header .navbar-nav > li.dropdown > .dropdown-menu h6 a:hover {
  color: #ce4e33;
}

#main-header .navbar-nav > li.dropdown > .dropdown-menu ul li {
  margin: 0 0 7px 0;
}

@media screen and (max-width: 1199px) {
  #main-header .navbar-nav > li.dropdown > .dropdown-menu ul li {
    margin: 0;
    border-bottom: 1px solid #eae9e7;
  }
}

#main-header .navbar-nav > li.dropdown > .dropdown-menu ul li:last-child {
  margin: 0;
}

#main-header .navbar-nav > li.dropdown > .dropdown-menu ul li a {
  display: inline-block;
  padding: 0;
  line-height: 28px;
  color: #676563;
  text-decoration: none;
}

@media screen and (max-width: 1199px) {
  #main-header .navbar-nav > li.dropdown > .dropdown-menu ul li a {
    display: block;
    padding: 13px 15px;
    letter-spacing: .32px;
    color: #A4A3A3;
  }
}

@media screen and (min-width: 992px) {
  #main-header .navbar-nav > li.dropdown > .dropdown-menu ul li a:hover {
    font-weight: 400;
    color: #ce4e33;
  }
}

#main-header .navbar-nav > li.dropdown > .dropdown-menu .banner .banner-heading {
  padding: 0 30px;
  margin: 0;
}

@media screen and (max-width: 1199px) {
  #main-header .navbar-nav > li.dropdown > .dropdown-menu .banner {
    display: none !important;
  }
}

@media screen and (min-width: 1200px) {
  #main-header .navbar-nav > li.dropdown:hover > .dropdown-toggle::after {
    background-color: #7A8597;
  }
}

#main-header .navbar-nav > li.dropdown:hover > .dropdown-menu {
  overflow: hidden;
}

@media screen and (min-width: 1200px) {
  #main-header .navbar-nav > li.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    border-top: 1px solid #CACED2;
  }
}

#main-header .navbar-nav > li.dropdown:hover > .dropdown-menu:before {
  right: -510px;
  top: 12px;
  background: url(../img/product/product-bg.svg) no-repeat right top;
  width: 100%;
  height: 1000px;
  content: "";
  position: absolute;
  z-index: -1;
}

@media screen and (max-width: 1199px) {
  #main-header .navbar-nav > li.dropdown:hover > .dropdown-menu:before {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  #main-header .menu-toggle-mobile {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  #main-header .menu-toggle-mobile {
    margin: 0 40px 0 0;
  }
}

@media screen and (max-width: 767px) {
  #main-header .menu-toggle-mobile {
    margin: 0 15px 0 0;
  }
}

#main-header .menu-toggle {
  position: relative;
  width: 20px;
  height: 16px;
  border: 0;
  background: transparent;
  cursor: pointer;
  outline: none;
}

@media screen and (min-width: 1200px) {
  #main-header .menu-toggle {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  #main-header .menu-toggle {
    margin: 0 40px 0 0;
  }
}

@media screen and (max-width: 767px) {
  #main-header .menu-toggle {
    margin: 0 15px 0 0;
  }
}

#main-header .menu-toggle .icon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 20px;
  height: 2px;
  background: #161514;
  -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: 20px;
  height: 2px;
  background: #161514;
  -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 {
  top: -7px;
}

#main-header .menu-toggle .icon::after {
  top: 7px;
}

#main-header .menu-toggle.opened .icon {
  background-color: transparent;
}

#main-header .menu-toggle.opened .icon::before {
  -webkit-transform: rotate(45deg) translate(3px, 3px);
          transform: rotate(45deg) translate(3px, 3px);
}

#main-header .menu-toggle.opened .icon::after {
  -webkit-transform: rotate(-45deg) translate(5px, -6px);
          transform: rotate(-45deg) translate(5px, -6px);
}

#main-header .nav-holder {
  margin-right: 30px;
  display: inline-block;
}

@media (min-width: 1400px) {
  #main-header .nav-holder {
    margin-right: 92px;
  }
}

@media screen and (max-width: 1199px) {
  #main-header .nav-holder {
    position: fixed;
    top: 0;
    left: -110%;
    bottom: 0;
    padding: 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    z-index: 1;
  }
  #main-header .nav-holder .btn-close {
    position: absolute;
    top: 25px;
    left: calc(100% + 25px);
    width: 16px;
    height: 16px;
    border: 0;
    background: url("../img/mobile-nav-close.svg") center center no-repeat;
    -webkit-transition: all .7s ease-in-out;
    transition: all .7s ease-in-out;
  }
}

@media screen and (max-width: 1199px) and (max-width: 370px) {
  #main-header .nav-holder .btn-close {
    top: 15px;
    left: calc(100% + 15px);
  }
}

@media screen and (max-width: 1199px) {
  #main-header .nav-holder .wrapper {
    position: relative;
    width: 295px;
    height: 100%;
    background-color: #fff;
    overflow: auto;
    z-index: 1;
  }
  #main-header .nav-holder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100vw;
    background-color: rgba(22, 21, 20, 0.5);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .7s ease-in-out;
    transition: all .7s ease-in-out;
  }
  #main-header .nav-holder .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0 0 0 20px;
    background: url("../img/remove-icon.svg") left center no-repeat;
    background-size: auto;
    background-size: 10px;
    border: 0;
    color: #E4B239;
    font-size: 16px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  #main-header .nav-holder .mobile-search {
    display: block;
    padding: 15px 15px 15px 8px;
    letter-spacing: .58px;
    line-height: 28px;
    font-size: 16px;
    color: #161514;
    border-bottom: 1px solid #eae9e7;
  }
  #main-header .nav-holder .mobile-view .top-holder {
    padding: 25px 15px;
    border-bottom: 1px solid #eae9e7;
  }
  #main-header .nav-holder .mobile-view .top-holder .phone {
    position: relative;
    padding-left: 20px;
    letter-spacing: 0.21px;
    color: #151617;
    font-size: 14px;
  }
  #main-header .nav-holder .mobile-view .top-holder .phone:before {
    content: '';
    width: 16px;
    height: 16px;
    margin: 0 10px 0 0;
    background: url(../img/home/icon-whatsapp.svg) center center no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
  }
  #main-header .nav-holder .mobile-view .header-search .dropdown-menu {
    position: static;
    padding-top: 20px;
    padding-bottom: 50px;
    padding: 20px 15px 50px 15px;
    border: 0;
  }
  #main-header .nav-holder .mobile-view .header-search .dropdown-menu form button[type="submit"],
  #main-header .nav-holder .mobile-view .header-search .dropdown-menu form input[type="submit"] {
    margin: 0 0 0 14px;
  }
  #main-header .nav-holder .mobile-view .header-search .dropdown-menu .product-layout .details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 0;
    width: 100%;
  }
  #main-header .nav-holder .mobile-view .header-search .dropdown-menu .product-layout .details .search-desc {
    width: 100%;
  }
  #main-header .nav-holder .mobile-view .header-search .dropdown-menu .product-layout .details .product-name {
    width: 100%;
  }
  #main-header .nav-holder .mobile-view .header-search .dropdown-menu .product-layout .details .price {
    width: 100%;
  }
  #main-header .nav-holder .mobile-view .header-search .instant-results ul li a {
    font-size: 16px;
  }
  #main-header .nav-holder .mobile-view .header-search .container {
    padding: 0;
  }
  #main-header .nav-holder .mobile-view .header-search .show-all {
    margin: 45px 0 0 0;
  }
  #main-header .nav-holder .mobile-view .user-menu li {
    border-bottom: 1px solid #eae9e7;
  }
  #main-header .nav-holder .mobile-view .user-menu li a {
    position: relative;
    display: block;
    padding: 15px 15px 15px 42px;
    letter-spacing: .58px;
    line-height: 28px;
    font-size: 16px;
    color: #161514;
    font-weight: 500;
  }
  #main-header .nav-holder .mobile-view .user-menu li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    bottom: 0;
    margin: auto 0;
  }
  #main-header .nav-holder .mobile-view .user-menu li a strong {
    font-weight: 500;
    padding-left: 5px;
    font-size: 16px;
    line-height: 31px;
    color: #161514;
  }
  #main-header .nav-holder .mobile-view .user-menu li.user a::before {
    width: 16px;
    height: 18px;
    background: url("../img/user-icon.svg") 0 0 no-repeat;
  }
  #main-header .nav-holder .mobile-view .user-menu li.whish-list a::before {
    width: 16px;
    height: 14px;
    background: url("../img/home/wishlist-icon.svg") center center no-repeat;
    background-size: contain;
  }
  #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);
  }
}

#main-header.on-scroll {
  top: 0;
}

@media screen and (max-width: 1199px) {
  #main-header.on-scroll {
    top: 0;
  }
}

#main-header.on-scroll .navbar-nav > li.dropdown > .dropdown-menu {
  margin-top: 0;
}

#main-header.on-scroll .top-bar {
  opacity: 0;
  visibility: hidden;
  display: none;
}

#main-header.on-scroll .cart-dropdown {
  top: 44px !important;
}

#main-header.on-scroll .user-dropdown {
  top: 41px !important;
}

#main-header.on-scroll .navbar-nav > li > a:after {
  bottom: -29px !important;
}

.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 45px 0;
  letter-spacing: 0.69px;
  font-size: 46px;
  font-weight: 600;
  line-height: 66px;
}

@media screen and (max-width: 991px) {
  .page-title {
    margin: 0 0 40px 0;
    line-height: 52px;
    font-size: 42px;
  }
}

@media screen and (max-width: 767px) {
  .page-title {
    margin: 0 0 20px 0;
    line-height: 50px;
    font-size: 36px;
  }
}

.page-title span {
  display: block;
  margin: 22px 0 0 0;
  line-height: 28px;
  font-size: 16px;
}

.page-heading-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 250px;
  padding: 30px 0;
  margin: -72px 0 60px 0;
  background-size: cover !important;
  font-size: 21px;
  font-weight: 500;
  color: #fff;
}

@media screen and (max-width: 991px) {
  .page-heading-box {
    margin: -20px 0 60px 0;
    min-height: 145px;
    padding: 20px 0;
  }
}

.page-heading-box .page-title {
  margin: 0 0 12px 0;
  line-height: 70px;
  font-size: 54px;
  color: #fff;
}

@media screen and (max-width: 991px) {
  .page-heading-box .page-title {
    margin: 0 0 7px 0;
    line-height: 42px;
    font-size: 32px;
  }
}

.page-heading-box p, .page-heading-box span {
  max-width: 60%;
  line-height: 28px;
}

@media screen and (max-width: 991px) {
  .page-heading-box p, .page-heading-box span {
    max-width: 80%;
  }
}

@media screen and (max-width: 767px) {
  .page-heading-box p, .page-heading-box span {
    line-height: 27px;
    font-size: 20px;
  }
}

.view-more {
  position: relative;
  padding: 0 42px 0 0;
  margin: 0;
  line-height: 28px;
  border: 0;
  background: none;
  color: #57595B;
  font-size: 16px;
  font-weight: 500;
  -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: 27px;
  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;
}

.view-more:hover {
  color: #161514;
  text-decoration: underline;
}

@media screen and (min-width: 992px) {
  .view-more:hover::after {
    right: -10px;
  }
}

.quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 51px;
  width: 105px;
  margin: 0;
  border: 1px solid #D1CBC6;
  background: #fff;
}

.quantity input {
  width: 33px;
  line-height: 40px;
  padding: 0;
  border: 0;
  background: #fff;
  font-size: 18px;
  font-weight: 400;
  pointer-events: none;
  text-align: center;
  color: #151617;
  letter-spacing: 0.27px;
}

.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;
  background: #fff;
  font-size: 16px;
  font-weight: 300;
  color: #161514;
}

@media screen and (min-width: 992px) {
  .quantity button.btn:hover {
    background: #f7f7f7;
  }
}

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

.accordion .accordion-item {
  margin: 0 0 25px 0;
  border: 0;
  border-radius: 3px;
}

@media screen and (max-width: 767px) {
  .accordion .accordion-item {
    margin: 0;
    border-bottom: 1px solid #dedede;
    border-radius: 0;
  }
  .accordion .accordion-item:first-child {
    border-top: 1px solid #dedede;
  }
}

.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: 22px 40px 22px 25px;
  border: 1px solid #D1D1D1;
  font-size: 21px;
  font-weight: 400;
  color: #000;
  white-space: normal;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 3px;
}

@media screen and (max-width: 1199px) {
  .accordion .accordion-item .accordion-header .accordion-button {
    padding: 15px 40px 15px 15px;
    font-size: 19px;
  }
}

@media screen and (max-width: 767px) {
  .accordion .accordion-item .accordion-header .accordion-button {
    padding: 15px 60px 15px 30px;
    border: 0;
    border-radius: 0;
  }
}

.accordion .accordion-item .accordion-header .accordion-button::after {
  position: absolute;
  top: 0;
  right: 25px;
  bottom: 0;
  width: 16px;
  height: 14px;
  margin: auto 0;
  background: url("../img/arrow-bottom-black.svg") center center no-repeat;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .accordion .accordion-item .accordion-header .accordion-button::after {
    right: 30px;
  }
}

.accordion .accordion-item .accordion-header .accordion-button[aria-expanded="true"] {
  background-color: #f3f3f3;
  border-color: #f3f3f3;
  border-radius: 3px 3px 0 0;
}

.accordion .accordion-item .accordion-header .accordion-button[aria-expanded="true"]::after {
  background: url("../img/arrow-bottom.svg") center center no-repeat;
  background-size: contain;
}

.accordion .accordion-item .accordion-body {
  padding: 0 25px 30px 25px;
  background-color: #f3f3f3;
  font-size: 16px;
  border-radius: 0 0 3px 3px;
}

@media screen and (max-width: 767px) {
  .accordion .accordion-item .accordion-body {
    padding: 5px 30px 30px 30px;
  }
}

.accordion .accordion-item .accordion-body p {
  margin: 0 0 30px 0;
  line-height: 26px;
}

@media screen and (max-width: 767px) {
  .accordion .accordion-item .accordion-body p {
    margin: 0 0 23px 0;
  }
}

.accordion .accordion-item .accordion-body p:last-child {
  margin: 0;
}

.has-aside .mobile-filter-button {
  padding: 0;
  margin: 0 0 50px 0;
  border: 0;
  background: none;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  background: #3A4557;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 51px;
  color: #fff;
  text-transform: uppercase;
}

.has-aside .mobile-filter-button:hover {
  background: #151617;
}

.has-aside .mobile-filter-button .icon {
  display: none;
  position: relative;
  width: 18px;
  height: 2px;
  margin: -2px 15px 0 0;
  background: #000;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.has-aside .mobile-filter-button .icon::before, .has-aside .mobile-filter-button .icon::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: #000;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.has-aside .mobile-filter-button .icon::before {
  top: -5px;
}

.has-aside .mobile-filter-button .icon::after {
  top: 5px;
}

.has-aside .sidebar {
  width: 285px;
  min-width: 285px;
  margin: 0 40px 0 0;
}

.has-aside .products-list {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
  .has-aside .products-list ul.list > li:nth-child(3n+0) {
    border-right: 0;
  }
}

@media screen and (min-width: 991px) {
  .sidebar.filters h2 {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .sidebar.filters {
    position: fixed;
    top: 0;
    left: -100vw;
    bottom: 0;
    width: 300px;
    padding: 25px 0 0 0;
    background: #fff;
    overflow: inherit;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    z-index: 10001;
  }
  .sidebar.filters h2 {
    border-bottom: 1px solid #CACED2;
    margin-bottom: 20px;
    padding-bottom: 20px;
    letter-spacing: 0.32px;
    color: #151617;
    text-transform: uppercase;
    font-size: 21px;
    line-height: 31px;
    font-weight: 500;
    padding-left: 20px;
  }
  .sidebar.filters form {
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
    width: 100%;
    padding: 0 20px 20px 20px;
  }
  .sidebar.filters .widget .holder {
    display: none;
    padding-bottom: 20px;
  }
  .sidebar.filters .btn-close {
    position: absolute;
    top: 15px;
    right: auto;
    padding: 0 0 0 20px;
    background: url(../img/mobile-nav-close.svg) left center no-repeat;
    background-size: 10px;
    border: 0;
    color: #E4B239;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    left: calc(100% - -20px);
    width: 30px;
    height: 31px;
    font-size: 0;
    background-size: 20px;
  }
  .sidebar.filters.opened {
    left: 0;
  }
  .sidebar.filters.opened .widget {
    border-bottom: 1px solid #CACED2;
    margin-bottom: 20px;
  }
}

.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 18px 0;
  line-height: 25px;
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.32px;
  color: #151617;
}

.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: 12px;
  margin: auto 0;
  background: url("../img/minus-icon.svg") center center no-repeat;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media screen and (max-width: 991px) {
  .sidebar.filters .widget-heading.allow-slide::after {
    background: url("../img/plus-icon.svg") center center no-repeat;
  }
}

.sidebar.filters .widget-heading .reset-form {
  border: 0;
  background: none;
  font-weight: 400;
  font-size: 12px;
  text-decoration: underline;
}

@media screen and (min-width: 991px) {
  .sidebar.filters .widget-heading .reset-form:hover {
    text-decoration: none;
  }
}

.sidebar.filters .widget-heading.closed {
  margin: 0 0 0 0;
  border-color: transparent;
}

.sidebar.filters .widget-heading.closed::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background: url("../img/plus-icon.svg") center center no-repeat;
}

@media screen and (max-width: 991px) {
  .sidebar.filters .widget-heading.closed::after {
    background: url("../img/minus-icon.svg") center center no-repeat;
  }
}

.sidebar.filters .amount {
  margin-left: 15px;
  color: #BCBCBC;
  font-weight: 400;
  font-style: normal;
}

@media screen and (min-width: 992px) {
  .sidebar.filters .widget {
    padding: 0 0 25px 0;
    margin: 0 0 30px 0;
    border-bottom: 1px solid #CACED2;
  }
}

@media screen {
  .sidebar.filters .widget.select-filter {
    padding: 0 0 29px 0;
    margin: 0 0 34px 0;
  }
}

@media screen and (max-width: 992px) {
  .sidebar.filters .widget.select-filter {
    padding: 0 0 0px 0;
    margin: 0 0 18px 0;
  }
}

.sidebar.filters .widget:last-child {
  padding: 0;
  border: 0;
}

.sidebar.filters .widget.filter-close {
  margin: 0 0 15px 0;
  padding-bottom: 15px;
}

.sidebar.filters .price-range-holder {
  margin: 0 0 24px 0;
}

.sidebar.filters .price-range-holder input {
  width: 50%;
  background: #fff;
  border: 0;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.24px;
  color: #151617;
}

.sidebar.filters .price-range-holder input:last-child {
  text-align: right;
}

.sidebar.filters .ui-slider {
  height: 2px;
  margin: 0 0 8px 0;
  border: 0;
  background: #d0cbc5;
  border-radius: 0;
}

.sidebar.filters .ui-slider .ui-slider-range {
  background: #499C4E;
  border: 0;
  border-radius: 0;
  height: 2px;
}

.sidebar.filters .ui-slider .ui-slider-handle {
  top: -8px;
  width: 2px;
  height: 16px;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  outline: none;
  border-radius: 0;
}

.sidebar.filters .ui-slider .ui-slider-handle::before {
  content: '';
  position: absolute;
  right: -10px;
  display: block;
  width: 16px;
  height: 16px;
  border: 0;
  background: #499C4E;
  border-radius: 50%;
}

.sidebar.filters .checkboxes {
  margin-top: 23px;
}

@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;
  letter-spacing: 0.24px;
  color: #83878B;
  font-size: 16px;
}

.sidebar.filters .ps-wrapper {
  max-height: 330px;
}

.sidebar.filters .selected-filters {
  margin: 0 0 5px 0;
}

.sidebar.filters .selected-filters li {
  position: relative;
  padding: 0 0 0 22px;
  margin: 0 0 2px 0;
  font-size: 14px;
}

.sidebar.filters .selected-filters li:last-child {
  margin: 0;
}

.sidebar.filters .selected-filters li .remove {
  position: absolute;
  top: 6px;
  left: 0;
  width: 12px;
  height: 12px;
  border: 0;
  background: url("../img/icon-close.svg") center center no-repeat;
  background-size: contain;
}

.sidebar.filters .selected-filters li a {
  line-height: 24px;
  color: #161514;
}

.sidebar.filters .clear-btn {
  letter-spacing: 0.18px;
  color: #3A4557;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 28px;
  font-weight: 500;
  margin-top: 4px;
}

.sidebar.filters .clear-btn:hover {
  color: #CE4939;
}

.toolbar, .mobile-toolbar {
  margin: 0 0 20px 0;
}

@media screen and (max-width: 991px) {
  .toolbar, .mobile-toolbar {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .toolbar .sort-by, .toolbar .limit, .mobile-toolbar .sort-by, .mobile-toolbar .limit {
    display: none !important;
  }
  .toolbar .grid-icon-main span, .mobile-toolbar .grid-icon-main span {
    display: none;
  }
  .toolbar .total, .mobile-toolbar .total {
    font-size: 16px !important;
  }
}

.toolbar .total, .mobile-toolbar .total {
  line-height: 28px;
  color: #83878B;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.27px;
}

.toolbar .total strong, .mobile-toolbar .total strong {
  font-weight: 600;
}

.toolbar .limit, .toolbar .sort-by, .mobile-toolbar .limit, .mobile-toolbar .sort-by {
  margin-right: 25px;
}

.toolbar .limit > span, .toolbar .sort-by > span, .mobile-toolbar .limit > span, .mobile-toolbar .sort-by > span {
  margin: 0 0 0 0;
  white-space: nowrap;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.27px;
  color: #151617;
}

.toolbar .limit .dropdown-toggle, .toolbar .sort-by .dropdown-toggle, .mobile-toolbar .limit .dropdown-toggle, .mobile-toolbar .sort-by .dropdown-toggle {
  border: 0;
}

.toolbar .limit .filter-option-inner-inner, .toolbar .sort-by .filter-option-inner-inner, .mobile-toolbar .limit .filter-option-inner-inner, .mobile-toolbar .sort-by .filter-option-inner-inner {
  font-weight: 500;
  letter-spacing: 0.27px;
  color: #151617;
  font-size: 18px;
  line-height: 28px;
}

.toolbar .sort-by .bootstrap-select .dropdown-toggle, .mobile-toolbar .sort-by .bootstrap-select .dropdown-toggle {
  min-width: 130px;
}

.toolbar .grid-icon-main span, .mobile-toolbar .grid-icon-main span {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.27px;
  color: #151617;
}

.toolbar .grid-icon-main .view-icon, .mobile-toolbar .grid-icon-main .view-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 6px;
}

.toolbar .grid-icon-main .view-icon .grid-icon,
.toolbar .grid-icon-main .view-icon .list-icon, .mobile-toolbar .grid-icon-main .view-icon .grid-icon,
.mobile-toolbar .grid-icon-main .view-icon .list-icon {
  margin: 0 7px;
  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: 25px;
  height: 25px;
}

.toolbar .grid-icon-main .view-icon .grid-icon.active, .toolbar .grid-icon-main .view-icon .grid-icon:hover,
.toolbar .grid-icon-main .view-icon .list-icon.active,
.toolbar .grid-icon-main .view-icon .list-icon:hover, .mobile-toolbar .grid-icon-main .view-icon .grid-icon.active, .mobile-toolbar .grid-icon-main .view-icon .grid-icon:hover,
.mobile-toolbar .grid-icon-main .view-icon .list-icon.active,
.mobile-toolbar .grid-icon-main .view-icon .list-icon:hover {
  background: #DFDFDF;
  width: 25px;
  height: 25px;
}

.section .section-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: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 20px 0;
  line-height: 66px;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: .96px;
  color: #151617;
}

@media screen and (max-width: 1399px) {
  .section .section-heading {
    line-height: 53px;
    font-size: 42px;
  }
}

@media screen and (max-width: 991px) {
  .section .section-heading {
    line-height: 46px;
    font-size: 36px;
  }
}

@media screen and (max-width: 767px) {
  .section .section-heading {
    margin: 0 0 34px 0;
    line-height: 37px;
    letter-spacing: .62px;
    font-size: 34px;
  }
}

.section .section-heading .view-more {
  position: absolute;
  right: 0;
  top: 128px;
}

@media screen and (max-width: 991px) {
  .section .section-heading .view-more {
    display: block;
    position: static;
  }
}

.section.hero-slider {
  margin-top: 28px;
  position: relative;
}

.section.hero-slider::before {
  right: -518px;
  top: 0;
  background: url(../img/home/backgroundobject.svg) no-repeat right top;
  width: 1282px;
  height: 1000px;
  content: "";
  position: absolute;
  z-index: -1;
}

@media (max-width: 991px) {
  .section.hero-slider::before {
    display: none;
  }
}

.section.hero-slider .row {
  position: relative;
}

.section.hero-slider.sm .hero-swiper .swiper-slide {
  height: calc(100vh - 215px);
}

@media screen and (max-width: 575px) {
  .section.hero-slider.sm .hero-swiper .swiper-slide {
    height: auto;
  }
}

.section.hero-slider .banner-image {
  background: transparent;
}

@media screen and (min-width: 768px) {
  .section.hero-slider .banner-image {
    margin-bottom: 34px;
  }
}

.section.hero-slider .banner-image .banner-box {
  width: 100%;
  text-decoration: none;
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .section.hero-slider .banner-image .banner-box {
    margin-bottom: 0;
  }
}

.section.hero-slider .banner-image .banner-box .banner-bg {
  background: #3470B8;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
  position: relative;
}

@media (min-width: 1280px) {
  .section.hero-slider .banner-image .banner-box .banner-bg {
    width: 392px;
    height: 250px;
  }
}

.section.hero-slider .banner-image .banner-box .arrow-icon {
  background: url(../img/home/white_arrow.svg) no-repeat right bottom;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  opacity: 0;
}

.section.hero-slider .banner-image .banner-box .green {
  background: #1CBE21;
}

@media (min-width: 1280px) {
  .section.hero-slider .banner-image .banner-box .green {
    width: 284px;
    height: 250px;
  }
}

.section.hero-slider .banner-image .banner-box .orange {
  background: #CE4939;
  width: 100%;
  height: 220px;
}

@media (max-width: 767px) {
  .section.hero-slider .banner-image .banner-box .orange {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.section.hero-slider .banner-image .banner-box:hover img {
  border-radius: 0 0 170px 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.section.hero-slider .banner-image .banner-box:hover .banner-box-1 figcaption {
  color: #3470B8;
}

.section.hero-slider .banner-image .banner-box:hover .banner-box-2 figcaption {
  color: #1CBE21;
}

.section.hero-slider .banner-image .banner-box:hover .banner-box-3 figcaption {
  color: #CE4939;
}

.section.hero-slider .banner-image .banner-box:hover .arrow-icon {
  opacity: 1;
}

.section.hero-slider .banner-image .banner-box:hover .orange img {
  border-radius: 0 0 200px 0;
}

.section.hero-slider .banner-image img {
  height: 100%;
  width: 100%;
  display: block;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 767px) {
  .section.hero-slider .banner-image img {
    height: 145px;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transform: none !important;
            transform: none !important;
  }
}

.section.hero-slider .banner-image figcaption {
  font-size: 18px;
  line-height: 31px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.27px;
  color: #151617;
  font-weight: 500;
  margin-top: 10px;
}

@media screen and (max-width: 991px) {
  .section.hero-slider .banner-image figcaption {
    font-size: 13px;
    line-height: 23px;
  }
}

@media screen and (max-width: 767px) {
  .section.hero-slider .banner-image figcaption {
    font-size: 16px;
    line-height: 23px;
  }
}

.section.hero-slider .banner-image .what-icon {
  width: 35px;
  height: 35px;
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#61D36D), to(#2CAF43)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #61D36D 0%, #2CAF43 100%) 0% 0% no-repeat padding-box;
  border-radius: 50%;
  position: absolute;
  right: 22px;
  bottom: 21px;
}

.section.hero-slider .banner-image .what-icon img {
  height: auto;
}

.section.hero-slider .hero-desc {
  max-width: 380px;
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .section.hero-slider .hero-desc {
    max-width: 100%;
    text-align: center;
    margin-top: 0;
  }
}

.section.categories {
  padding: 140px 0 140px 0;
}

@media screen and (max-width: 991px) {
  .section.categories {
    padding: 80px 0;
  }
}

@media screen and (max-width: 991px) {
  .section.categories .categories-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.section.categories .categories-list li {
  width: 25%;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media screen and (max-width: 991px) {
  .section.categories .categories-list li {
    width: 50%;
  }
}

.section.categories .categories-list li .category {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  height: 460px;
  padding: 35px;
  background-size: cover !important;
  background-position: center center !important;
  text-decoration: none;
}

@media screen and (max-width: 991px) {
  .section.categories .categories-list li .category {
    height: 270px;
    padding: 30px 20px;
  }
}

.section.categories .categories-list li .category::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.65)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
}

.section.categories .categories-list li .text {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 1;
}

@media screen and (min-width: 1300px) {
  .section.categories .categories-list li .text {
    min-height: 90px;
  }
}

.section.categories .categories-list li .text .name {
  width: 100%;
  line-height: 52px;
  font-size: 34px;
  font-weight: 300;
  letter-spacing: .68px;
  color: #fff;
}

@media screen and (max-width: 1299px) {
  .section.categories .categories-list li .text .name {
    line-height: 40px;
    font-size: 30px;
  }
}

@media screen and (max-width: 991px) {
  .section.categories .categories-list li .text .name {
    line-height: 34px;
    font-size: 24px;
    letter-spacing: .48px;
  }
}

.section.categories .categories-list li .text .btn-open {
  position: relative;
  padding: 0 42px 0 0;
  margin: 0;
  line-height: 28px;
  border: 0;
  background: none;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media screen and (max-width: 991px) {
  .section.categories .categories-list li .text .btn-open {
    display: none;
  }
}

.section.categories .categories-list li .text .btn-open::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  width: 27px;
  height: 16px;
  margin: auto 0;
  background: url("../img/arrow-right.svg") center center no-repeat;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media screen and (min-width: 992px) {
  .section.categories .categories-list li:hover {
    width: 30%;
  }
  .section.categories .categories-list li:hover .text .btn-open {
    margin: 10px 0 0 0;
    opacity: 1;
  }
  .section.categories .categories-list li:hover .text .btn-open::after {
    right: -10px;
  }
}

.section.categories .mobile-button {
  margin: 50px 0 0 0;
}

.section.categories .mobile-button a {
  min-width: 300px;
}

@media screen and (max-width: 575px) {
  .section.categories .mobile-button a {
    width: 100%;
  }
}

.section.products-list {
  padding-bottom: 111px;
  padding-top: 71px;
}

@media screen and (max-width: 767px) {
  .section.products-list {
    padding-bottom: 80px;
  }
}

.section.products-list.popular {
  padding-top: 99px;
}

@media screen and (max-width: 991px) {
  .section.products-list.popular {
    padding-top: 80px;
  }
}

.section.products-list.popular .product-layout .details {
  padding-top: 0;
}

@media screen and (max-width: 767px) {
  .section.products-list.has-banners {
    padding-bottom: 40px;
  }
}

.section.products-list.has-banners .container > .row {
  margin: 0 -20px;
}

.section.products-list.has-banners .container > .row > [class*="col-"] {
  padding: 0 20px;
}

.section.products-list.has-banners .section-heading {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0 0 10px 0;
  margin: -10px 0 15px 0;
  border-bottom: 1px solid #EBE8E5;
}

@media screen and (min-width: 992px) {
  .section.products-list.has-banners .section-heading {
    line-height: 52px;
    letter-spacing: .68px;
    font-size: 34px;
  }
}

@media screen and (max-width: 767px) {
  .section.products-list.has-banners .section-heading {
    line-height: 34px;
    font-size: 24px;
  }
}

.section.products-list.has-banners .list .row [class*="col-"] {
  margin-bottom: 30px;
}

.section.products-list.has-banners .product-layout .image {
  height: 220px;
}

@media screen and (max-width: 767px) {
  .section.products-list.has-banners .product-layout .image {
    height: 200px;
  }
}

@media screen and (max-width: 991px) {
  .section.products-list.has-banners .banners-list {
    margin: 0 0 60px 0;
  }
}

.section.products-list.has-banners .banners-list .banner {
  min-height: 373px;
  margin: 0 0 40px 0;
}

@media screen and (max-width: 767px) {
  .section.products-list.has-banners .banners-list .banner {
    min-height: 325px;
  }
}

.section.products-list.has-banners .banners-list .banner:last-child {
  margin: 0;
}

.section.products-list .mobile-button {
  margin: 10px 0 0 0;
}

.section.products-list .mobile-button a {
  min-width: 300px;
}

@media screen and (max-width: 575px) {
  .section.products-list .mobile-button a {
    width: 100%;
  }
}

@media screen and (max-width: 575px) {
  .section.products-list {
    padding-bottom: 60px;
    padding-top: 40px;
  }
}

.section.features {
  padding: 15px 0 0 0;
  margin: 0 0 140px 0;
}

@media screen and (max-width: 991px) {
  .section.features {
    margin: 0 0 75px 0;
  }
}

.section.features .block {
  padding: 0 45px;
}

@media screen and (max-width: 1199px) and (min-width: 768px) {
  .section.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.features .block {
    padding: 0 30px;
  }
}

@media screen and (max-width: 767px) {
  .section.features .block {
    padding: 25px 0;
    border-bottom: 1px solid #D1CBC6;
  }
}

.section.features .block .icon {
  min-width: 90px;
  margin: 0 25px 0 0;
}

@media screen and (max-width: 1199px) and (min-width: 768px) {
  .section.features .block .icon {
    margin: 0 0 25px 0;
  }
}

@media screen and (max-width: 767px) {
  .section.features .block .icon {
    width: 68px;
    min-width: 1px;
  }
}

.section.features .block .text .heading {
  margin: 0 0 12px 0;
  line-height: 25px;
  letter-spacing: .42px;
  font-weight: 500;
  font-size: 21px;
}

@media screen and (max-width: 1299px) and (min-width: 768px) {
  .section.features .block .text .heading {
    font-size: 18px;
  }
}

.section.features .block .text > span {
  font-weight: 300;
  line-height: 28px;
}

@media screen and (max-width: 1199px) {
  .section.features .block .text > span {
    line-height: 24px;
  }
}

.section.features .row {
  margin: 0;
}

@media screen and (min-width: 768px) {
  .section.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: 2px solid #e9e5e2;
  }
  .section.features .row [class*="col-"]:first-child .block {
    padding-left: 0;
  }
  .section.features .row [class*="col-"]:last-child {
    padding-right: 0;
    border: 0;
  }
}

@media screen and (max-width: 767px) {
  .section.features .row [class*="col-"]:first-child {
    padding-top: 0;
  }
  .section.features .row [class*="col-"]:last-child .block {
    padding-bottom: 0;
    border-bottom: 0;
  }
}

@media screen and (min-width: 992px) {
  .section.banners .row {
    margin: 0 -20px;
  }
  .section.banners .row [class*="col-"] {
    padding: 0 20px;
  }
}

@media screen and (max-width: 991px) {
  .section.banners .row {
    margin: 0 -20px;
  }
  .section.banners .row [class*="col-"] {
    margin: 0 0 30px 0;
  }
  .section.banners .row [class*="col-"]:last-child {
    margin: 0;
  }
}

.section.banners .banner {
  height: 450px;
}

@media screen and (max-width: 991px) {
  .section.banners .banner {
    height: 290px;
  }
}

.section.banners .banner .banner-heading {
  padding: 0 50px;
}

.banner {
  position: relative;
  height: 100%;
  background-size: cover !important;
}

.banner::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: transparent -webkit-gradient(linear, left bottom, left top, from(#FFFFFFCC), to(#FFFFFF40)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(0deg, #FFFFFFCC 0%, #FFFFFF40 100%) 0% 0% no-repeat padding-box;
}

.banner .text {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .banner .text {
    width: 100%;
    text-align: center;
  }
}

.banner .banner-heading {
  max-width: 390px;
  margin: 0 0 43px 0;
  line-height: 52px;
  letter-spacing: .68px;
  font-size: 34px;
  font-weight: 500;
  color: #000;
}

@media screen and (max-width: 1299px) {
  .banner .banner-heading {
    line-height: 44px;
  }
}

@media screen and (max-width: 767px) {
  .banner .banner-heading {
    max-width: 100%;
    line-height: 34px;
    font-size: 24px;
    text-align: center;
  }
}

.banner.wide {
  height: 330px;
  background-size: cover !important;
}

@media screen and (max-width: 767px) {
  .banner.wide {
    height: 325px;
  }
}

.banner.wide .container {
  height: 100%;
}

.banner.wide .btn {
  min-width: 215px;
}

.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%;
  text-decoration: none !important;
}

.product-layout .whishlist {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border: 0;
  background: #888380 url("../img/heart-icon.svg") center center no-repeat;
  border-radius: 50%;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  z-index: 1;
}

@media screen and (min-width: 992px) {
  .product-layout .whishlist:hover {
    background-color: #6e6a67;
  }
}

.product-layout .image {
  position: relative;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 300px;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .product-layout .image {
    height: 200px;
  }
}

.product-layout .image img {
  max-height: 100%;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  -o-object-fit: contain;
     object-fit: contain;
}

.product-layout .details {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -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: 19px 0 0 0;
  text-align: left;
}

@media screen and (max-width: 575px) {
  .product-layout .details {
    padding-bottom: 16px;
  }
}

.product-layout .details .sub-title {
  letter-spacing: 0.18px;
  color: #83878B;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 14px;
}

.product-layout .details .name {
  margin: 7px 0 7px 0;
  line-height: 22px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.27px;
  color: #151617;
}

.product-layout .details .price {
  line-height: 28px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.24px;
  color: #151617;
  text-decoration: none;
}

.product-layout .details .price .new {
  color: #151617;
}

.product-layout .details .price .old {
  margin: 0 0 0 10px;
  font-weight: 300;
  font-size: 14px;
  color: #676563;
  text-decoration: line-through;
}

@media screen and (min-width: 992px) {
  .product-layout:hover .image img {
    opacity: .85;
  }
  .product-layout:hover .wishlist-icon {
    background: #000 url(../img/category/wish-active.svg) center center no-repeat;
  }
}

.products-list ul.list {
  margin: 0 -20px;
}

.products-list ul.list > li {
  margin: 0 20px 15px 20px;
}

@media screen and (min-width: 768px) {
  .products-list ul.list.columns-4 > li {
    width: calc(25% - 40px);
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) and (min-width: 992px) {
  .products-list ul.list.columns-4 > li {
    width: calc(25% - 40px);
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .products-list ul.list.columns-4 > li {
    width: calc(33.3333% - 40px);
  }
  .products-list ul.list.columns-4 > li:last-child {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .products-list ul.list.columns-3 > li {
    width: calc(33% - 40px);
  }
  .products-list ul.list.columns-5 > li {
    width: calc(20% - 40px);
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) and (min-width: 992px) {
  .products-list ul.list.columns-5 > li {
    width: calc(25% - 40px);
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .products-list ul.list.columns-5 > li {
    width: calc(33.3333% - 40px);
  }
  .products-list ul.list.columns-5 > li:last-child {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .products-list ul.list > li {
    width: calc(50% - 40px);
  }
}

.products-list .show-more-items {
  margin: 25px 0 0 0;
}

.category-page {
  position: relative;
}

.category-page:before {
  right: -510px;
  top: 12px;
  background: url(../img/product/product-bg.svg) no-repeat right top;
  width: 100%;
  height: 1000px;
  content: "";
  position: absolute;
  z-index: -1;
}

@media (min-width: 992px) {
  .category-page:before {
    right: -785px;
    background-size: contain;
  }
}

@media (min-width: 1400px) {
  .category-page:before {
    right: -510px;
  }
}

@media (max-width: 991px) {
  .category-page:before {
    display: none;
  }
}

.product {
  position: relative;
  overflow: hidden;
}

.product:before {
  right: -510px;
  top: 12px;
  background: url(../img/product/product-bg.svg) no-repeat right top;
  width: 100%;
  height: 1000px;
  content: "";
  position: absolute;
  z-index: -1;
}

.product .row {
  margin: 28px -20px 0;
}

.product .row [class*="col-"] {
  padding: 0 20px;
}

.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;
    font-weight: 500;
  }
}

@media screen and (max-width: 767px) {
  .product .sub-title {
    letter-spacing: 0.18px;
    color: #83878B;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 28px;
    font-weight: 500;
  }
}

.product .gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .product .gallery {
    height: 528px;
  }
}

@media screen and (max-width: 767px) {
  .product .gallery {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 0 20px 0;
  }
}

@media (min-width: 992px) {
  .product .gallery .slider-images .top-btn {
    top: 30px;
    left: 25px;
  }
}

.product .gallery .swiper-container {
  width: 100%;
  height: 100%;
}

.product .gallery .slider-thumbs {
  height: 100%;
  width: 120px;
  min-width: 120px;
  margin: 0 15px 0 20px;
}

@media (max-width: 767px) {
  .product .gallery .slider-thumbs {
    width: auto;
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .product .gallery .slider-thumbs {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    height: 60px;
    width: 100%;
    margin: 30px 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;
  cursor: pointer;
  height: 120px !important;
}

@media (max-width: 767px) {
  .product .gallery .slider-thumbs .swiper-slide {
    height: auto !important;
  }
}

.product .gallery .slider-thumbs .swiper-slide img {
  width: 120px;
  height: 120px;
  max-height: 100%;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media (max-width: 767px) {
  .product .gallery .slider-thumbs .swiper-slide img {
    width: auto;
    height: auto;
  }
}

.product .gallery .slider-thumbs .swiper-slide.swiper-slide-thumb-active img {
  opacity: .6;
}

.product .gallery .slider-images {
  position: relative;
  width: 70%;
  max-width: 380px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .product .gallery .slider-images {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    height: 250px;
    width: 100%;
  }
}

.product .gallery .slider-images .on-sale {
  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: 35px;
  left: 0;
  width: 69    px;
  height: 29px;
  background: #161514;
  color: #fff;
  font-weight: 500;
  text-align: center;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .product .gallery .slider-images .on-sale {
    top: 25px;
  }
}

.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 .sub-title {
  letter-spacing: 0.18px;
  color: #83878B;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 28px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .product .summary .sub-title {
    display: none;
  }
}

.product .summary .entry-title {
  margin: 0 0 0 0;
  letter-spacing: 0.63px;
  color: #151617;
  font-size: 28px;
  line-height: 33px;
  font-weight: 600;
}

@media screen and (min-width: 991px) {
  .product .summary .entry-title {
    font-size: 42px;
    line-height: 66px;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 767px) {
  .product .summary .entry-title {
    display: none;
  }
}

.product .summary .category {
  margin: 0 0 15px 0;
  line-height: 28px;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.18px;
  color: #83878B;
}

@media screen and (min-width: 992px) {
  .product .summary .category {
    margin: 0 0 20px 0;
  }
}

.product .summary p {
  letter-spacing: 0.24px;
  color: #151617;
  margin-bottom: 20px;
}

@media screen and (min-width: 992px) {
  .product .summary p {
    margin-bottom: 23px;
  }
}

.product .summary .price {
  margin: 0 0 48px 0;
  line-height: 40px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.51px;
  color: #3A4557;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 992px) {
  .product .summary .price {
    line-height: 46px;
    font-size: 34px;
  }
}

@media screen and (max-width: 1199px) {
  .product .summary .price {
    margin: 0 0 30px 0;
  }
}

@media screen and (max-width: 991px) {
  .product .summary .price {
    margin: 0 0 20px 0;
  }
}

@media screen and (max-width: 767px) {
  .product .summary .price {
    margin: 0 0 30px 0;
  }
}

.product .summary .price .old {
  margin-left: 13px;
  text-decoration: line-through;
  font-size: 16px;
  color: #757575;
  line-height: 28px;
  letter-spacing: 0.24px;
}

.product .summary .wishlist-mobile {
  display: none;
}

@media (max-width: 767px) {
  .product .summary .wishlist-mobile {
    display: block;
  }
  .product .summary .wishlist-mobile .whishlist-btn {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    margin: 0px 0 27px;
  }
}

.product .summary .details {
  margin: 0 0 30px 0;
}

@media screen and (max-width: 767px) {
  .product .summary .details {
    margin: 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: 28px;
  font-weight: 500;
}

.product .summary .details li .icon {
  width: 30px;
  margin: 0 10px 0 0;
}

.product .summary .details li:last-child {
  margin: 0;
}

.product .summary .quantity {
  margin: 0 40px 0 0;
  position: relative;
  width: 69px;
}

@media screen and (max-width: 991px) {
  .product .summary .quantity {
    margin: 0 15px 20px 0;
  }
}

.product .summary .quantity .minus {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 26px;
  top: auto;
  width: 26px;
  min-width: 26px;
  border: 1px solid #ccc;
  border-bottom: 0 !important;
  border-right: 0 !important;
}

.product .summary .quantity .plus {
  position: absolute;
  top: 0;
  right: 0;
  border: 1px solid #ccc;
  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: 26px;
  width: 26px;
  min-width: 26px;
  border-top: 0 !important;
  border-right: 0 !important;
}

.product .summary .quantity input {
  width: calc(100% - 35px);
}

.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;
  margin: 0 0 0 18px;
  border: 0;
}

.product .summary .whishlist-btn .icon {
  margin: 0 15px 0 0;
}

@media screen and (max-width: 1199px) {
  .product .summary .whishlist-btn {
    width: 100%;
    padding: 0;
    margin: 20px 0 0 0;
  }
}

@media screen and (min-width: 992px) {
  .product .summary .whishlist-btn:hover .icon {
    background: url("../img/wishlist-icon-hover.svg") center center no-repeat;
  }
}

.product .summary .product-stock {
  margin: 21px 0 0 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.21px;
  color: #3A4557;
  background: url("../img/category/checkmark.svg") no-repeat left center;
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .product .summary .product-stock {
    margin: 0 0 15px 0;
  }
}

.product .summary .product-stock span {
  color: #83878B;
  font-weight: 400;
}

.product .summary input[type="submit"],
.product .summary button[type="submit"] {
  min-height: 100%;
  min-width: 200px;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  height: 51px;
  line-height: 51px;
}

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

@media screen and (max-width: 767px) {
  .product .summary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .product .summary form {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .product .summary .category {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin: 22px 0 30px 0;
  }
  .product .summary .price {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .product .summary .details {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .product .summary .product-code {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .product .summary .whishlist-btn {
    display: none !important;
  }
}

.product .tabs {
  margin: 60px 0 0 0;
  border-top: 2px solid #eae9e7;
}

@media screen and (max-width: 767px) {
  .product .tabs {
    margin: 35px 0 0 0;
  }
}

.product .tabs .nav-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -2px 0 60px 0;
  border: 0;
}

@media screen and (max-width: 991px) {
  .product .tabs .nav-tabs {
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 768px) {
  .product .tabs .nav-tabs {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.product .tabs .nav-tabs .nav-item {
  margin: 0 35px 0 0;
}

@media screen and (max-width: 991px) {
  .product .tabs .nav-tabs .nav-item {
    width: 50%;
    margin: 0;
    text-align: center;
  }
}

.product .tabs .nav-tabs .nav-item:last-child {
  margin-right: 0;
}

.product .tabs .nav-tabs .nav-item .nav-link {
  padding: 25px 42px 0 42px;
  border: 0;
  border-top: 5px solid transparent;
  font-size: 21px;
  color: #161514;
  font-weight: 300;
  border-radius: 0;
}

@media screen and (max-width: 991px) {
  .product .tabs .nav-tabs .nav-item .nav-link {
    width: 100%;
    padding: 16px 0 0 0;
    font-size: 16px;
  }
}

.product .tabs .nav-tabs .nav-item .nav-link.active {
  border-color: #888380;
  font-weight: 500;
}

@media screen and (min-width: 1200px) {
  .product .tabs .tab-pane > .row {
    margin: 0 -64px;
  }
  .product .tabs .tab-pane > .row [class*="col-"] {
    padding: 0 64px;
  }
}

@media screen and (max-width: 991px) {
  .product .tabs .tab-pane > .row [class*="col-"] {
    margin: 0 0 40px 0;
  }
  .product .tabs .tab-pane > .row [class*="col-"]:last-child {
    margin: 0;
  }
}

.product .tabs .tab-pane p {
  margin: 0 0 25px 0;
  line-height: 28px;
}

@media screen and (max-width: 767px) {
  .product .tabs .tab-pane p {
    margin: 0 0 22px 0;
    line-height: 23px;
  }
}

.product .tabs .tab-pane p:last-child {
  margin: 0;
}

.product .tabs .tab-pane .table tbody tr {
  border: 0;
}

.product .tabs .tab-pane .table tbody tr:first-child td {
  padding-top: 0;
}

.product .tabs .tab-pane .table tbody tr:last-child td {
  padding-bottom: 0;
  border-bottom: 0;
}

.product .tabs .tab-pane .table tbody tr td {
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid #eae9e7;
  font-weight: 400;
}

.product .tabs .tab-pane .table tbody tr td:first-child {
  width: 175px;
}

.product .tabs .tab-pane .table tbody tr td strong {
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .product .tabs .tab-pane .table tbody tr td.text-right {
    text-align: right;
  }
}

@media screen and (max-width: 767px) {
  .product .tabs .tab-pane .table tbody tr td {
    float: none;
    display: block;
    width: 100% !important;
    text-align: left;
  }
  .product .tabs .tab-pane .table tbody tr td:first-child {
    padding-bottom: 0;
    border: 0;
  }
  .product .tabs .tab-pane .table tbody tr td:last-child {
    padding-top: 17px;
  }
}

@media screen and (max-width: 767px) {
  .product .tabs .tab-pane .table tbody tr:first-child td:first-child {
    padding-top: 21px;
    border-top: 1px solid #eae9e7;
  }
  .product .tabs .tab-pane .table tbody tr:last-child td:last-child {
    padding-bottom: 21px;
    border-bottom: 1px solid #eae9e7;
  }
}

.similar-products {
  margin: 115px 0 0 0;
  padding: 0 !important;
}

@media screen and (max-width: 767px) {
  .similar-products {
    margin: 65px 0 0 0;
  }
}

.similar-products .section-heading {
  letter-spacing: 0.96px;
}

@media screen and (min-width: 992px) {
  .similar-products .section-heading {
    margin: 0 0 34px 0;
    line-height: 66px;
    font-size: 42px;
  }
}

.similar-products .section-heading .view-more {
  top: 16px;
}

@media (max-width: 767px) {
  .similar-products .section-heading .view-more {
    display: none;
  }
}

.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 form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 860px;
  margin: 0 auto 57px;
}

.product-brands form .span-label {
  margin: 0 15px 0 0;
  line-height: 28px;
}

.product-brands form .search-input-holder {
  position: relative;
  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;
}

.product-brands .letters {
  padding: 0 0 19px 0;
  margin: 0 0 -5px 0;
  border-bottom: 2px solid #161514;
}

.product-brands .letters li {
  margin: 0 35px 0 0;
  line-height: 28px;
  font-weight: 500;
  text-transform: uppercase;
}

.product-brands .letters li:last-child {
  margin: 0;
}

.product-brands .letters li a {
  color: #161514;
  text-decoration: none;
}

.product-brands .brands-list > li {
  position: relative;
  width: 20%;
  padding: 38px 0 33px 60px;
  border-bottom: 1px solid #EBE8E5;
}

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

.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-overview .page-title {
  margin: 0 0 50px 0;
}

@media screen and (max-width: 767px) {
  .cart-overview .page-title {
    margin: 0 0 20px;
  }
}

.cart-overview .row {
  margin: 0 -20px;
}

.cart-overview .row [class*="col"] {
  padding: 0 20px;
}

.cart-overview table {
  width: 100%;
  border-bottom: 1px solid #eae9e7;
  padding-bottom: 30px;
  display: inline-block;
}

.cart-overview .cart-table-responsive {
  /* Track */
  /* Handle */
  /* Handle on hover */
}

@media screen and (max-width: 767px) {
  .cart-overview .cart-table-responsive {
    width: 100%;
  }
}

.cart-overview .cart-table-responsive::-webkit-scrollbar {
  width: 3px;
}

.cart-overview .cart-table-responsive:-webkit-scrollbar-track {
  background: #f1f1f1;
}

.cart-overview .cart-table-responsive::-webkit-scrollbar-thumb {
  background: #888;
}

.cart-overview .cart-table-responsive::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.cart-overview #cart-table {
  margin: 0 0 35px 0;
}

@media screen and (max-width: 767px) {
  .cart-overview #cart-table {
    width: 100%;
    margin: 0 0 0 0;
  }
}

@media screen and (max-width: 767px) {
  .cart-overview #cart-table thead {
    display: none;
  }
}

.cart-overview #cart-table thead tr th {
  padding: 0 0 27px 0;
  border-bottom: 1px solid #eae9e7;
  font-size: 16px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .cart-overview #cart-table tbody tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: auto;
    position: relative;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 25px;
  }
}

.cart-overview #cart-table tbody tr td {
  padding: 0;
  vertical-align: middle;
}

@media screen and (min-width: 767px) {
  .cart-overview #cart-table tbody tr td {
    width: 27%;
  }
}

@media screen and (max-width: 767px) {
  .cart-overview #cart-table tbody tr td {
    padding: 10px 0;
    border-bottom: 1px solid #CACED2;
    width: calc(100% - 100px);
    margin-left: auto;
    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;
  }
}

.cart-overview #cart-table tbody tr td .title-mobile {
  display: none;
}

@media (max-width: 767px) {
  .cart-overview #cart-table tbody tr td .title-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    letter-spacing: 0.21px;
    color: #151617;
    font-size: 15px;
    font-weight: 500;
  }
}

.cart-overview #cart-table tbody tr td strong {
  font-weight: 600;
}

.cart-overview #cart-table tbody tr td .remove-btn {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0;
  border: 0;
  background: url("../img/icon-close.svg") center center no-repeat;
  background-size: contain;
}

.cart-overview #cart-table tbody tr td.product {
  padding-left: 0;
  width: 100px;
}

@media screen and (min-width: 768px) {
  .cart-overview #cart-table tbody tr td.product {
    width: 16%;
    padding-right: 40px;
  }
}

@media screen and (max-width: 767px) {
  .cart-overview #cart-table tbody tr td.product {
    border: 0;
    width: calc(100px - 20px);
    margin-right: 20px;
  }
}

.cart-overview #cart-table tbody tr td.product .thumbnail {
  width: 176px;
  min-width: 176px;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .cart-overview #cart-table tbody tr td.product .thumbnail {
    width: 100%;
    min-width: 100%;
  }
}

.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;
  height: 200px;
  width: 176px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 767px) {
  .cart-overview #cart-table tbody tr td.product .thumbnail img {
    height: auto;
  }
}

@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 {
  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;
  padding: 10px 0;
}

.cart-overview #cart-table tbody tr td.product .details .name {
  margin: 0 0 15px 0;
  line-height: 28px;
  font-size: 16px;
  font-weight: 300;
}

.cart-overview #cart-table tbody tr td.product .details .name a {
  color: #161514;
}

.cart-overview #cart-table tbody tr td.product .details .code {
  line-height: 24px;
  font-size: 14px;
  font-weight: 400;
  color: #676563;
}

@media screen and (max-width: 767px) {
  .cart-overview #cart-table tbody tr td .details {
    width: 200px;
  }
}

.cart-overview #cart-table tbody tr td.product-price {
  width: 18%;
  color: #151617;
}

@media screen and (max-width: 767px) {
  .cart-overview #cart-table tbody tr td.product-price {
    width: calc(100% - 100px);
    margin-left: auto;
  }
}

.cart-overview #cart-table tbody tr td.product-price .old-price {
  display: block;
  margin: 5px 0 0 0;
  line-height: 28px;
  color: #676563;
  font-size: 14px;
  letter-spacing: .28px;
  text-decoration: line-through;
}

.cart-overview #cart-table tbody tr td.product-quantity {
  width: 21%;
}

@media screen and (max-width: 767px) {
  .cart-overview #cart-table tbody tr td.product-quantity {
    width: calc(100% - 100px);
    margin-left: auto;
  }
}

.cart-overview #cart-table tbody tr td.product-quantity .quantity {
  position: relative;
  width: 69px;
}

@media (max-width: 767px) {
  .cart-overview #cart-table tbody tr td.product-quantity .quantity {
    width: 115px;
  }
}

@media (max-width: 767px) {
  .cart-overview #cart-table tbody tr td.product-quantity .quantity input {
    width: 40px;
    height: 100%;
  }
}

.cart-overview #cart-table tbody tr td.product-quantity .quantity .minus {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 26px;
  top: auto;
  width: 26px;
  min-width: 26px;
  border: 1px solid #ccc;
  border-bottom: 0 !important;
  border-right: 0 !important;
}

@media (max-width: 767px) {
  .cart-overview #cart-table tbody tr td.product-quantity .quantity .minus {
    left: 0;
    width: 30px;
    height: 100%;
    border: 0;
    border-right: 1px solid #ccc !important;
    position: static;
  }
}

.cart-overview #cart-table tbody tr td.product-quantity .quantity .plus {
  position: absolute;
  top: 0;
  right: 0;
  border: 1px solid #ccc;
  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: 26px;
  width: 26px;
  min-width: 26px;
  border-top: 0 !important;
  border-right: 0 !important;
}

@media (max-width: 767px) {
  .cart-overview #cart-table tbody tr td.product-quantity .quantity .plus {
    right: 0;
    width: 30px;
    height: 100%;
    top: 0;
    border-bottom: 0;
    position: static;
  }
}

.cart-overview #cart-table tbody tr td.product-total {
  font-weight: 500;
  color: #151617;
}

@media screen and (max-width: 767px) {
  .cart-overview #cart-table tbody tr td.product-total {
    width: calc(100% - 100px);
    margin-left: auto;
    border-bottom: 0;
  }
}

.cart-overview #cart-table tbody tr td.remove {
  padding-right: 0;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .cart-overview #cart-table tbody tr td.remove {
    width: calc(100% - 100px);
    margin-left: auto;
    position: absolute;
    top: 5px;
    right: 0;
    border: 0;
    display: inline;
    padding-right: 0;
  }
}

.cart-overview #cart-table tbody tr td .sub-title {
  letter-spacing: 0.18px;
  color: #83878B;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 3px;
  display: inline-block;
}

.cart-overview #cart-table tbody tr td .name {
  letter-spacing: 0.24px;
  color: #151617;
  font-size: 16px;
  line-height: 31px;
  font-weight: 500;
  margin-bottom: 10px;
}

.cart-overview #cart-table tbody tr td .name a {
  color: #151617;
}

.cart-overview #cart-table tbody tr td .code {
  letter-spacing: 0.18px;
  color: #83878B;
  font-size: 12px;
}

.cart-overview .total {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 992px) {
  .cart-overview .total {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .cart-overview .total {
    margin-top: 30px;
  }
}

.cart-overview .total .total-left {
  padding-right: 50px;
  letter-spacing: 0.32px;
  color: #151617;
  text-transform: uppercase;
  font-size: 21px;
  line-height: 31px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .cart-overview .total .total-left {
    margin-bottom: 15px;
    width: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-right: 0;
    text-align: left;
  }
}

.cart-overview .total .tolal-desc span {
  display: block;
  margin-bottom: 10px;
}

.cart-overview .total .tolal-desc .total-price {
  letter-spacing: 0.32px;
  color: #3A4557;
  font-size: 21px;
  line-height: 31px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .cart-overview .total .tolal-desc .total-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.cart-overview .total .tolal-desc .vat {
  letter-spacing: 0.21px;
  color: #83878B;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .cart-overview .total .tolal-desc .vat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.cart-overview .total .tolal-desc .vat strong {
  font-weight: 500;
  color: #3A4557;
}

@media screen and (max-width: 767px) {
  .cart-overview .total .tolal-desc .btn-secondary {
    width: 100%;
  }
}

.cart-overview .notices-block {
  margin: 0 0 55px 0;
  color: #888380;
}

.cart-overview .notices-block p {
  margin: 0 0 4px 0;
  line-height: 28px;
}

.cart-overview .notices-block p:last-child {
  margin: 0;
}

.cart-overview .notices-block strong {
  color: #161514;
  font-weight: 600;
}

.cart-overview .up-sell .product-layout, .cart-overview .free-products .product-layout {
  -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;
  border: 1px solid #EBE8E5;
  text-align: left;
}

.cart-overview .up-sell .product-layout a, .cart-overview .free-products .product-layout a {
  color: #161514;
}

.cart-overview .up-sell .product-layout .image, .cart-overview .free-products .product-layout .image {
  width: 141px;
  height: auto;
  margin: 0 25px 0 0;
}

.cart-overview .up-sell .product-layout .details, .cart-overview .free-products .product-layout .details {
  padding-right: 30px;
}

.cart-overview .up-sell .product-layout .details .details-holder, .cart-overview .free-products .product-layout .details .details-holder {
  max-width: 280px;
  text-align: left;
}

.cart-overview .up-sell {
  margin: 0 0 60px 0;
}

.cart-overview .free-products .block-heading {
  margin: 0 0 34px 0;
  line-height: 25px;
  letter-spacing: .42px;
  font-size: 21px;
  font-weight: 300;
}

.cart-overview .free-products .product-layout {
  -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: 0 0 15px 0;
  border: 1px solid #EBE8E5;
  text-align: left;
}

.cart-overview .free-products .product-layout:last-child {
  margin: 0;
}

.cart-overview .free-products .product-layout .image {
  width: 141px;
  height: auto;
  margin: 0 25px 0 0;
}

.cart-overview .free-products .product-layout .details {
  display: block;
  padding-right: 30px;
  text-align: left;
}

.cart-overview .free-products .product-layout .details .name {
  max-width: 240px;
}

.cart-overview .free-products .product-layout .details ul {
  font-size: 14px;
}

.cart-overview .discount-code {
  margin: 0 0 35px 0;
}

.cart-overview .discount-code input[type="text"] {
  height: 40px;
  width: 190px;
  margin: 0 25px 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;
}

.cart-overview .discount-notice {
  padding: 15px;
  margin: 0 0 25px 0;
  border: 1px solid #EBE8E5;
  color: #676563;
  font-size: 14px;
}

.cart-overview .discount-notice .text {
  margin: 0 20px 0 0;
}

.cart-overview .discount-notice .text li {
  margin: 0 0 5px 0;
}

.cart-overview .discount-notice .text li:last-child {
  margin: 0;
}

.cart-overview .discount-notice .text strong {
  font-weight: 600;
  color: #161514;
}

.cart-overview .discount-notice .text strong.percents {
  font-size: 16px;
}

.cart-overview .order-summary {
  /* padding: 35px; */
  border: 1px solid #EBE8E5;
}

@media screen and (max-width: 1199px) {
  .cart-overview .order-summary {
    padding: 15px;
  }
}

@media screen and (max-width: 991px) {
  .cart-overview .order-summary {
    padding: 58px 0 0 0;
    margin: 60px 0 0 0;
    border: 0;
    border-top: 1px solid #BCBCBC;
  }
}

.cart-overview .order-summary h3, .cart-overview .order-summary h4 {
  margin: 0 0 16px 0;
  line-height: 25px;
  letter-spacing: .42px;
  font-size: 21px;
  font-weight: 500;
  text-align: center;
}

.cart-overview .order-summary .span-label {
  line-height: 28px;
  font-weight: 500;
}

.cart-overview .order-summary .notice {
  display: block;
  margin: 0 0 20px 0;
  line-height: 24px;
  font-size: 14px;
  font-weight: 400;
  color: #676563;
  text-align: right;
}

.cart-overview .order-summary .delivery .delivery-toggle {
  position: relative;
  padding: 0 25px 0 0;
  border: 0;
  background: none;
  font-weight: 500;
  color: #888380;
}

.cart-overview .order-summary .delivery .delivery-toggle::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 11px;
  height: 10px;
  margin: auto 0;
  border: 0;
  background: url("../img/dropdown-arrow-icon.svg") center center no-repeat;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.cart-overview .order-summary .delivery .delivery-toggle.show::after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.cart-overview .order-summary .delivery > .dropdown {
  position: static;
}

.cart-overview .order-summary .delivery > .dropdown > .dropdown-menu {
  position: static;
  margin: 20px 0 0 0;
  padding: 0;
  border: 0;
  border-radius: 0;
}

.cart-overview .order-summary .delivery > .dropdown > .dropdown-menu .form-group {
  margin: 0 0 25px 0;
}

.cart-overview .order-summary .delivery > .dropdown > .dropdown-menu .btn.btn-secondary {
  padding: 8px 15px;
  min-width: 110px;
}

.cart-overview .order-summary ul.blocks > li {
  padding: 13px 0;
  border-bottom: 1px solid #eae9e7;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cart-overview .order-summary ul.blocks > li strong {
  font-weight: 600;
}

.cart-overview .order-summary .delivery-methods {
  margin: 27px 0 25px 0;
}

.cart-overview .order-summary .delivery-methods input[type="radio"] + label {
  padding: 0 30px 0 0;
}

.cart-overview .order-summary .delivery-methods input[type="radio"] + label::before {
  left: auto;
  right: 0;
}

.cart-overview .order-summary .delivery-methods label {
  margin: 0 0 25px 0;
  font-size: 16px;
  font-weight: 500;
  text-align: right;
}

.cart-overview .order-summary .delivery-methods label:last-child {
  margin: 0;
}

.cart-overview .order-summary .delivery-methods .logo {
  margin: 15px -30px 0 0;
  text-align: right;
}

.cart-overview .order-summary .delivery-methods .logo img {
  margin: 0;
}

.cart-overview .order-summary .total {
  margin: 20px 0 0 0;
}

.cart-overview .order-summary .total table tbody tr td {
  padding: 5px 0 15px 0;
  border: 0;
  font-size: 21px;
  font-weight: 500;
}

.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;
  margin: 8px 0 0 0;
  font-size: 14px;
  color: #676563;
}

.cart-overview .order-summary .total table tbody tr td .vat strong {
  color: #161514;
  font-weight: 400;
}

.cart-overview .order-summary button[type="submit"],
.cart-overview .order-summary input[type="submit"] {
  width: 100%;
  font-weight: 400;
}

.checkout .page-title {
  margin-bottom: 40px;
}

.checkout .sign-in-checkout {
  margin-bottom: 24px;
  display: inline-block;
  background: url(../img/home/icon-user.svg) no-repeat left 5px;
  padding-left: 30px;
  background-size: 16px;
}

@media (max-width: 767px) {
  .checkout .sign-in-checkout {
    background: url(../img/home/icon-user.svg) no-repeat left 5px top 8px;
    padding-left: 38px;
  }
}

.checkout .sign-in-checkout a {
  letter-spacing: 0.24px;
  color: #3A4557;
  font-size: 16px;
  line-height: 31px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .checkout .sign-in-checkout a {
    display: inline;
  }
}

.checkout .shiping-logo .delivery-method .logo img {
  margin-bottom: 0;
}

.checkout .delivery-method input[type="radio"] + label {
  padding: 2px 30px 0 30px;
}

.checkout .delivery-method input[type="radio"] + label::before {
  left: 0;
  right: auto;
}

.checkout .delivery-method label {
  margin: 0 0 0 0;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.24px;
  color: #151617;
  font-weight: 16px;
}

.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: 0 0 0 0;
  text-align: left;
}

.checkout .delivery-method .logo img {
  margin: 0 0 20px;
  height: 30px;
}

.checkout form .row {
  margin: 0 -20px;
}

.checkout form .row [class*="col-"] {
  padding: 0 20px;
}

.checkout form h4 {
  letter-spacing: 0.32px;
  color: #151617;
  text-transform: uppercase;
  font-size: 21px;
  line-height: 31px;
  font-weight: 500;
  margin-bottom: 22px;
  display: inline-block;
}

.checkout form .form-group {
  margin: 0 0 24px 0;
}

.checkout form .form-group label {
  letter-spacing: 0.24px;
  color: #151617;
}

.checkout form .form-group label span {
  color: #83878B;
}

.checkout form .form-group .bootstrap-select {
  border: 0;
}

.checkout form .form-group .dropdown-menu {
  border: 1px solid #3A4557;
  border-top: 0;
}

.checkout form .form-group .dropdown-toggle {
  border: 1px solid #CACED2;
  padding: 0 16px;
  -webkit-transition: none;
  transition: none;
}

.checkout form .form-group .dropdown-toggle:hover {
  border: 2px solid #3A4557;
}

.checkout form .form-group .dropdown-toggle:focus {
  border: 1px solid #3A4557;
}

.checkout form .form-group .dropdown-toggle.show {
  border: 2px solid #3A4557 !important;
}

.checkout form .form-group .form-control {
  height: 38px;
  border: 1px solid #CACED2;
  font-size: 14px;
}

.checkout form .form-group .form-control:hover {
  border: 2px solid #3A4557;
}

.checkout form .form-group .form-control:focus {
  border: 1px solid #3A4557 !important;
}

.checkout form .form-group textarea {
  height: 204px !important;
  resize: none;
}

.checkout form .form-group .filter-option .filter-option-inner-inner {
  font-size: 14px;
  letter-spacing: 0.21px;
  color: #83878B;
  font-weight: 400;
}

.checkout form .checkbox-checout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .checkout form .checkbox-checout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-bottom: 1px solid #caced2;
    padding-bottom: 15px;
  }
}

.checkout form .checkbox-checout .form-check {
  padding-left: 0;
  margin-right: 34px;
}

.checkout form .person-type {
  margin-bottom: 46px;
}

.checkout form .person-type .radio-form {
  margin-right: 30px;
}

@media screen and (max-width: 767px) {
  .checkout form .person-type .radio-form {
    margin-bottom: 10px;
  }
}

.checkout form .person-type .radio-form input[type="radio"]:checked + label {
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .checkout form .person-type {
    margin-bottom: 22px;
  }
}

.checkout form .person-type label {
  margin: 0 0 0 0px;
  padding: 2px 0 0 22px;
}

.checkout form .person-type label::before {
  left: 0;
  right: auto;
}

@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: 500px;
    margin-top: 30px;
  }
  #main-header .navbar-nav > li.dropdown > .dropdown-menu {
    border-top: 1px solid #CACED2;
    opacity: 1!important;
  }
  .dropdown-menu > .container > ul[role="menu"] > li:not(.menu-item-has-children):not(:nth-child(1)){
    margin-top: 20px!important;
  }
}

@media screen and (max-width: 767px) {
  .aws_results > .aws_result_item{
    display:  block!important;
  }
  .aws-search-result .aws_result_price{
    margin-left: 0!important;
  }
  .aws_result_term{
    display:  none!important;
  }
  .aws_results .aws_result_item > .aws_result_image{
    height: auto!important;
  }
  .aws-search-result .aws_result_content{
    display:  block!important;
    width:  100%!important;
  }
  #aws-search-result-1{
    top: 144px!important;
  }
}
@media screen and (min-width: 768px) {

  .aws_results .aws_result_item > .aws_result_term{
    font-size: 12px!important;
  }
  .aws-search-result .aws_result_price{
    width: 10%!important;
    margin-left: auto;
  }
  .aws_result_content{
    width: 55%!important;
  }
  #aws-search-result-2{
    width:  91%!important;
    max-width: 847px!important;
    margin-right: -20px;
    margin-left: -20px;
    padding: 20px!important;
  }
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
  .checkout .cart-summary {
    padding-left: 50px;
  }
}

.checkout .cart-summary .block {
  width: 100%;
}

.checkout .cart-summary .block.has-border {
  padding: 40px 0 21px;
  border: 0;
}

.checkout .cart-summary .block .block-heading {
  margin: 0 0 9px;
  line-height: 25px;
  letter-spacing: .42px;
  font-size: 21px;
  font-weight: 500;
  text-align: left;
}

.checkout .cart-summary table {
  margin: 0;
}

.checkout .cart-summary table thead tr th {
  padding: 0 0 17px 0;
  border: 0;
  border-bottom: 1px solid #eae9e7;
  font-weight: 500;
}

.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: 0 0 0;
  border-bottom: 0;
  line-height: 28px;
}

.checkout .cart-summary table tbody tr td:last-child {
  padding-bottom: 0;
}

.checkout .cart-summary table tbody tr td.ship-title {
  border-top: 1px solid #CACED2;
  padding: 22px 0 14px;
}

.checkout .cart-summary table tbody tr td.ship-title h3 {
  text-align: left;
  letter-spacing: 0.32px;
  color: #151617;
  text-transform: uppercase;
  font-size: 21px;
  line-height: 31px;
  font-weight: 500;
}

.checkout .cart-summary table tbody tr td a {
  color: #161514;
  font-weight: 600;
}

.checkout .cart-summary table tbody tr td .amount {
  /*margin: 8px 0 0 0;
  line-height: 28px;
  font-size: 12px;
  color: #83878B;
  font-weight: 500;*/
}

.checkout .cart-summary table tbody tr td .product-name {
  letter-spacing: 0.18px;
  color: #83878B;
  font-size: 12px;
  line-height: 28px;
}

.checkout .cart-summary table tbody tr td strong {
  font-weight: 600;
}

.checkout .cart-summary table tbody tr td:last-child {
  text-align: right;
  vertical-align: middle;
}

.checkout .cart-summary table tbody tr td:last-child strong {
  letter-spacing: 0.24px;
  color: #151617;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
}

.checkout .cart-summary table tfoot {
  border: 0;
}

.checkout .cart-summary table tfoot tr {
  border-bottom: 1px solid #CACED2;
}

.checkout .cart-summary table tfoot tr td {
  padding: 0 0 0 0;
  border: 0;
  font-weight: 400;
  font-size: 21px;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .checkout .cart-summary table tfoot tr td {
    font-size: 17px;
  }
}

.checkout .cart-summary table tfoot tr td strong {
  font-weight: 500;
}

.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 24px 0;
  font-size: 14px;
  color: #757575;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .checkout .cart-summary table tfoot tr td .vat {
    font-size: 12px;
  }
}

.checkout .cart-summary table tfoot tr td .vat strong {
  color: #3A4557;
  font-weight: 500;
}

.checkout .cart-summary .discount-code {
  margin: 26px 0 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.checkout .cart-summary .discount-code input[type="text"] {
  height: 40px;
  width: 70%;
  margin: 0;
}

@media screen and (min-width: 767px) {
  .checkout .cart-summary .discount-code input[type="text"] {
    width: 70%;
    margin: 0 16px 0 0;
  }
}

@media screen and (max-width: 767px) {
  .checkout .cart-summary .discount-code input[type="text"] {
    margin: 0 15px 0 0;
  }
}

.checkout .cart-summary .discount-code input[type="text"]::-webkit-input-placeholder {
  /* Edge */
  color: #83878B;
}

.checkout .cart-summary .discount-code input[type="text"]:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #83878B;
}

.checkout .cart-summary .discount-code input[type="text"]::-ms-input-placeholder {
  color: #83878B;
}

.checkout .cart-summary .discount-code input[type="text"]::placeholder {
  color: #83878B;
}

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

.checkout .cart-summary .discount-code .btn-secondary {
  padding: 0 5px !important;
  min-width: 176px;
}

@media (max-width: 500px) {
  .checkout .cart-summary .discount-code .btn-secondary {
    min-width: 104px;
  }
}

.checkout .cart-summary .products-sum {
  margin: 0 0 16px 0;
}

.checkout .cart-summary .products-sum strong {
  letter-spacing: 0.24px;
  color: #151617;
  font-weight: 500 !important;
  font-size: 16px;
  line-height: 31px;
}

.checkout .cart-summary .pickup-point {
  padding: 12px 0 0;
}

.checkout .cart-summary .pickup-point .form-group {
  text-align: left;
  border-bottom: 1px solid #ccc;
  padding-bottom: 23px;
  margin-bottom: 22px;
}

.checkout .cart-summary .pickup-point .form-group label {
  letter-spacing: 0.24px;
  color: #151617;
  font-size: 16px;
  line-height: 31px;
}

.checkout .cart-summary .pickup-point .form-group .dropdown-toggle {
  height: 38px;
}

.checkout .cart-summary .payment-method {
  border-bottom: 1px solid #CACED2;
  margin-bottom: 22px;
  padding-bottom: 11px;
}

.checkout .cart-summary .payment-method h3 {
  letter-spacing: 0.32px;
  color: #151617;
  text-transform: uppercase;
  font-size: 21px;
  line-height: 31px;
  font-weight: 500;
  margin-bottom: 19px;
}

.checkout .cart-summary .payment-method input[type="radio"]:checked + label {
  font-weight: 500;
}

.checkout .cart-summary .payment-method .accordion {
  margin: 0;
}

.checkout .cart-summary .payment-method .accordion input[type="radio"] + label {
  margin-bottom: 23px;
}

.checkout .cart-summary .payment-method .accordion .bank-popup-desc input[type="radio"] + label {
  margin-bottom: 11px;
}

.checkout .cart-summary .payment-method .bank-popup-desc {
  border: 1px solid #CACED2;
  padding: 27px 21px 0;
  margin: 30px 0;
  position: relative;
}

.checkout .cart-summary .payment-method .bank-popup-desc:before {
  content: '';
  display: block;
  position: absolute;
  top: -7px;
  width: 13px;
  height: 13px;
  left: 41px;
  right: auto;
  background: #FFFFFF;
  border-right: 1px solid #CACED2;
  border-bottom: 1px solid #CACED2;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-134deg);
}

.checkout .cart-summary .payment-method .bank-popup-desc .custom-control-label {
  padding-bottom: 19px;
  letter-spacing: 0.24px;
  color: #151617;
  font-size: 16px;
  line-height: 31px;
}

.checkout .cart-summary .payment-method .bank-popup-desc .custom-control-label img {
  width: 72px;
  margin-right: 20px;
}

.checkout .cart-summary .payment-method .bank-popup-desc .custom-control-label:before {
  top: 8px;
}

.checkout .cart-summary .payment-method .bank-popup-desc .custom-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.checkout .cart-summary .payment-method .bank-popup-desc .custom-radio:nth-child(2) label:before, .checkout .cart-summary .payment-method .bank-popup-desc .custom-radio:nth-child(3) label:before {
  top: 14px;
}

.checkout .cart-summary .payment-method .bank-popup-desc input[type="radio"]:checked + label {
  font-weight: 500;
}

.checkout .payment-methods {
  margin: 0;
}

.checkout .payment-methods .list {
  position: relative;
  margin: 29px 0 25px 0;
  padding-top: 0;
  padding-bottom: 0;
}

.checkout .payment-methods .list label {
  margin: 0 0 17px 0;
}

.checkout .policy-text {
  padding: 20px 0;
  margin: 0 0 24px 0;
  border-top: 1px solid #EBE8E5;
  border-bottom: 1px solid #EBE8E5;
  line-height: 26px;
}

.checkout .policy-text a {
  color: #888380;
  font-weight: 500;
}

.checkout .policy-text p:last-child {
  margin: 0;
}

.checkout button[type="submit"],
.checkout input[type="submit"] {
  width: 100%;
  margin: 15px 0 0 0;
  padding: 20px 25px;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .checkout button[type="submit"],
  .checkout input[type="submit"] {
    margin: 10px 0 0 0;
  }
}

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

.cart-notice .icon {
  margin: 0 0 32px 0;
  pointer-events: none;
}

@media screen and (max-width: 991px) {
  .cart-notice .icon img {
    max-height: 150px;
  }
}

.cart-notice h1 {
  margin: 0 0 19px 0;
  line-height: 52px;
  font-size: 34px;
  font-weight: 300;
  letter-spacing: .68px;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .cart-notice h1 {
    line-height: 34px;
    margin: 0 0 15px 0;
    font-size: 24px;
  }
}

.cart-notice p {
  margin: 0 0 34px 0;
}

@media screen and (max-width: 767px) {
  .cart-notice p {
    margin: 0 0 49px 0;
  }
}

.cart-notice .btn {
  min-width: 145px;
}

@media screen and (max-width: 575px) {
  .cart-notice .btn {
    width: 100%;
  }
}

.about-us .block {
  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 50px 0;
}

@media screen and (max-width: 767px) {
  .about-us .block {
    margin: 0 0 30px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.about-us .block:nth-child(1) .text {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.about-us .block:nth-child(1) .image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media screen and (max-width: 767px) {
  .about-us .block:nth-child(1) .image {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-bottom: 20px;
  }
}

.about-us .block:last-child {
  margin: 0;
}

@media screen and (max-width: 991px) {
  .about-us .block:last-child .text {
    padding-left: 30px;
  }
}

@media screen and (max-width: 767px) {
  .about-us .block:last-child .text {
    padding-left: 0;
    margin-top: 20px;
  }
}

.about-us .block .image {
  pointer-events: none;
  width: 100%;
}

@media (min-width: 767px) {
  .about-us .block .image {
    max-width: 500px;
  }
}

.about-us .block .text {
  width: 100%;
}

@media (min-width: 767px) {
  .about-us .block .text {
    max-width: 608px;
  }
}

.about-us .block .text p {
  line-height: 31px;
  letter-spacing: 0.24px;
  color: #151617;
  font-size: 16px;
  line-height: 31px;
  margin-bottom: 34px;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .about-us .block .text p {
    padding-left: 0;
    margin-bottom: 15px;
  }
}

.about-us .block .text p:last-child {
  margin: 0;
}

@media screen and (min-width: 992px) {
  .deal-section {
    margin-top: 140px;
  }
}

@media screen and (min-width: 992px) {
  .deal-section .columns-3 .deal-box {
    max-width: 33.33%;
  }
}

@media screen and (max-width: 991px) {
  .deal-section .columns-3 .deal-box {
    max-width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .deal-section .columns-3 .deal-box {
    max-width: 100%;
  }
}

@media screen and (max-width: 991px) {
  .deal-section .columns-3 .deal-desc {
    max-width: 70%;
  }
}

.deal-section h2 {
  font-size: 28px;
  line-height: 34px;
  font-weight: 600;
  letter-spacing: 0.63px;
  color: #151617;
  margin-bottom: 50px;
}

@media screen and (min-width: 992px) {
  .deal-section h2 {
    font-size: 42px;
    line-height: 66px;
  }
}

@media screen and (max-width: 992px) {
  .deal-section h2 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .deal-section h2 {
    margin-top: 50px;
    margin-bottom: 20px;
  }
}

.deal-section .deal-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 18px;
}

@media screen and (max-width: 767px) {
  .deal-section .deal-main .check-icon {
    margin-top: 10px;
  }
}

.deal-section .deal-main .check-icon img {
  width: 68px;
  height: 68px;
  margin-right: 40px;
}

@media screen and (max-width: 767px) {
  .deal-section .deal-main .check-icon img {
    width: 56px;
    height: 56px;
    margin-right: 24px;
  }
}

@media screen and (min-width: 992px) {
  .deal-section .deal-main .deal-desc {
    width: calc(75% - 20px);
  }
}

@media screen and (min-width: 500px) {
  .deal-section .deal-main .deal-desc {
    max-width: calc(100% - 80px);
  }
}

.deal-section .deal-main .deal-desc p strong {
  font-weight: 500;
  color: #151617;
}

.contact-us form .form-group {
  margin: 0 0 25px 0;
}

.contact-us form .form-group label {
  text-align: left;
  letter-spacing: 0.24px;
  color: #151617;
}

.contact-us form button[type="submit"],
.contact-us form input[type="submit"] {
  min-width: 105px;
}

.contact-us .conatct-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .contact-us .conatct-main {
    margin: 0 0 30px;
  }
}

.contact-us .conatct-main .contact-list {
  width: 100%;
  margin-bottom: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-us .conatct-main .contact-list:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 992px) {
  .contact-us .conatct-main .contact-list {
    width: 52.5%;
  }
}

@media screen and (max-width: 767px) {
  .contact-us .conatct-main .contact-list {
    width: 100%;
    margin: 0 0 30px;
  }
}

.contact-us .conatct-main .contact-list .contact-left {
  width: 68px;
  height: 68px;
  border-radius: 50%;
}

.contact-us .conatct-main .contact-list .contact-left.contact-icon1 {
  background: #3A4557 url(../img/contact/icon-admin.svg) no-repeat center;
}

.contact-us .conatct-main .contact-list .contact-left.contact-icon2 {
  background: #3A4557 url(../img/contact/icon-sales.svg) no-repeat center;
}

.contact-us .conatct-main .contact-list .contact-left.contact-icon3 {
  background: #3A4557 url(../img/contact/icon-delivery.svg) no-repeat center;
}

.contact-us .conatct-main .contact-list .contact-left.contact-icon4 {
  background: #3A4557 url(../img/contact/icon-fax.svg) no-repeat center;
}

.contact-us .conatct-main .contact-list .contact-left.contact-icon5 {
  background: #3A4557 url(../img/contact/icon-email.svg) no-repeat center;
}

.contact-us .conatct-main .contact-list .contact-right {
  padding-left: 24px;
}

@media screen and (min-width: 992px) {
  .contact-us .conatct-main .contact-list .contact-right {
    width: 70%;
  }
}

.contact-us .conatct-main .contact-list .contact-right span {
  display: block;
  letter-spacing: 0.27px;
  color: #151617;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 0;
}

.contact-us .conatct-main .contact-list .contact-right a {
  letter-spacing: 0.24px;
  color: #151617;
  font-size: 16px;
  line-height: 31px;
}

@media (min-width: 992px) {
  .contact-us .conatct-main .contact-list.right-list {
    width: 38% !important;
  }
}

.contact-us .block-heading {
  margin: 0 0 50px 0;
  line-height: 52px;
  font-size: 34px;
  font-weight: 300;
  letter-spacing: .68px;
}

.contact-us .block {
  padding: 0 0 0 0;
  margin: 0 0 30px 0;
}

@media screen and (min-width: 992px) {
  .contact-us .block {
    margin: 0;
  }
}

.contact-us .block .contact-right-image {
  max-width: 500px;
}

@media screen and (max-width: 767px) {
  .contact-us .block .contact-right-image {
    max-width: 100%;
  }
}

.contact-us .block .contact-right-image img {
  max-width: 100%;
  display: block;
}

@media (max-width: 767px) {
  .contact-us .block .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 30px;
  }
}

.contact-us .conatct-form {
  margin-top: 40px;
  text-align: center;
}

@media (min-width: 992px) {
  .contact-us .conatct-form {
    max-width: 608px;
    margin: 133px auto 0;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .contact-us .conatct-form .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}

.contact-us .conatct-form h2 {
  letter-spacing: 0.63px;
  color: #151617;
  font-size: 30px;
  list-style: 36px;
  font-weight: 600;
  margin-bottom: 10px;
}

@media (min-width: 992px) {
  .contact-us .conatct-form h2 {
    font-size: 42px;
    list-style: 66px;
    margin-bottom: 20px;
  }
}

.contact-us .conatct-form P {
  letter-spacing: 0.24px;
  color: #151617;
  margin-bottom: 50px;
}

.contact-us .conatct-form .btn-secondary {
  width: 100%;
  margin-top: 9px;
}

.contact-us .conatct-form .form-control {
  border: 1px solid #CACED2;
  resize: none;
}

.contact-us .conatct-form .form-control:hover {
  border: 2px solid #3A4557;
}

.contact-us .conatct-form .form-control:focus {
  border: 1px solid #3A4557;
  outline-color: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.contact-us .conatct-form textarea {
  min-height: 152px !important;
}

.login-page {
  position: relative;
}

.login-page:before {
  left: -250px;
  top: 100px;
  background: url(../img/home/sign-bg.svg) no-repeat right top;
  width: 100%;
  height: 500px;
  content: "";
  position: absolute;
  z-index: -1;
}

@media (min-width: 1400px) {
  .login-page:before {
    left: -1000px;
    height: 700px;
  }
}

@media (min-width: 992px) {
  .login-page:before {
    left: -500px;
    height: 700px;
  }
}

@media (max-width: 767px) {
  .login-page:before {
    display: none;
  }
}

.authentication {
  padding: 0;
  max-width: 392px;
  margin: 40px auto 0;
  text-align: center;
}

.authentication p {
  margin-top: 24px;
  letter-spacing: 0.21px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #151617;
  margin-bottom: 0;
}

.authentication p a {
  color: #3A4557;
  font-weight: 500;
}

.authentication p a:hover {
  text-decoration: underline;
}

.authentication .page-title {
  margin: 0 0 25px 0;
  line-height: 25px;
  font-size: 34px;
  font-weight: 600;
  line-height: 46px;
  letter-spacing: 0.69px;
  color: #151617;
}

@media (min-width: 992px) {
  .authentication .page-title {
    font-size: 46px;
    line-height: 66px;
  }
}

.authentication .sep-text {
  position: relative;
  margin: 0 0 15px 0;
  font-size: 14px;
  font-weight: 400;
  color: #676563;
}

.authentication .sep-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  margin: auto 0;
  background-color: #eaeaea;
}

.authentication .sep-text span {
  position: relative;
  padding: 0 15px;
  background: #fff;
}

.authentication label {
  text-align: left;
  line-height: 31px;
}

.authentication .form-group {
  margin-bottom: 14px;
}

.authentication .form-group P {
  margin-top: 0;
  margin-bottom: 24px;
}

.authentication .forgotten-password {
  margin: 0px 0 15px 0;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.authentication .forgotten-password .form-check {
  padding-left: 0;
}

.authentication .forgotten-password .form-check label {
  line-height: normal;
}

.authentication .forgotten-password a {
  font-size: 14px;
  letter-spacing: 0.21px;
  color: #83878B;
}

@media screen and (min-width: 992px) {
  .authentication .forgotten-password a:hover {
    color: #161514;
  }
}

.authentication button[type="submit"],
.authentication input[type="submit"] {
  margin: 0 0 14px 0;
}

@media screen and (min-width: 768px) {
  .user-profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.user-profile .welcome > h2 {
  margin: 0 0 23px 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 5px 0 5px;
}

.user-profile .welcome strong {
  font-weight: 500;
  color: #3A4557;
}

.user-profile .welcome p {
  margin: 0 0 20px 0;
  line-height: 31px;
  color: #57595B;
}

@media (min-width: 992px) {
  .user-profile .welcome p {
    margin: 0 67px 20px 0;
  }
}

.user-profile .welcome p a {
  padding-left: 5px;
}

@media screen and (max-width: 767px) {
  .user-profile .welcome .logout {
    display: block;
    margin: 7px 0 0 0;
  }
}

.user-profile .welcome .logout a {
  color: #888380;
}

@media screen and (min-width: 992px) {
  .user-profile .welcome .logout a:hover {
    color: #161514;
  }
}

@media (max-width: 767px) {
  .user-profile .welcome.desktop {
    display: none;
  }
}

.user-profile .aside {
  width: 180px;
  min-width: 180px;
  margin: 0 144px 0 0;
}

@media screen and (max-width: 1199px) {
  .user-profile .aside {
    margin: 0 50px 0 0;
  }
}

@media screen and (max-width: 1199px) and (max-width: 991px) {
  .user-profile .aside {
    margin: 0 80px 0 0;
  }
}

@media screen and (max-width: 1199px) and (max-width: 767px) {
  .user-profile .aside {
    width: 100%;
    margin: 0 0 35px 0;
  }
}

@media screen {
  .user-profile .aside ul li {
    padding: 15px 0;
    margin: 0;
    border-bottom: 1px solid #CACED2;
  }
  .user-profile .aside ul li a {
    display: block;
    padding: 0;
    background-color: transparent;
    color: #83878B;
    font-size: 16px;
    text-decoration: none;
  }
  .user-profile .aside ul li a:hover {
    color: #151617;
  }
  .user-profile .aside ul li.current a {
    color: #151617;
    font-weight: 600;
    pointer-events: none;
  }
}

.user-profile .content-output {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0;
  margin-top: 11px;
}

.user-profile .content-output .content-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 30px -20px 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@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 {
    margin: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.user-profile .content-output .content-nav li {
  width: 284px;
  border: 0;
  text-align: center;
  margin-bottom: 25px;
  margin: 0 19px 34px;
}

@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: 50%;
    margin: 0 0 25px 0;
  }
}

.user-profile .content-output .content-nav li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 20px 24px 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.24px;
  color: #151617;
  height: 151px;
  border: 1px solid transparent;
}

@media screen and (max-width: 991px) {
  .user-profile .content-output .content-nav li a {
    padding: 15px;
  }
}

.user-profile .content-output .content-nav li a:hover {
  border: 1px solid #CACED2;
  text-decoration: underline;
}

.user-profile .content-output .content-nav li a:hover .icon {
  -webkit-transform: translateY(-5%);
          transform: translateY(-5%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.user-profile .content-output .content-nav li a:hover .icon svg {
  fill: #3A4557;
}

.user-profile .content-output .content-nav li a:hover span {
  color: #3A4557;
}

.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: auto;
  margin: 0 0 24px 0;
  position: relative;
  -webkit-transform: translateY(5%);
          transform: translateY(5%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.user-profile .content-output .content-nav li .icon svg {
  fill: #151617;
}

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

.user-profile .content-output .content-nav li .icon img {
  width: 60px;
  height: 60px;
}

@media screen and (max-width: 1199px) {
  .user-profile .content-output .products-list ul.list > li {
    width: calc(33.333% - 40px);
  }
}

@media screen and (max-width: 991px) {
  .user-profile .content-output .products-list ul.list > li {
    width: calc(50% - 40px);
  }
}

.user-profile .content-output .products-list ul.list .wishlist-icon {
  background: #000 url(../img/category/wish-active.svg) center center no-repeat;
  z-index: 1;
  opacity: 1;
  visibility: visible;
  width: 40px;
  height: 40px;
  right: 18px;
  top: 26px;
}

@media (max-width: 767px) {
  .user-profile .content-output .products-list ul.list .wishlist-icon {
    top: 5px;
  }
}

@media (max-width: 767px) {
  .user-profile .content-output .table-order-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overflow-y: hidden;
  }
}

.user-profile .content-output .order-history {
  width: 100%;
}

@media (max-width: 767px) {
  .user-profile .content-output .order-history {
    width: 700px;
  }
}

.user-profile .content-output .order-history tr {
  border-bottom: 1px solid #ccc;
}

.user-profile .content-output .order-history tr th {
  padding-bottom: 15px;
  letter-spacing: 0.24px;
  color: #151617;
  font-weight: 500;
  font-size: 16px;
}

.user-profile .content-output .order-history td {
  width: 16%;
  padding: 15px 0;
  color: #000000;
  letter-spacing: 0.21px;
  font-size: 14px;
  line-height: 24px;
}

.user-profile .content-output .order-history td:last-child {
  text-align: right;
  width: 0%;
}

.user-profile .content-output .order-history td.date {
  color: #57595B;
  letter-spacing: 0.21px;
}

.user-profile .content-output .order-history td.price {
  font-weight: 500;
}

.user-profile .content-output .order-history td.price span {
  color: #57595B;
  font-weight: 400;
}

.user-profile .content-output .order-history td.complete {
  color: #499C4E;
  font-weight: 500;
}

.user-profile .content-output .order-history td.progress {
  font-weight: 500;
}

.user-profile .content-output .order-history .btn-secondary {
  height: 35px;
  line-height: 34px;
  padding: 0 10px;
  font-size: 14px;
  width: 68px;
}

.user-profile .content-output .order-table {
  width: 100%;
}

.user-profile .content-output .order-table tr {
  border-bottom: 1px solid #CACED2;
}

.user-profile .content-output .order-table tr.order-list {
  padding-bottom: 6px;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.user-profile .content-output .order-table th:last-child {
  text-align: right;
  padding: 15px 0;
}

.user-profile .content-output .order-table td {
  padding: 10px 0;
  letter-spacing: 0.21px;
  color: #83878B;
  font-size: 14px;
  font-weight: 400;
  vertical-align: top;
}

.user-profile .content-output .order-table td:last-child {
  text-align: right;
  vertical-align: middle;
}

.user-profile .content-output .order-table td span {
  display: block;
}

.user-profile .content-output .order-table td.title {
  letter-spacing: 0.21px;
  color: #000000;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  padding: 19px 0;
}

.user-profile .content-output .order-table td.sub-total {
  letter-spacing: 0.21px;
  color: #3A4557;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
}

.user-profile .content-output .order-table td.ship-price {
  letter-spacing: 0.21px;
  color: #3A4557;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
}

.user-profile .content-output .order-table td.ship-price span {
  display: inline-block;
  color: #83878B;
  font-weight: 400;
}

.user-profile .content-output .order-table td.bank {
  letter-spacing: 0.21px;
  color: #151617;
  font-size: 14px;
  line-height: 24px;
}

.user-profile .content-output .order-table td.grand-total {
  letter-spacing: 0.32px;
  color: #151617;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  vertical-align: top;
  padding: 20px 0 48px;
}

@media screen and (min-width: 767px) {
  .user-profile .content-output .order-table td.grand-total {
    font-size: 21px;
    line-height: 31px;
  }
}

.user-profile .content-output .order-table td .grand-price {
  letter-spacing: 0.32px;
  color: #151617;
  text-transform: uppercase;
  font-size: 21px;
  line-height: 31px;
  font-weight: 500;
}

.user-profile .content-output .order-table td .vat {
  letter-spacing: 0.21px;
  color: #83878B;
  font-weight: 14px;
  line-height: 24px;
  font-weight: 400;
}

.user-profile .content-output .order-table td .vat strong {
  font-weight: 500;
  color: #3A4557;
}

.user-profile .content-output .order-table table {
  width: 100%;
}

.user-profile .content-output .order-table table tr {
  border-bottom: 0;
}

.user-profile .content-output .order-table table td {
  text-align: left;
  padding: 5px 0;
}

.user-profile .content-output .order-table table td:last-child {
  text-align: right;
}

.user-profile .content-output .order-table table td .sub-title {
  letter-spacing: 0.18px;
  color: #83878B;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 28px;
  font-weight: 500;
}

.user-profile .content-output .order-table table td .title {
  letter-spacing: 0.21px;
  color: #000000;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
}

.user-profile .content-output .order-table table td .title b {
  font-weight: 400;
  color: #83878B;
}

.user-profile .content-output .order-table table td span {
  display: block;
}

.user-profile .content-output .delivery-address {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
}

@media screen and (max-width: 991px) {
  .user-profile .content-output .delivery-address {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0;
  }
}

.user-profile .content-output .delivery-address .address-box {
  width: 50%;
}

@media screen and (max-width: 991px) {
  .user-profile .content-output .delivery-address .address-box {
    width: 100%;
    margin-bottom: 30px;
  }
}

.user-profile .content-output .delivery-address .address-box:last-child {
  margin-right: 0;
}

.user-profile .content-output .delivery-address .address-box h3 {
  letter-spacing: 0.32px;
  color: #151617;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 15px;
}

@media screen and (min-width: 991px) {
  .user-profile .content-output .delivery-address .address-box h3 {
    font-size: 21px;
    line-height: 31px;
  }
}

.user-profile .content-output .delivery-address .address-box ul li {
  letter-spacing: 0.24px;
  color: #83878B;
  font-size: 16px;
  line-height: 31px;
  font-weight: 400;
}

.user-profile .content-output .address-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 991px) {
  .user-profile .content-output .address-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.user-profile .content-output .address-section .address-box {
  margin-right: 40px;
  width: 392px;
}

@media screen and (max-width: 991px) {
  .user-profile .content-output .address-section .address-box {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .user-profile .content-output .address-section .address-box {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .user-profile .content-output .address-section .address-box table {
    width: 100%;
  }
}

.user-profile .content-output .address-section .address-box:last-child {
  margin-right: 0;
}

.user-profile .content-output .address-section .address-box .address-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.user-profile .content-output .address-section .address-box .address-top a {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.21px;
  color: #3A4557;
}

.user-profile .content-output .address-section .address-box .address-top a:hover {
  color: #151617;
  text-decoration: underline;
}

.user-profile .content-output .address-section .address-box .address-top h3 {
  letter-spacing: 0.32px;
  color: #151617;
  text-transform: uppercase;
  font-size: 21px;
  line-height: 31px;
  font-weight: 500;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .user-profile .content-output .address-section .address-box table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.user-profile .content-output .address-section .address-box table td.title {
  letter-spacing: 0.24px;
  color: #83878B;
  font-size: 16px;
  line-height: 31px;
  min-width: 215px;
  font-weight: 400;
}

@media screen and (max-width: 991px) {
  .user-profile .content-output .address-section .address-box table td.title {
    min-width: 170px;
  }
}

@media screen and (max-width: 767px) {
  .user-profile .content-output .address-section .address-box table td.title {
    min-width: 50%;
    width: 50%;
  }
}

.user-profile .content-output .address-section .address-box table td.desc {
  letter-spacing: 0.24px;
  color: #151617;
  font-weight: 400;
  font-size: 16px;
  line-height: 31px;
}

@media (max-width: 767px) {
  .user-profile .content-output .address-section .address-box table td.desc {
    width: 50%;
    text-align: right;
  }
}

.user-profile .content-output .edit-profile h3 {
  letter-spacing: 0.32px;
  color: #151617;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 21px;
  line-height: 31px;
  margin-bottom: 21px;
}

@media screen and (max-width: 767px) {
  .user-profile .content-output .edit-profile h3 {
    font-size: 18px;
    line-height: 28px;
  }
}

.user-profile .content-output .edit-profile form {
  margin-bottom: 30px;
}

@media (min-width: 767px) {
  .user-profile .content-output .edit-profile form {
    max-width: 824px;
  }
}

.user-profile .content-output .edit-profile form.change-password {
  margin-bottom: 0;
}

.user-profile .content-output .edit-profile form .edit-btn {
  margin-top: 50px;
}

@media (max-width: 767px) {
  .user-profile .content-output .edit-profile form .edit-btn {
    text-align: center;
  }
}

.user-profile .content-output .edit-profile form .edit-btn .btn-secondary {
  margin-bottom: 10px;
}

@media screen and (min-width: 767px) {
  .user-profile .content-output .edit-profile form .edit-btn {
    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;
    margin-bottom: 0;
  }
}

.user-profile .content-output .edit-profile form .edit-btn .delete_account {
  letter-spacing: 0.21px;
  color: #3A4557;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.user-profile .content-output .edit-profile form .edit-btn .delete_account:hover {
  color: #CE4939;
}

.user-profile .content-output .edit-profile form .form-group {
  margin: 0 0 15px 0;
}

@media (min-width: 992px) {
  .user-profile .content-output .edit-profile form .form-group {
    margin: 0 0 24px 0;
  }
}

.user-profile .payment-deatil {
  max-width: 390px;
}

@media (max-width: 767px) {
  .user-profile .payment-deatil {
    max-width: 100%;
  }
}

.user-profile .payment-deatil .payment-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 17px;
}

@media (max-width: 767px) {
  .user-profile .payment-deatil .payment-top {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.user-profile .payment-deatil .payment-top .edit {
  letter-spacing: 0.21px;
  color: #3A4557;
  font-size: 14px;
  line-height: 21px;
}

.user-profile .payment-deatil .payment-top h3 {
  letter-spacing: 0.21px;
  color: #3A4557;
  font-size: 21px;
  line-height: 31px;
  font-weight: 500;
  text-transform: uppercase;
}

.user-profile .payment-deatil .title {
  letter-spacing: 0.24px;
  color: #83878B;
  font-size: 16px;
  line-height: 31px;
  font-weight: 400;
  min-width: 215px;
}

@media screen and (max-width: 500px) {
  .user-profile .payment-deatil .title {
    min-width: 50%;
    width: 50%;
  }
}

.user-profile .payment-deatil .desc {
  letter-spacing: 0.24px;
  color: #151617;
  font-weight: 400;
  font-size: 16px;
  line-height: 31px;
}

@media screen and (max-width: 500px) {
  .user-profile .payment-deatil .desc {
    width: 50%;
    text-align: right;
  }
}

@media (max-width: 767px) {
  .user-profile .payment-deatil table {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .user-profile .payment-deatil table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.user-profile .order-deatils-page p {
  margin-bottom: 25px;
}

.user-profile .order-deatils-page p strong {
  font-weight: 600;
}

.user-profile .order-deatils-page p span {
  color: #499C4E;
}

.user-profile .order-deatils-page h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  letter-spacing: 0.51px;
  color: #000000;
  margin-bottom: 15px;
}

@media screen and (min-width: 992px) {
  .user-profile .order-deatils-page h3 {
    font-size: 34px;
    line-height: 46px;
  }
}

.user-profile .order-deatils-page .total {
  text-align: right;
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
  .blog-posts {
    max-width: 915px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) and (min-width: 670px) {
  .blog-posts {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1300px) {
  .blog-posts .row {
    margin: 0 -20px;
  }
}

@media screen and (max-width: 1299px) {
  .blog-posts .row {
    margin: 0 -15px;
  }
}

@media screen and (max-width: 575px) {
  .blog-posts .row {
    margin: 0 -10px;
  }
}

@media screen and (min-width: 1300px) {
  .blog-posts .row [class*="col-"] {
    padding: 0 20px;
    margin: 0 0 40px 0;
  }
}

@media screen and (max-width: 1299px) {
  .blog-posts .row [class*="col-"] {
    padding: 0 15px;
    margin: 0 0 30px 0;
  }
}

@media screen and (max-width: 575px) {
  .blog-posts .row [class*="col-"] {
    padding: 0 10px;
    margin: 0 0 20px 0;
  }
}

@media screen and (max-width: 430px) {
  .blog-posts .row [class*="col-"] {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    margin-bottom: 25px;
  }
}

.blog-posts .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%;
  border: 0;
}

.blog-posts .post .featured-image {
  position: relative;
  margin: -1px -1px 0 -1px;
}

.blog-posts .post .featured-image .posted-on {
  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: 35px;
  left: 0;
  width: 105px;
  height: 33px;
  background: #161514;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

@media screen and (max-width: 767px) and (min-width: 430px) {
  .blog-posts .post .featured-image .posted-on {
    top: 15px;
  }
}

.blog-posts .post .featured-image img {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  height: 230px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 767px) {
  .blog-posts .post .featured-image img {
    height: 180px;
  }
}

.blog-posts .post .featured-image a {
  display: block;
  height: 100%;
}

@media screen and (max-width: 430px) and (min-width: 390px) {
  .blog-posts .post .featured-image a {
    padding: 0;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .blog-posts .post .featured-image a img {
    width: 100%;
  }
}

@media screen and (min-width: 992px) {
  .blog-posts .post .featured-image:hover img {
    opacity: .85;
  }
}

.blog-posts .post .details {
  padding: 9px 0;
}

@media screen and (max-width: 575px) and (min-width: 431px) {
  .blog-posts .post .details {
    padding: 15px;
  }
}

.blog-posts .post .details p {
  color: #83878B;
}

.blog-posts .post .details .news-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 3px;
}

.blog-posts .post .details .news-top .category,
.blog-posts .post .details .news-top .date {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18px;
  color: #83878B;
  text-transform: uppercase;
  line-height: 28px;
}

.blog-posts .post .details .entry-title {
  margin: 0 0 10px 0;
  line-height: 32px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.27px;
  color: #000000;
}

.blog-posts .post .details .entry-title a {
  color: #161514;
}

@media (max-width: 767px) {
  .blog-posts .pagination {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
}

@media (max-width: 500px) {
  .blog-posts .pagination {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
}

@media (max-width: 500px) {
  .blog-posts .pagination .page-item {
    padding: 0;
  }
}

.blog-posts .pagination .page-item a:hover {
  background: #3A4557;
}

.blog-posts .pagination .page-item.active a {
  background: #3A4557;
}

.single-post-view {
  margin-bottom: 30px;
}

@media screen and (min-width: 991px) {
  .single-post-view {
    margin-bottom: 0;
  }
}

.single-post-view .view-more {
  margin-left: 45px;
  position: absolute;
}

@media screen and (max-width: 992px) {
  .single-post-view .view-more {
    position: relative;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 992px) {
  .single-post-view .view-more {
    display: none;
  }
}

.single-post-view .view-more::after {
  left: -42px;
  right: auto;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media screen and (min-width: 992px) {
  .single-post-view .post {
    max-width: 825px;
    margin: 0 auto;
  }
}

.single-post-view .post header {
  margin: 0 0 30px 0;
}

.single-post-view .post header .entry-title {
  padding: 0;
  margin: 50px 0 24px 0;
  line-height: 66px;
  font-size: 46px;
  font-weight: 600;
  text-align: center;
}

@media screen and (max-width: 1199px) {
  .single-post-view .post header .entry-title {
    padding: 0 20px;
    line-height: 52px;
    font-size: 42px;
  }
}

@media screen and (max-width: 767px) {
  .single-post-view .post header .entry-title {
    margin: 0 0 20px 0;
    line-height: 30px;
    letter-spacing: .62px;
    font-size: 28px;
  }
}

@media screen and (max-width: 575px) {
  .single-post-view .post header .entry-title {
    padding: 0;
    font-size: 21px;
  }
}

.single-post-view .post header .posted-on {
  position: relative;
  margin: 0 0 30px 0;
}

@media screen and (max-width: 767px) {
  .single-post-view .post header .posted-on {
    margin: 0 0 23px 0;
  }
}

.single-post-view .post header .posted-on::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: #EBE8E5;
  margin: auto;
}

.single-post-view .post header .posted-on .category-date {
  position: relative;
  display: inline-block;
  min-width: 240px;
  background-color: #fff;
  z-index: 1;
  letter-spacing: 0.18px;
  color: #83878B;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  line-height: 28px;
}

.single-post-view .post header .posted-on .category-date span {
  padding-left: 10px;
}

@media screen and (max-width: 767px) {
  .single-post-view .post header .posted-on .category-date {
    min-width: 256px;
    font-size: 14px;
  }
}

.single-post-view .post header .post-thumb img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 767px) {
  .single-post-view .post header .post-thumb img {
    height: 220px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.single-post-view .post .entry-content p {
  margin: 0 0 27px 0;
  line-height: 31px;
  font-size: 16px;
}

.single-post-view .post .entry-content h2 {
  margin: 0 0 24px 0;
  line-height: 25px;
  letter-spacing: .42px;
  font-size: 21px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .single-post-view .post .entry-content h2 {
    margin: 0 0 28px 0;
  }
}

.single-post-view .post .entry-content ul {
  padding: 0;
  margin: 0 0 25px 0;
}

.single-post-view .post .entry-content ul li {
  position: relative;
  padding: 0 0 0 22px;
  margin: 0 0 5px 0;
  line-height: 31px;
  font-size: 16px;
  letter-spacing: 0.24px;
  color: #151617;
}

.single-post-view .post .entry-content ul li::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #161514;
  border-radius: 50%;
}

.single-post-view .post .entry-content ol {
  margin: 0 0 25px 0;
}

.single-post-view .post .entry-content ol li {
  list-style: none;
  margin-bottom: 10px;
  line-height: 31px;
  font-size: 16px;
  letter-spacing: 0.24px;
  color: #151617;
}

.single-post-view .post .entry-content .single-table th, .single-post-view .post .entry-content .single-table td {
  border: 1px solid #CACED2;
  border-collapse: collapse;
  padding: 15px;
}

.single-post-view .post .entry-content .single-table th {
  background: #F5F6F8;
  letter-spacing: 0.24px;
  color: #151617;
  font-size: 16px;
  line-height: 31px;
  font-weight: 500;
}

.single-post-view .post .entry-content .single-table td {
  letter-spacing: 0.24px;
  color: #151617;
  font-size: 16px;
  line-height: 31px;
  font-weight: 400;
}

.single-post-view .post .entry-content .single-table tr:nth-child(odd) {
  background: #F5F6F8;
}

.single-post-view .post .entry-content .single-table tr:nth-child(even) {
  background: #fff;
}

.single-post-view .post .entry-content .website-link {
  margin-top: 30px;
}

.single-post-view .post .entry-content .website-link .link {
  letter-spacing: 0.24px;
  color: #3A4557;
  font-size: 16px;
  line-height: 31px;
  font-weight: 500;
}

.single-post-view .post .entry-content .website-link .link a {
  color: #3A4557;
  padding-left: 5px;
}

.single-post-view .post .entry-content .website-link .link a:hover {
  text-decoration: underline;
}

.shipping-details .block.payment {
  padding: 0 0 50px 0;
  margin: 0 0 70px 0;
  border-bottom: 1px solid #eae9e7;
}

.shipping-details .block-heading {
  margin: 0 0 55px 0;
  line-height: 52px;
  font-size: 34px;
  font-weight: 300;
  letter-spacing: .68px;
}

.shipping-details .payment-details > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 33.333%;
  padding: 0 10px 0 40px;
}

.shipping-details .payment-details > li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 72px;
  background-color: #e9e5e2;
}

.shipping-details .payment-details > li:first-child {
  padding-left: 0;
}

.shipping-details .payment-details > li:first-child::before {
  content: normal;
}

.shipping-details .payment-details > li .icon {
  width: 68px;
  min-width: 68px;
  margin: 0 40px 0 0;
}

.shipping-details .payment-details > li .details .heading {
  margin: 0 0 12px 0;
  line-height: 25px;
  letter-spacing: .42px;
  font-size: 21px;
  font-weight: 500;
}

.shipping-details .payment-details > li .details p {
  line-height: 28px;
}

.shipping-details .payment-details > li .details .crypto li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 15px 15px 0;
}

.shipping-details .payment-details > li .details .crypto li img {
  margin: 0 5px 0 0;
}

.shipping-details .couriers .list .courier {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 45px 0;
}

.shipping-details .couriers .list .courier:last-child {
  margin: 0;
}

.shipping-details .couriers .list .courier:last-child .table tr:last-child td {
  padding-bottom: 0;
  border-bottom: 0;
}

.shipping-details .couriers .list .courier .logo {
  width: 285px;
  min-width: 285px;
  margin: 0 40px 0 0;
}

.shipping-details .couriers .list .courier .details {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.shipping-details .couriers .list .courier .details .name {
  margin: 0 0 -3px 0;
  font-weight: 500;
  letter-spacing: .42px;
}

.shipping-details .couriers .list .courier .details .table h5 {
  margin: 0 0 8px 0;
  line-height: 28px;
  font-size: 16px;
  font-weight: 500;
}

.shipping-details .couriers .list .courier .details .table tr td {
  padding: 30px 0;
  border: 0;
  border-bottom: 1px solid #EBE8E5;
  vertical-align: top;
}

.shipping-details .couriers .list .courier .details .table tr td p {
  margin: 0 0 28px 0;
  line-height: 28px;
}

.shipping-details .couriers .list .courier .details .table tr td p:last-child {
  margin: 0;
}

.shipping-details .couriers .list .courier .details .table tr td:last-child {
  width: 260px;
  text-align: center;
  vertical-align: middle;
}

.shipping-details .couriers .list .courier .details .table tr td:last-child strong {
  line-height: 25px;
  font-size: 21px;
  letter-spacing: .42px;
}

.wholesale-details .text-block {
  margin: 0 0 140px 0;
}

.wholesale-details .text-block .image {
  pointer-events: none;
  min-width: 48.25%;
  max-width: 608px;
}

.wholesale-details .text-block .text {
  min-width: 39.68%;
  max-width: 500px;
}

.wholesale-details .text-block .text p {
  margin: 0 0 30px 0;
  line-height: 28px;
}

.wholesale-details .text-block .text p:last-child {
  margin: 0;
}

.wholesale-details .contact-us {
  max-width: 1040px;
  margin: 0 auto;
}

.wholesale-details .contact-us .block-heading {
  max-width: 80%;
  margin: 0 auto 84px;
}

.wholesale-details .contact-us .contacts-list li {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.wholesale-details .contact-us .contacts-list li a {
  margin: 0;
}

.error-404 {
  padding: 60px 0 0 0;
  text-align: center;
}

.error-404::before {
  content: '';
  display: block;
  width: 139px;
  height: 190px;
  margin: 0 auto 30px;
  background: url("../img/icon-404.svg") center center no-repeat;
}

.error-404 .entry-title {
  margin: 0 0 17px 0;
  line-height: 52px;
  font-size: 34px;
  font-weight: 300;
}

.error-404 .entry-title strong {
  font-weight: 600;
}

.error-404 p {
  margin: 0 0 30px 0;
  line-height: 28px;
  font-size: 16px;
}

.error-404 .btn {
  min-width: 165px;
}

@media screen and (max-width: 575px) {
  .error-404 .btn {
    width: 100%;
  }
}

#exTab1 .tab-content {
  color: white;
  background-color: #428bca;
  padding: 5px 15px;
}

#exTab2 h3 {
  color: white;
  background-color: #428bca;
  padding: 5px 15px;
}

.tabs-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}

@media screen and (min-width: 575px) {
  .tabs-nav {
    margin-bottom: 53px;
  }
}

.tabs-nav li {
  margin-right: 20px;
}

@media screen and (min-width: 575px) {
  .tabs-nav li {
    margin-right: 50px;
  }
}

.tabs-nav li a {
  color: #83878B;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 24px;
  font-weight: 500;
  position: relative;
  text-decoration: none;
}

@media screen and (min-width: 575px) {
  .tabs-nav li a {
    font-size: 16px;
    line-height: 28px;
  }
}

@media screen and (max-width: 767px) {
  .tabs-nav li a {
    white-space: nowrap;
  }
}

.tabs-nav li:hover a {
  color: #499C4E;
  font-weight: 600;
}

.tabs-nav li:hover a::before {
  background: #499C4E;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  content: "";
  height: 2px;
}

.tabs-nav li.tab-active a {
  color: #499C4E;
  font-weight: 600;
}

.tabs-nav li.tab-active a::before {
  background: #499C4E;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  content: "";
  height: 2px;
}

@media (max-width: 576px) {
  .tab_heading {
    overflow: auto;
  }
  .tab_heading::-webkit-scrollbar {
    display: none;
  }
}

.tabs-on-sale {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}

@media screen and (min-width: 575px) {
  .tabs-on-sale {
    margin-bottom: 53px;
  }
}

.tabs-on-sale li {
  margin-right: 20px;
}

@media screen and (min-width: 575px) {
  .tabs-on-sale li {
    margin-right: 50px;
  }
}

.tabs-on-sale li a {
  color: #83878B;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 24px;
  font-weight: 500;
  position: relative;
  text-decoration: none;
}

@media screen and (min-width: 575px) {
  .tabs-on-sale li a {
    font-size: 16px;
    line-height: 28px;
  }
}

@media screen and (max-width: 576px) {
  .tabs-on-sale li a {
    white-space: nowrap;
  }
}

.tabs-on-sale li:hover a {
  color: #499C4E;
  font-weight: 600;
}

.tabs-on-sale li:hover a::before {
  background: #499C4E;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  content: "";
  height: 2px;
}

.tabs-on-sale li.tab-active a {
  color: #499C4E;
  font-weight: 600;
}

.tabs-on-sale li.tab-active a::before {
  background: #499C4E;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  content: "";
  height: 2px;
}

@media screen and (min-width: 992px) {
  .special-main {
    margin-bottom: 50px;
    margin: 0 -20px 50px;
  }
}

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

.special-main .col-md-8 {
  padding: 0 15px;
}

@media screen and (min-width: 992px) {
  .special-main .col-md-8 {
    padding: 0 20px;
  }
}

.special-main .col-md-4 {
  padding: 0 15px;
}

@media screen and (min-width: 992px) {
  .special-main .col-md-4 {
    padding: 0 20px;
  }
}

.special-main .special-bg {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (min-width: 1199px) {
  .special-main .special-bg {
    padding: 40px;
  }
}

@media screen and (min-width: 768px) {
  .special-main .special-bg {
    height: 365px;
  }
}

@media screen and (max-width: 767px) {
  .special-main .special-bg {
    margin-bottom: 24px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}

.special-main .special-bg img {
  height: 300px;
}

@media (max-width: 767px) {
  .special-main .special-bg img {
    margin: 0 auto;
  }
}

.special-main .special-bg .sub-title {
  letter-spacing: 0.32px;
  color: #FFFFFF;
  font-size: 21px;
  line-height: 31px;
  margin-bottom: 15px;
  display: block;
}

.special-main .special-bg h3 {
  font-size: 24px;
  line-height: 34px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 35px;
  display: inline-block;
  max-width: 400px;
}

@media screen and (min-width: 1199px) {
  .special-main .special-bg h3 {
    font-size: 34px;
    line-height: 46px;
  }
}

@media screen and (max-width: 767px) {
  .special-main .special-bg h3 {
    margin-bottom: 0;
  }
}

.special-main .special-bg .view-more {
  color: #fff;
}

.special-main .special-bg .view-more::after {
  background: url(../img/home/white_arrow.svg) center center no-repeat;
}

.special-main .special-bg .price {
  display: block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

.special-main .special-bg .price .new {
  letter-spacing: 0.36px;
  color: #FFFFFF;
  font-size: 17px;
  line-height: 28px;
  font-weight: 500;
  margin-right: 15px;
  display: inline-block;
}

@media screen and (min-width: 1199px) {
  .special-main .special-bg .price .new {
    font-size: 24px;
    line-height: 28px;
  }
}

.special-main .special-bg .price .old {
  font-weight: 400;
  font-size: 16px;
  color: rgba(254, 254, 254, 0.6);
  text-decoration: line-through;
  letter-spacing: 0.24px;
}

.news-section {
  position: relative;
  padding-bottom: 70px;
}

@media screen and (max-width: 991px) {
  .news-section {
    padding-bottom: 0;
  }
}

.news-section::before {
  left: -396px;
  top: -137px;
  background: url(../img/home/sign-bg.svg) no-repeat right top;
  width: 100%;
  height: 1000px;
  content: "";
  position: absolute;
  z-index: -1;
}

@media (min-width: 992px) {
  .news-section::before {
    left: -1000px;
  }
}

.news-section .section-heading {
  margin: 0 0 26px 0;
}

.news-section .section-heading .view-more {
  top: 36px;
}

@media (max-width: 767px) {
  .news-section .section-heading .view-more {
    display: none;
  }
}

.news-section h2 {
  position: relative;
  line-height: 66px;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: .96px;
  color: #151617;
  margin-bottom: 50px;
}

.news-section .view-more {
  position: absolute;
  top: 24px;
  right: 0;
}

.news-section .news-box {
  padding-bottom: 30px;
}

@media screen and (min-width: 992px) {
  .news-section .news-box {
    padding: 0 8px;
  }
}

.news-section .news-box .news-image {
  overflow: hidden;
  width: 100%;
}

@media (min-width: 768px) {
  .news-section .news-box .news-image {
    width: 284px;
  }
}

.news-section .news-box img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 100%;
  height: 230px;
}

.news-section .news-box:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.news-section .news-deatil {
  padding: 8px 0;
}

.news-section .news-deatil h5 {
  margin-bottom: 10px;
}

.news-section .news-deatil h5 a {
  color: #151617;
}

.news-section .news-deatil h5 a:hover {
  color: #CE4939;
}

.news-section .news-deatil .news-top {
  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;
  margin-bottom: 5px;
}

.news-section .news-deatil .news-top .category, .news-section .news-deatil .news-top .date {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18px;
  color: #83878B;
  text-transform: uppercase;
  line-height: 28px;
}

.news-section .news-deatil .view-more {
  position: relative;
  top: 0;
}

.products-list .product-listing.columns-3 > li {
  width: 100% !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .products-list .product-listing.columns-3 > li {
    -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;
  }
}

.products-list .product-listing .product-layout {
  -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;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.products-list .product-listing .product-layout .image {
  height: 167px;
}

@media screen and (min-width: 992px) {
  .products-list .product-listing .product-layout .image {
    height: 176px;
  }
}

.products-list .product-listing .product-layout .top-btn {
  width: 100%;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: -37px;
}

@media screen and (max-width: 992px) {
  .products-list .product-listing .product-layout .top-btn {
    top: -18px;
  }
}

@media screen and (max-width: 767px) {
  .products-list .product-listing .product-layout .top-btn {
    top: 5px;
    left: 0;
    z-index: 99;
  }
}

.products-list .product-listing .product-layout .image {
  width: 176px;
  margin-right: 52px;
}

@media screen and (max-width: 767px) {
  .products-list .product-listing .product-layout .image {
    margin-right: 17px;
  }
}

.products-list .product-listing .product-layout .details {
  width: 100%;
  position: relative;
}

@media screen and (min-width: 991px) {
  .products-list .product-listing .product-layout .details {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-left: 0;
  }
}

.products-list .product-listing .product-layout .details .product-list {
  width: 100%;
}

@media screen and (min-width: 991px) {
  .products-list .product-listing .product-layout .details .product-list {
    width: 55%;
  }
}

@media screen and (max-width: 767px) {
  .products-list .product-listing .product-layout .details .product-list .desktop_btn {
    display: none;
  }
}

.products-list .product-listing .product-layout .details .name {
  margin-bottom: 17px;
}

.products-list .product-listing .product-layout .top-btn span {
  margin-right: 10px;
}

@media screen and (max-width: 500px) {
  .products-list .product-listing .product-layout .product-btn {
    margin-bottom: 10px;
  }
}

.products-list .product-listing .product-layout .product-btn .view-btn {
  background: url(../img/category/icon-view.svg) no-repeat left top;
  width: 25px;
  height: 25px;
  padding-left: 32px;
  margin-right: 37px;
  letter-spacing: 0.21px;
  color: #151617;
  font-size: 14px;
  font-weight: 400;
}

.products-list .product-listing .product-layout .product-btn .wishlist-btn {
  background: url(../img/home/icon-wishlist.svg) no-repeat left top;
  padding-left: 32px;
  background-size: 18px;
  letter-spacing: 0.21px;
  color: #151617;
  font-size: 14px;
  font-weight: 400;
}

.products-list .product-listing .add-btn {
  width: 182px;
}

.products-list .product-listing .add-btn.mobile_btn {
  display: none;
}

@media screen and (max-width: 767px) {
  .products-list .product-listing .add-btn.desktop_btn {
    display: none;
  }
  .products-list .product-listing .add-btn.mobile_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .products-list .product-listing .add-btn.mobile_btn .add-cart {
    min-width: 167px;
    height: 34px;
    line-height: 34px;
  }
  .products-list .product-listing .add-btn.mobile_btn .wishlist-btn {
    font-size: 14px;
    background: url(../img/home/icon-wishlist.svg) no-repeat left top 3px;
    padding-left: 18px;
    background-size: 14px;
  }
}

@media screen and (max-width: 600px) {
  .products-list .product-listing .add-btn {
    width: 129px;
    margin-left: 167px;
  }
}

@media screen and (max-width: 500px) {
  .products-list .product-listing .add-btn {
    margin: 0 auto;
  }
}

.products-list .product-listing .add-btn .add-cart {
  height: 51px;
  background: #499C4E;
  color: #FFFFFF;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 51px;
  font-weight: 500;
  min-width: 182px;
  display: inline-block;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.products-list .product-listing .add-btn .add-cart:hover {
  background: #161514;
}

@media screen and (min-width: 992px) {
  .products-list .product-listing .add-btn .add-cart {
    font-size: 16px;
  }
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pagination li {
  padding: 0 8px;
  margin: 0;
}

@media (max-width: 767px) {
  .pagination li {
    padding: 0 5px;
    margin: 0 !important;
  }
}

.pagination .page-item:first-child img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.pagination .page-item:first-child a:hover {
  background: url(../img/arrow-right.svg) center center no-repeat;
}

.pagination .page-item:last-child a:hover {
  background: url(../img/arrow-right.svg) center center no-repeat;
}

.pagination .page-item a {
  letter-spacing: 0.24px;
  color: #151617;
  font-size: 16px;
  font-weight: 500;
}

.pagination .page-item a:hover {
  background: #499C4E;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
}

.pagination .page-item.active a {
  background: #499C4E;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
}

.product-grid .product-layout .image {
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
  height: 365px;
}

@media (max-width: 767px) {
  .product-grid .product-layout .image {
    height: 159px;
  }
}

.product-grid .product-layout .image .wishlist-icon {
  width: 35px;
  height: 35px;
  background: #E7EBEF url(../img/wishlist-icon.svg) center center no-repeat;
  position: absolute;
  right: 0;
  top: 15px;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

@media (max-width: 767px) {
  .product-grid .product-layout .image .wishlist-icon {
    top: 0;
  }
}

.product-grid .product-layout .image .wishlist-icon:hover, .product-grid .product-layout .image .wishlist-icon.active {
  background: #000 url(../img/category/wish-active.svg) center center no-repeat;
  background-size: 30px;
}

.product-grid .product-layout .image .image-icon {
  position: absolute;
  bottom: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.product-grid .product-layout .image .image-icon .view-icon {
  background: #E7EBEF;
  height: 41px;
  line-height: 40px;
  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;
  border-radius: 10px 0 0 10px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 108px;
}

.product-grid .product-layout .image .image-icon .view-icon:hover, .product-grid .product-layout .image .image-icon .view-icon.active {
  background: #000;
}

.product-grid .product-layout .image .image-icon .view-icon:hover svg, .product-grid .product-layout .image .image-icon .view-icon.active svg {
  fill: #fff;
}

.product-grid .product-layout .image .image-icon .view-icon svg {
  fill: #151617;
}

.product-grid .product-layout .image .image-icon .cart-icon {
  background: #E7EBEF;
  width: 108px;
  height: 41px;
  line-height: 40px;
  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;
  border-radius: 0 10px 10px 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.product-grid .product-layout .image .image-icon .cart-icon:hover, .product-grid .product-layout .image .image-icon .cart-icon.active {
  background: #000;
}

.product-grid .product-layout .image .image-icon .cart-icon:hover svg, .product-grid .product-layout .image .image-icon .cart-icon.active svg {
  fill: #fff;
}

.product-grid .product-layout .image .image-icon .cart-icon svg {
  fill: #151617;
}

.product-grid .product-layout:hover .wishlist-icon {
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.product-grid .product-layout:hover .image-icon {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  bottom: 20px;
}

@media (max-width: 767px) {
  .product-grid .product-layout:hover .image-icon {
    bottom: 0;
  }
}

.product-deatils-section {
  padding-top: 30px;
}

@media screen and (min-width: 992px) {
  .product-deatils-section {
    padding-top: 50px;
  }
}

@media screen and (max-width: 767px) {
  .product-deatils-section {
    padding-top: 0;
  }
}

.product-deatils-section h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  letter-spacing: 0.51px;
  color: #000000;
  text-transform: uppercase;
  margin-bottom: 30px;
}

@media screen and (min-width: 992px) {
  .product-deatils-section h3 {
    font-size: 34px;
    line-height: 46px;
  }
}

@media (max-width: 767px) {
  .product-deatils-section .order-bottom {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.product-deatils-section .product-deatils-desc p {
  margin-bottom: 30px;
  color: #151617;
}

.product-deatils-section .product-deatils-desc h6 {
  letter-spacing: 0.32px;
  color: #151617;
  font-size: 21px;
  line-height: 31px;
  font-weight: 400;
  margin-bottom: 30px;
}

.product-deatils-section .product-deatils-desc h4 {
  font-size: 21px;
  line-height: 31px;
  letter-spacing: 0.32px;
  color: #151617;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 30px;
}

.product-deatils-section .product-deatils-desc .sub-heading {
  font-weight: 500;
  font-size: 16px;
  line-height: 31px;
  letter-spacing: 0.24px;
  color: #151617;
  margin-bottom: 10px;
  display: inline-block;
}

.product-deatils-section .product-deatils-desc ul li {
  font-size: 16px;
  line-height: 31px;
  letter-spacing: 0.24px;
  color: #151617;
  font-weight: 400;
}

.product-deatils-section .product-deatils-desc .needed-list {
  margin-top: 15px;
}

.product-deatils-section .product-deatils-desc .needed-list p {
  margin-bottom: 10px;
  color: #151617;
}

.product-deatils-section .product-deatils-desc .needed-list p strong {
  font-weight: 500;
}

@media screen and (min-width: 992px) {
  .product-deatils-section .attribute-right {
    margin-top: -30px;
    padding-left: 20px;
  }
}

.product-deatils-section .attribute-right h3 {
  letter-spacing: 0.32px;
  color: #151617;
  text-transform: uppercase;
  font-size: 21px;
  line-height: 31px !important;
  font-weight: 500 !important;
  margin-bottom: 30px !important;
  display: inline-block;
}

.product-deatils-section .attribute-right .accordian-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 500px) {
  .product-deatils-section .attribute-right .accordian-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.product-deatils-section .attribute-right .accordian-list span {
  letter-spacing: 0.24px;
  color: #83878B;
  font-size: 16px;
  line-height: 32px;
  width: 35%;
}

@media screen and (max-width: 500px) {
  .product-deatils-section .attribute-right .accordian-list span {
    width: 100%;
  }
}

.product-deatils-section .attribute-right .accordian-list p {
  margin-bottom: 0;
  width: 65%;
}

@media screen and (max-width: 500px) {
  .product-deatils-section .attribute-right .accordian-list p {
    width: 100%;
    font-weight: 500;
  }
}

.product-deatils-section .attribute-right .holder ul li {
  letter-spacing: 0.24px;
  color: #151617;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 34px;
  background-size: 46px;
  padding: 0 70px;
  font-weight: 400;
  position: relative;
}

.product-deatils-section .attribute-right .holder ul li:after {
  background: url(../img/product/icon-download.svg) no-repeat right center;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.product-deatils-section .attribute-right .holder ul li::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 45px;
  left: 0;
  background: url(../img/product/icon-document.svg) no-repeat left center;
  display: inline-block;
  top: 7px;
}

.product-deatils-section .attribute-right .sidebar.filters {
  position: static;
  width: 100%;
  padding: 20px 0;
  margin-top: 84px;
}

@media screen and (max-width: 767px) {
  .product-deatils-section .attribute-right .sidebar.filters {
    margin-top: 0;
  }
}

.product-deatils-section .attribute-right .sidebar.filters .widget {
  border-bottom: 1px solid #CACED2;
  margin-bottom: 30px;
}

.signin-modal .modal-dialog {
  max-width: 460px;
}

.signin-modal .modal-body {
  padding: 0 34px 15px;
}

.signin-modal .authentication {
  margin: 0;
  max-width: 100%;
}

.signin-modal .authentication .page-title {
  margin-bottom: 20px;
  font-size: 34px;
  line-height: 46px;
  letter-spacing: 0.51px;
  color: #151617;
  font-weight: 600;
}

.signin-modal .modal-header {
  border-bottom: 0;
}

.signin-modal .modal-header .btn-close {
  background: url(../img/category/icon-close.svg) no-repeat right top;
  border: 0;
  position: absolute;
  right: 20px;
  top: 20px;
}

.on-sale-section .section-heading .view-more {
  top: 89px;
}

.on-sale-section .top-btn {
  top: 0;
}

#cookie-bar .not-confirm {
  text-transform: capitalize;
}

.not-found-page {
  text-align: center;
  padding: 122px 0 0;
}

.not-found-page h1 {
  letter-spacing: 1.8px;
  color: #151617;
  font-size: 120px;
  font-weight: 600;
}

.not-found-page .found-not {
  letter-spacing: 0.27px;
  color: #3A4557;
  text-transform: capitalize;
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
  margin-top: 45px;
  margin-bottom: 8px;
}

.not-found-page p {
  text-align: center;
}

@media (min-width: 767px) {
  .not-found-page p {
    max-width: 608px;
    margin: 0 auto 50px;
  }
}

.mobile-sticky {
  display: none !important;
}

@media (max-width: 767px) {
  .mobile-sticky {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 111;
    background: #fff;
    padding: 16px 20px;
    right: 0;
    margin: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-shadow: 0px -3px 10px #1516171A;
            box-shadow: 0px -3px 10px #1516171A;
  }
  .mobile-sticky .btn-primary {
    width: 236px;
  }
}

@media (max-width: 767px) and (max-width: 500px) {
  .mobile-sticky .btn-primary {
    width: calc( 100% - 116px);
  }
}

@media (max-width: 767px) {
  .mobile-sticky .quantity {
    margin-right: 11px;
    position: relative;
  }
  .mobile-sticky .quantity .plus {
    position: absolute;
    top: 0;
    right: 0;
    border: 1px solid #ccc;
    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: 26px;
    width: 26px;
    border-top: 0 !important;
    border-right: 0 !important;
  }
  .mobile-sticky .quantity .minus {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 26px;
    top: auto;
    width: 26px;
    border: 1px solid #ccc;
    border-bottom: 0 !important;
    border-right: 0 !important;
  }
}

.order-deatils-section-main .breadcrumb {
  margin: 9px 0 16px 0;
}

.wishlist-page .product-layout {
  padding-bottom: 20px;
}

.wishlist-page .product-layout .details .name {
  margin: 7px 0 20px 0;
}

.wishlist-page #main-footer {
  margin: 97px 0 0 0;
}

.contact-page .page-title {
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .contact-page .page-title {
    margin-bottom: 34px;
  }
}

.mobile-proceed {
  display: none;
}

@media screen and (max-width: 767px) {
  .mobile-proceed {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .desktop-proceed {
    display: none;
  }
}

.about-page .breadcrumb {
  margin: 33px 0 20px 0;
}

@media (min-width: 992px) {
  .about-page .page-title {
    margin: 0 0 45px 0;
  }
}

@media (min-width: 992px) {
  .about-page #main-footer {
    margin: 98px 0 0 0;
  }
}

.account-page .breadcrumb {
  margin: 33px 0 30px 0;
}

.account-page .page-title {
  margin: 0 0 32px 0;
}

.catalog-page .page-title {
  margin: 0 0 37px 0;
}

.mobile_filter_btn {
  display: none;
}

@media (max-width: 991px) {
  .mobile_filter_btn {
    display: block;
  }
}

.mobile_filter_btn .border-btn {
  border: 2px solid #3A4557;
  width: 258px;
  height: 51px;
  line-height: 51px;
  display: inline-block;
  color: #3A4557;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  margin-top: 24px;
  text-align: center;
}

.mobile_filter_btn .border-btn:hover {
  background: #151617;
  color: #fff;
  border: 2px solid #151617;
}

@media (min-width: 992px) {
  .similar-products .product-layout .image {
    height: 365px;
  }
}

.similar-products .top-btn {
  top: 18px;
}

@media (min-width: 992px) {
  .edit-profile-page:before {
    top: 73px;
    right: -546px;
  }
}

.cart-page .breadcrumb {
  margin: 33px 0 20px 0;
}

.cart-page .page-title {
  margin: 0 0 45px 0;
}

.cart-page #main-footer {
  margin: 98px 0 0 0;
}

.special-mobile-image {
  display: none;
}

@media (max-width: 767px) {
  .special-mobile-image {
    display: block;
  }
}

@media (max-width: 767px) {
  .special-desktop-image {
    display: none;
  }
}

.welcome.mobile {
  display: none;
}

@media (max-width: 767px) {
  .welcome.mobile {
    display: block;
  }
}

.welcome.mobile p strong {
  color: #3A4557;
}

@media (max-width: 767px) {
  .welcome.mobile p strong {
    margin-left: 5px;
  }
}

.sorting-icon-mobile {
  display: none;
}

@media (max-width: 767px) {
  .sorting-icon-mobile {
    display: block;
    margin: 0 9px 0 0;
  }
}

.new_arrival .top-btn {
  top: 0;
}

.blog_single .breadcrumb {
  margin: 27px 0 20px 0;
}

.indivisual-shiping .form-group .dropdown-menu li a {
  font-size: 14px;
  letter-spacing: 0.21px;
  color: #83878B;
  font-weight: 400;
}

#main-footer {
  margin: 140px 0 0 0;
  padding: 43px 0 0 0;
  border-top: 1px solid #eae9e7;
  font-weight: 300;
  background: #fff;
}

#main-footer .footer-logo {
  margin-bottom: 24px;
  font-size: 24px;
  color: #000;
  text-transform: uppercase;
  font-weight: bold;
}

@media screen and (max-width: 991px) {
  #main-footer {
    margin: 70px 0 0 0;
  }
}

@media screen and (max-width: 575px) {
  #main-footer {
    padding: 33px 0 0 0;
    margin: 33px 0 0 0 !important;
  }
}

#main-footer a {
  font-weight: 500;
  color: #57595B;
  text-decoration: none;
}

@media screen and (min-width: 992px) {
  #main-footer a:hover {
    color: #CE4939;
  }
}

#main-footer .subscribe-form {
  margin-bottom: 25px;
}

@media screen and (max-width: 575px) {
  #main-footer .subscribe-form {
    margin-bottom: 35px;
  }
  #main-footer .subscribe-form .form-group > div {
    width: 100%;
  }
}

#main-footer .subscribe-form .form-name {
  margin: 0 0 12px 0;
  line-height: 28px;
  font-size: 16px;
  font-weight: 500;
}

#main-footer .subscribe-form input[type="email"] {
  width: 200px;
  border-right: 0;
}

@media screen and (max-width: 575px) {
  #main-footer .subscribe-form input[type="email"] {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 100%;
  }
}

#main-footer .subscribe-form button[type="submit"],
#main-footer .subscribe-form input[type="submit"] {
  min-width: 85px;
  padding: 10px 15px;
}

#main-footer .block-heading {
  margin: 0 0 11px 0;
  line-height: 28px;
  color: #151617;
  font-size: 16px;
  font-weight: 500;
}

#main-footer .footer-contacts {
  padding-right: 0;
  font-weight: 400;
}

#main-footer .footer-contacts ul > li {
  line-height: normal;
  margin: 0 0 23px 0;
}

#main-footer .footer-contacts ul > li a.more {
  color: #3A4557;
}

@media screen and (min-width: 992px) {
  #main-footer .footer-contacts ul > li a.more:hover {
    color: #161514;
  }
}

@media screen and (max-width: 767px) {
  #main-footer .footer-contacts ul > li {
    margin: 0 0 18px 0;
  }
}

#main-footer .footer-contacts ul > li li {
  margin: 0 0 15px 0;
  color: #151617;
}

@media screen and (max-width: 1199px) {
  #main-footer .footer-contacts ul > li li {
    line-height: normal;
  }
}

@media screen and (max-width: 767px) {
  #main-footer .footer-contacts ul > li li {
    margin: 0 0 8px 0;
  }
}

@media screen and (max-width: 575px) {
  #main-footer .footer-contacts ul > li li {
    margin: 0 0 18px 0;
  }
}

#main-footer .footer-contacts ul > li li:last-child {
  margin: 0;
}

@media (max-width: 991px) {
  #main-footer .footer-nav {
    margin-top: 15px;
  }
}

@media screen and (max-width: 575px) {
  #main-footer .footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 15px;
  }
}

#main-footer .footer-nav li {
  margin: 0 0 16px 0;
}

@media screen and (max-width: 575px) {
  #main-footer .footer-nav li {
    width: 100%;
    padding-right: 10px;
    word-break: break-all;
  }
}

#main-footer .footer-nav li:last-child {
  margin: 0;
}

@media screen and (max-width: 1199px) {
  #main-footer .social-media {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 575px) {
  #main-footer .social-media {
    margin: 24px 0 33px 0;
  }
}

#main-footer .social-media li {
  margin: 0 15px 0 0;
}

@media screen and (min-width: 992px) {
  #main-footer .social-media li a:hover {
    opacity: .85;
  }
}

#main-footer .social-media li:last-child {
  margin: 0;
}

#main-footer .logos-block {
  margin: 0 0 20px 0;
}

#main-footer .logos-block:last-child {
  margin: 0;
}

@media (min-width: 1300px) {
  #main-footer .logos-col {
    padding-left: 107px;
  }
}

#main-footer .logos li {
  margin: 0 8px;
}

@media screen and (max-width: 1340px) {
  #main-footer .logos li {
    margin: 0 5px;
  }
}

@media screen and (max-width: 991px) {
  #main-footer .logos li {
    margin: 0 7px;
  }
}

#main-footer .logos li img {
  height: 34px;
}

@media screen and (min-width: 992px) {
  #main-footer .logos li:last-child {
    margin: 0;
  }
}

@media screen and (max-width: 991px) and (min-width: 576px) {
  #main-footer .logos li {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 575px) {
  #main-footer .marketplaces-col {
    margin-top: 15px;
  }
}

#main-footer .copyrights {
  display: block;
  margin: 50px 0 0 0;
  padding: 18px 15px;
  border-top: 1px solid #EBE8E5;
  font-weight: 300;
  color: #676563;
  text-align: center;
}

@media screen and (max-width: 1199px) {
  #main-footer .copyrights {
    border-width: 1px;
  }
}

@media screen and (max-width: 575px) {
  #main-footer .copyrights {
    color: #A4A3A3;
  }
}

#main-footer .copyrights .copy-main {
  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;
}

@media screen and (min-width: 768px) {
  #main-footer .copyrights .copy-main {
    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;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

#main-footer .copyrights .copy-main a {
  letter-spacing: 0.21px;
  color: #151617;
  font-size: 14px;
  margin-bottom: 6px;
}

#main-footer .copyrights .copy-main a:hover {
  color: #CE4939;
}

@media screen and (min-width: 768px) {
  #main-footer .copyrights .copy-main a {
    margin-bottom: 0;
  }
}

#main-footer .copyrights .copy-main .copy {
  letter-spacing: 0.21px;
  color: #151617;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
}

#main-footer .copyrights .copy-main .develop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#main-footer .copyrights .copy-main .develop span {
  margin-right: 10px;
  letter-spacing: 0.21px;
  color: #151617;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
}

#main-footer .whats-app-icon .wahtsapp-icon {
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#61D36D), to(#2CAF43));
  background: transparent linear-gradient(180deg, #61D36D 0%, #2CAF43 100%);
  width: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  bottom: 250px;
  right: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 20px;
  letter-spacing: 0.18px;
  color: #FFFFFF;
  font-size: 12px;
  line-height: 28px;
  font-weight: normal;
  height: 35px;
  -webkit-transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
  font-size: 0;
  z-index: 1;
}

@media screen and (max-width: 1400px) {
  #main-footer .whats-app-icon .wahtsapp-icon {
    bottom: 34px;
    right: 55px;
  }
}

@media screen and (max-width: 1199px) {
  #main-footer .whats-app-icon .wahtsapp-icon {
    right: 50px;
  }
}

@media screen and (max-width: 767px) {
  #main-footer .whats-app-icon .wahtsapp-icon {
    right: 21px;
  }
  .aws-search-result .aws_result_image {
    display: flex!important;
    height: 136px!important;
  }
  .aws-search-result .aws_result_image img{
    margin: auto;
  }

  .aws-search-result .aws_result_term{
      padding-left: 94px;
  }

  .aws-search-result .aws_result_price{
    margin-left: 94px;
    text-align: left!important;
  }
}
.aws_result_item{
  display: flex!important;
}
#main-footer .whats-app-icon .wahtsapp-icon img {
  width: 21px;
  height: 21px;
  display: block;
  margin: -3px 0 0 8px;
}

#main-footer .whats-app-icon:hover .wahtsapp-icon {
  width: 230px;
  font-size: 12px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#main-footer .whats-app-icon:hover .wahtsapp-icon img {
  margin: -3px 10px 0 15px;
}

@media screen and (max-width: 991px) {
  #main-footer .logos-col {
    margin-top: 15px;
  }
}


/* Extra CSS */

.aws-container .aws-search-form {
  height: auto !important;
  align-items: center !important;
}

.aws-container .aws-search-form .aws-form-btn {
  border: none !important;

}

.aws-container .aws-search-form .aws-wrapper {
  align-items: center !important;
  display: flex;
}

.aws-container .aws-search-form .aws-search-clear span {
  display: none !important;
}

.aws-container .aws-search-form .aws-search-btn {
  width: 30px !important;
  margin-left: 7px !important;
}

.aws-search-result .aws_result_image img {
  width: 80px !important;
}

.aws-search-result .aws_result_image {
  padding: 0 55px 0 0 !important;
}

.aws-search-result .aws_result_title {
  margin: 0 0 5px 0;
    line-height: 32px;
    font-size: 18px;
    letter-spacing: 0.27px;
    color: #151617;
    text-transform: capitalize;
    font-weight: 500;
}


.aws-search-result .aws_result_price {
  line-height: 28px;
    font-size: 16px;
    font-weight: 400 !important;
    letter-spacing: 0.24px;
    color: #151617;
    text-decoration: none;
    width: 30%;
    text-align: right;
}

.aws-search-result .aws_onsale {
  display: none;
}

.aws-search-result .aws_result_content {
  width: 30%;
}

.aws-search-result .aws_result_term {
  width: 25%;
  letter-spacing: 0.18px;
  color: #499C4E !important;
  font-weight: 500 !important;
  font-size: 1rem !important;
  text-align: center;
}

.aws-search-result .aws_result_term strong {
  font-weight: 400 !important;
}

.aws-search-result .aws_results .aws_result_item {
  border: none !important;
}

.aws-search-result {
  border: none !important;
}

.aws-search-result .aws_result_item:hover, .aws-search-result .aws_result_item.hovered {
    background: none !important;
}


.aws-search-result .aws_results .aws_result_item {
  padding-left: 0px !important;
  padding-right: 0px !important;
}


.aws-container .aws-search-form .aws-form-btn {
  width: 23px;
  height: 20px;
  margin: 0 0 0 13px;
  border: 0;
  background: #fff url("../img/home/icon-search.svg") center center no-repeat !important;
  background-size: 20px;
}


.aws-container .aws-search-form.aws-show-clear.aws-form-active .aws-search-clear {
  background: url(../img/home/icon-close.svg) center center no-repeat;
  width: 30px;
  height: 30px;
  display: inline-block;
  position: relative !important;
}


.aws-search-btn_icon {
  display: none !important;
}


#main-header .header-search .dropdown-menu .search-form input[type="search"] {
  width: 100%;
  padding: 10px 0;
  border: 0;
  font-size: 20px;
  line-height: 30px;
  color: #161514;
}

@media (min-width: 991px) {
  #main-header .header-search .dropdown-menu .search-form input[type="search"] {
    font-size: 34px;
    font-weight: 600;
    letter-spacing: 0.51px;
    line-height: 46px;
  }
}

#main-header .header-search .dropdown-menu .search-form input[type="search"]::-webkit-input-placeholder {
  color: #161514;
}

#main-header .header-search .dropdown-menu .search-form input[type="search"]::-moz-placeholder {
  color: #161514;
}

#main-header .header-search .dropdown-menu .search-form input[type="search"]:-ms-input-placeholder {
  color: #161514;
}

#main-header .header-search .dropdown-menu .search-form input[type="search"]:-moz-placeholder {
  color: #161514;
}
/*# sourceMappingURL=style.css.map */

.product-layout.list .details{
  justify-content: unset;
  flex-grow: unset;
  position: relative;
  padding-top: 46px;
}
.product-layout.list img{
  width: 176px;
  height: 176px;
}
.product-layout.list .top-btn{
  top: 0;
  display: flex;
}
.product-layout.list .top-btn span{
  margin-right: 10px;
}
.product-layout.list .details .name {
    margin: 16px 0 16px 0;
}

.products-list ul.list > li.list {
    margin: 0 20px 24px 20px;
}
.product-layout.list .button{
  background:#499C4E!important;
  height: max-content;
  margin: auto;
  color: white!important;
  width: 182px;
  height: 51px;
  font-size: 15px;
  line-height: 31px;
  text-align: center;
}
html[lang="en-GB"] .product-layout.list .button:after{
  content: 'Add to cart';
}
html[lang="lv"] .product-layout.list .button:after{
  content: 'Pievienot grozam';
}
.product-layout.list .button svg{
    display: none;
}

.product-layout.list .tinvwl_add_to_wishlist_button{
  position: relative!important;
  top: 0;
  border-radius: 0;
  width: 18px!important;
  height: 16px!important;
  background: url(/wp-content/themes/bic/app/assets/img/wishlist-icon.svg) center center no-repeat!important;
  background-size: contain!important;
  margin-left: 37px;
}
.product-layout.list .tinvwl_add_to_wishlist_button:hover{
    background: url(/wp-content/themes/bic/app/assets/img/wishlist-icon.svg) center center no-repeat!important;
    background-size: contain!important;
}

@media (max-width: 767px){
  .less500.aws-search-result .aws_result_item.on-sale .aws_result_title {
      padding-right: 10px;
      font-size: 12px;
      line-height: 18px;
  }
  .product-layout.list{
    display: table;
  }
  .product-layout.list .d-flex{
    flex-wrap: wrap;
    display: table-row!important;
  }
  .tinv-wraper.tinv-wishlist {
    display: contents;
  }
  .product-layout.list .col-3{
    display: table-cell;
    width: 200px;
    padding-right: 20px;
    vertical-align: top;
  }
  .product-layout.list .col-3 img{
    margin-right: 20px;
    height: auto;
  }
  .product-layout.list .col-4{
    display: table-row;
  }
  .product-layout.list .col-2{
    margin-bottom: 16px!important;
  }
  .product-layout.list .col-4,.product-layout.list .col-2{
    width: 100%;
    flex: 0 0 50%;
  }
  .aws-search-result.aws_one_result .aws_results .aws_result_item {
      width: 100% !important;
      display: block!important;
  }
  .aws-search-result .aws_result_image {
    padding: 0 15px 0 0!important;
  }
  .aws-search-result .aws_result_content {
    width:unset;
  }
  .less500.aws-search-result .aws_result_item.on-sale .aws_result_price,.aws-search-result .aws_result_term{
    width: 100%;
    text-align: left;
  }
  .aws-search-result .aws_result_term{
    font-size: 12px!important;
  }
}

.woocommerce-order .woocommerce-thankyou-order-received {
  margin: -72px 0 120px 0;
}
@media screen and (max-width: 991px) {
  .woocommerce-order .woocommerce-thankyou-order-received {
    margin-top: -48px;
    margin-bottom: 64px;
  }
}
@media screen and (max-width: 575px) {
  .woocommerce-order .woocommerce-thankyou-order-received {
    margin-top: -32px;
  }
}
.woocommerce-order .woocommerce-thankyou-order-received {
  padding: 50px 0;
  margin: 0 0 32px 0;
  background-color: #EBF8EE;
}
@media screen and (max-width: 730px) {
  .woocommerce-order .woocommerce-thankyou-order-received{
    padding: 25px 0;
    text-align: center;
  }
  .woocommerce ul.order_details li{
    border: 0!important;
            margin: 0 !important;
        margin-left: -10px !important;
  }
}
.woocommerce-order .woocommerce-thankyou-order-received {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 32px;
}
@media screen and (max-width: 730px) {
  .woocommerce-order .woocommerce-thankyou-order-received {
    flex-direction: column;
    align-items: center;
    gap: 18px 0;
  }
}
.woocommerce-order .woocommerce-thankyou-order-received {
  flex-shrink: 0;
  pointer-events: none;
}
@media screen and (max-width: 991px) {
  .woocommerce-order .woocommerce-thankyou-order-received{
    width: 57px;
  }
}
@media screen and (max-width: 730px) {
  .woocommerce-order .woocommerce-thankyou-order-received {
    width: 43px;
    height: 43px;
  }
}
.woocommerce-order .woocommerce-thankyou-order-received {
  margin: 0;
  font-size: 38px;
  line-height: 44px;
  letter-spacing: -0.02em;
  text-align: left;
}
@media screen and (max-width: 991px) {
  .woocommerce-order .woocommerce-thankyou-order-received {
    font-size: 33px;
    line-height: 38px;
  }
}
@media screen and (max-width: 730px) {
  .woocommerce-order .woocommerce-thankyou-order-received {
    font-size: 25px;
    line-height: 30px;
    text-align: center;
  }
}
.woocommerce-order .woocommerce-thankyou-order-received {
  content: ".";
  color: #c88848;
}
.woocommerce-order .woocommerce-thankyou-order-received {
  margin: 12px 0 0 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .woocommerce-order .woocommerce-thankyou-order-received{
    line-height: 24px;
    font-size: 16px;
  }
}
@media screen and (max-width: 730px) {
  .woocommerce-order .woocommerce-thankyou-order-received{
    text-align: center;
  }
}
.woocommerce-order .woocommerce-order-overviews {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 991px) {
  .woocommerce-order .woocommerce-order-overview {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 730px) {
  .woocommerce-order .woocommerce-order-overview {
    flex-direction: column;
  }
}
.woocommerce-order .woocommerce-order-overview li {
  width: calc(20% - 2px);
  padding: 0!important;
  line-height: 16px;
  word-break: break-all;
  font-weight: 500;
  text-align: center;
  margin-right: 0!important;
}
@media screen and (min-width: 992px) {
  .woocommerce-order .woocommerce-order-overview li:not(:last-child) {
    border-right: 2px solid #e1e1e1;
  }
  .woocommerce ul.order_details{
  display: flex;
  justify-content: center;
}
}
.woocommerce ul.order_details li strong {
    display: block;
    font-size: 14px!important;
  }
@media screen and (max-width: 991px) {
  .woocommerce-order .woocommerce-order-overview li {
    width: calc(33.3333% - 2px);
    border-right: 2px solid #e1e1e1!important;
    text-align: left!important;
  }
  .woocommerce-order .woocommerce-order-overview li
  .woocommerce-order .woocommerce-order-overview li div {
    display: inline-block;
    text-align: left;
  }
  .woocommerce-order .woocommerce-order-overview li:nth-child(2), .woocommerce-order .woocommerce-order-overview li:nth-child(5) {
    padding-left: 62px;
  }
  .woocommerce-order .woocommerce-order-overview li:nth-child(4), .woocommerce-order .woocommerce-order-overview li:nth-child(5), .woocommerce-order .woocommerce-order-overview li:nth-child(6) {
    padding-top: 20px;
  }
  .woocommerce-order .woocommerce-order-overview li:nth-child(3n+0) {
    border-right: 0;
    text-align: right;
  }
}
@media screen and (max-width: 750px) {
  .woocommerce-order .woocommerce-order-overview li:nth-child(2), .woocommerce-order .woocommerce-order-overview li:nth-child(5) {
    padding-left: 30px;
  }
}
@media screen and (max-width: 730px) {
  .woocommerce-order .woocommerce-order-overview li {
    width: 100%;
    padding: 0 !important;
    border: 0;
    text-align: left;
  }
  .woocommerce-order .woocommerce-order-overview li:not(:last-child) {
    margin: 0 0 24px 0;
  }
  .woocommerce-order .woocommerce-order-overview li div {
    display: block;
    text-align: left;
  }
}
.woocommerce-order .woocommerce-thankyou-order-received {
  display: block;
  margin: 0 0 12px 0;
  font-weight: 400;
  color: #5A5A5A;
  text-align: center;
      width: 100%;
    height: auto;
}
.woocommerce-order .woocommerce-order-details {
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .woocommerce-order .woocommerce-order-details {
    max-width: 100%;
    padding: 0 30px;
  }
}
@media screen and (max-width: 575px) {
  .woocommerce-order .woocommerce-order-details {
    padding: 0 15px;
  }
}
.woocommerce-order .woocommerce-order-details .section-heading {
  margin: 0 0 40px 0;
  line-height: 39px;
  font-size: 33px;
}
@media screen and (max-width: 768px) {
  .woocommerce-order .woocommerce-order-details .section-heading {
    line-height: 34px;
    font-size: 29px;
  }
}
.woocommerce-order .woocommerce-order-details table {
  width: 100%;
  margin-bottom: 88px;
  border-collapse: collapse;
}
@media screen and (max-width: 575px) {
  .woocommerce-order .woocommerce-order-details table {
    margin-bottom: 64px;
  }
}
.woocommerce-order .woocommerce-order-details table thead th {
  padding: 0 0 6px 0;
  border-bottom: 2px solid #EDEDED;
  line-height: 14px;
  font-size: 14px;
  font-weight: 600;
}
.woocommerce-order .woocommerce-order-details table thead th:last-child {
  color: #4C4C4C;
}
.woocommerce-order .woocommerce-order-details table tbody tr td {
  padding: 16px 0;
  border-bottom: 1px solid #F2F2F2;
  vertical-align: middle;
}
.woocommerce-order .woocommerce-order-details table tbody tr td .amount {
  display: inline-block;
  margin-left: 11px;
  color: #747474;
}
.woocommerce-order .woocommerce-order-details table tfoot tr td {
  padding-top: 9px;
  padding-bottom: 9px;
  vertical-align: middle;
}
@media screen and (max-width: 575px) {
  .woocommerce-order .woocommerce-order-details table tfoot tr td {
    padding-top: 7px;
    padding-bottom: 7px;
    font-size: 14px;
  }
}
.woocommerce-order .woocommerce-order-details table tfoot tr td:first-child {
  font-weight: 700;
}
.woocommerce-order .woocommerce-order-details table tfoot tr:first-child td {
  padding-top: 14px;
}
.woocommerce-order .woocommerce-order-details table tfoot tr:last-child td {
  padding-top: 18px;
  padding-bottom: 0;
  border-top: 2px solid #EDEDED;
  line-height: 20px;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 575px) {
  .woocommerce-order .woocommerce-order-details table tfoot tr:last-child td {
    line-height: 18px;
    font-size: 18px;
  }
}
.woocommerce-order .woocommerce-order-details table tfoot tr:nth-child(3) td {
  padding-bottom: 14px;
}
@media screen and (max-width: 575px) {
  .woocommerce-order .woocommerce-order-details table td, .woocommerce-order .woocommerce-order-details table th {
    width: 50%;
  }
}
@media screen and (min-width: 576px) {
  .woocommerce-order .woocommerce-order-details table td:first-child, .woocommerce-order .woocommerce-order-details table th:first-child {
    padding-left: 15px;
  }
}
.woocommerce-order .woocommerce-order-details table td:last-child, .woocommerce-order .woocommerce-order-details table th:last-child {
  color: #5A5A5A;
  text-align: right;
}
@media screen and (min-width: 576px) {
  .woocommerce-order .woocommerce-order-details table td:last-child, .woocommerce-order .woocommerce-order-details table th:last-child {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (min-width: 576px) and (max-width: 991px) {
  .woocommerce ul.order_details li{
    padding: 10px 10px!important;
    word-break: unset;
  }
}
.woocommerce-order .delivery-address {
  display: flex;
  gap: 0 32px;
  margin: auto;
  max-width: 800px;
}
@media screen and (max-width: 575px) {
  .woocommerce-order .woocommerce-order-details .customer-details {
    flex-direction: column;
    gap: 48px 0;
  }
}
.woocommerce-order .delivery-address .address-box {
  width: 50%;
}
@media screen and (max-width: 575px) {
  .woocommerce-order .delivery-address .address-box{
    width: 100%;
  }
}
.woocommerce-order .delivery-address .address-box h3, .woocommerce-order-details__title,.woocommerce-order h2,.woocommerce-order h3{
  margin: 0 0 23px 0;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -0.01em;
  text-align: left;
}
@media screen and (max-width: 991px) {
  .woocommerce-order .delivery-address .address-box h3, .woocommerce-order-details__title ,.woocommerce-order h2{
    line-height: 25px;
    font-size: 21px;
  }
  .woocommerce-order .wc-bacs-bank-details li {
    width: calc(33.3333% - 2px);
    border-right: 2px solid #e1e1e1 !important;
    text-align: left !important;
    margin-right: 0!important;
  }

}
@media screen and (max-width: 575px) {
  .woocommerce-order .delivery-address .address-box h3, .woocommerce-order-details__title,.woocommerce-order h2{
    margin: 0 0 16px 0;
  }
}
@media screen and (max-width: 575px) {
  .woocommerce-order .delivery-address .address-box ul {
    font-size: 14px;
  }
}
.woocommerce-order .delivery-address .address-box ul li {
  line-height: 16px;
}
.woocommerce-order .delivery-address .address-box ul li:not(:last-child) {
  margin-bottom: 12px;
}
@media screen and (max-width: 575px) {
  .woocommerce-order .delivery-address .address-box ul li:not(:last-child) {
    margin-bottom: 8px;
  }
}
.privacy-policy ul.wp-block-list{
  list-style: inherit;
  margin-left: 20px;
}
.privacy-policy ul.wp-block-list li{
  line-height: 31px;
}
.privacy-policy h4{
  font-weight: 500;
}

#main-footer .footer-contacts ul  li {
    line-height: normal;
    margin: 0 0 15px 0!important;
}
#main-footer .footer-contacts{
  margin-bottom: 23px;
}

.woocommerce .edit-profile form .form-row {
  padding: 3px !important;
  margin: 0 0 6px !important;
}

#cart-table tbody tr td.bic_product_details{
  padding-right: 40px;
}

#cart-table tbody tr td.product-total small.tax_label, .woocommerce-form-coupon-toggle .woocommerce-info{
  display: none;
}
.woocommerce-form-login-toggle .bic-login-toggle{
  padding-bottom: 20px;
}
.woocommerce-form-login-toggle .bic-login-toggle span{
  padding-left: 5px;
}

.woocommerce .woocommerce-order .woocommerce-thankyou-order-details li{
  width: 100%;
}

small.includes_tax .woocommerce-Price-amount.amount{
  font-weight: bold;
}

strong.bic-payment-method{
  word-break: keep-all;
}

.woocommerce-ResetPassword.lost_reset_password p .password-input span.show-password-input{
  display: flex;
  margin: -6px 0 0px 0;
  padding: 0 5px 0 5px;
}