.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1060;
  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 {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  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: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  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: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  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;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  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;
  }
}
.nav {
  display: flex;
  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;
  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 {
    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 {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  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;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

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

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.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 /* rtl:ignore */;
  left: 0 /* rtl:ignore */;
}

.dropdown-menu-end {
  --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
  right: 0 /* rtl:ignore */;
  left: auto /* rtl:ignore */;
}

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

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

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

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

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

  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0 /* rtl:ignore */;
    left: auto /* rtl:ignore */;
  }
}
.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, .dropdown-item.nice-select.open {
  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, .dropdown-menu-dark .dropdown-item.nice-select.open {
  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;
}

/*!
 * Bootstrap Grid v5.0.1 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.5rem);
  padding-left: var(--bs-gutter-x, 0.5rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}
.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

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

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

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

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

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

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

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

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

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

.col-2 {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

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

.col-4 {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.6666666667%;
}

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

.col-7 {
  flex: 0 0 auto;
  width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.6666666667%;
}

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

.col-10 {
  flex: 0 0 auto;
  width: 83.3333333333%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }

  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

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

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

  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

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

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

  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

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

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

  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }

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

  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }

  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }

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

  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }

  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }

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

  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }

  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }

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

  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }

  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }

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

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

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

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

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

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

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

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

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

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

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

  .g-sm-5,
.gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }

  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

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

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

  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

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

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

  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

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

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

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-md-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }

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

  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.3333333333%;
  }

  .offset-md-2 {
    margin-left: 16.6666666667%;
  }

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

  .offset-md-4 {
    margin-left: 33.3333333333%;
  }

  .offset-md-5 {
    margin-left: 41.6666666667%;
  }

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

  .offset-md-7 {
    margin-left: 58.3333333333%;
  }

  .offset-md-8 {
    margin-left: 66.6666666667%;
  }

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

  .offset-md-10 {
    margin-left: 83.3333333333%;
  }

  .offset-md-11 {
    margin-left: 91.6666666667%;
  }

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

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

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

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

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

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

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

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

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

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

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

  .g-md-5,
.gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }

  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

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

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

  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

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

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

  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

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

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

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }

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

  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }

  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }

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

  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }

  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }

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

  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }

  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }

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

  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }

  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }

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

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

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

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

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

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

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

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

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

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

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

  .g-lg-5,
.gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }

  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

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

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

  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

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

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

  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

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

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

  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }

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

  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }

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

  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }

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

  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }

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

  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }

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

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

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

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

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

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

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

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

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

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

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

  .g-xl-5,
.gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }

  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

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

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

  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

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

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

  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

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

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

  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }

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

  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }

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

  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }

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

  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }

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

  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.order-first {
  order: -1 !important;
}

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

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }

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

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

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

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

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

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

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

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

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

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

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

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

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

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

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .order-sm-first {
    order: -1 !important;
  }

  .order-sm-0 {
    order: 0 !important;
  }

  .order-sm-1 {
    order: 1 !important;
  }

  .order-sm-2 {
    order: 2 !important;
  }

  .order-sm-3 {
    order: 3 !important;
  }

  .order-sm-4 {
    order: 4 !important;
  }

  .order-sm-5 {
    order: 5 !important;
  }

  .order-sm-last {
    order: 6 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .ps-sm-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }

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

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

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

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

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

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

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

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

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

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

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

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

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

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

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .order-md-first {
    order: -1 !important;
  }

  .order-md-0 {
    order: 0 !important;
  }

  .order-md-1 {
    order: 1 !important;
  }

  .order-md-2 {
    order: 2 !important;
  }

  .order-md-3 {
    order: 3 !important;
  }

  .order-md-4 {
    order: 4 !important;
  }

  .order-md-5 {
    order: 5 !important;
  }

  .order-md-last {
    order: 6 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .ps-md-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important;
  }

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

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

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

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

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

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

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

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

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

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

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

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

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

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

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .order-lg-first {
    order: -1 !important;
  }

  .order-lg-0 {
    order: 0 !important;
  }

  .order-lg-1 {
    order: 1 !important;
  }

  .order-lg-2 {
    order: 2 !important;
  }

  .order-lg-3 {
    order: 3 !important;
  }

  .order-lg-4 {
    order: 4 !important;
  }

  .order-lg-5 {
    order: 5 !important;
  }

  .order-lg-last {
    order: 6 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .ps-lg-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }

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

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

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

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

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

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

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

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

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

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

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

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

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

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

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .order-xl-first {
    order: -1 !important;
  }

  .order-xl-0 {
    order: 0 !important;
  }

  .order-xl-1 {
    order: 1 !important;
  }

  .order-xl-2 {
    order: 2 !important;
  }

  .order-xl-3 {
    order: 3 !important;
  }

  .order-xl-4 {
    order: 4 !important;
  }

  .order-xl-5 {
    order: 5 !important;
  }

  .order-xl-last {
    order: 6 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .ps-xl-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-inline {
    display: inline !important;
  }

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

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

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

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

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

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

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

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

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

  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }

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

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

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

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

  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }

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

  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    justify-content: center !important;
  }

  .justify-content-xxl-between {
    justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    justify-content: space-around !important;
  }

  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xxl-start {
    align-items: flex-start !important;
  }

  .align-items-xxl-end {
    align-items: flex-end !important;
  }

  .align-items-xxl-center {
    align-items: center !important;
  }

  .align-items-xxl-baseline {
    align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    align-items: stretch !important;
  }

  .align-content-xxl-start {
    align-content: flex-start !important;
  }

  .align-content-xxl-end {
    align-content: flex-end !important;
  }

  .align-content-xxl-center {
    align-content: center !important;
  }

  .align-content-xxl-between {
    align-content: space-between !important;
  }

  .align-content-xxl-around {
    align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    align-content: stretch !important;
  }

  .align-self-xxl-auto {
    align-self: auto !important;
  }

  .align-self-xxl-start {
    align-self: flex-start !important;
  }

  .align-self-xxl-end {
    align-self: flex-end !important;
  }

  .align-self-xxl-center {
    align-self: center !important;
  }

  .align-self-xxl-baseline {
    align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    align-self: stretch !important;
  }

  .order-xxl-first {
    order: -1 !important;
  }

  .order-xxl-0 {
    order: 0 !important;
  }

  .order-xxl-1 {
    order: 1 !important;
  }

  .order-xxl-2 {
    order: 2 !important;
  }

  .order-xxl-3 {
    order: 3 !important;
  }

  .order-xxl-4 {
    order: 4 !important;
  }

  .order-xxl-5 {
    order: 5 !important;
  }

  .order-xxl-last {
    order: 6 !important;
  }

  .m-xxl-0 {
    margin: 0 !important;
  }

  .m-xxl-1 {
    margin: 0.25rem !important;
  }

  .m-xxl-2 {
    margin: 0.5rem !important;
  }

  .m-xxl-3 {
    margin: 1rem !important;
  }

  .m-xxl-4 {
    margin: 1.5rem !important;
  }

  .m-xxl-5 {
    margin: 3rem !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xxl-3 {
    margin-top: 1rem !important;
  }

  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xxl-5 {
    margin-top: 3rem !important;
  }

  .mt-xxl-auto {
    margin-top: auto !important;
  }

  .me-xxl-0 {
    margin-right: 0 !important;
  }

  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xxl-3 {
    margin-right: 1rem !important;
  }

  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xxl-5 {
    margin-right: 3rem !important;
  }

  .me-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xxl-auto {
    margin-bottom: auto !important;
  }

  .ms-xxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xxl-3 {
    margin-left: 1rem !important;
  }

  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xxl-5 {
    margin-left: 3rem !important;
  }

  .ms-xxl-auto {
    margin-left: auto !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .p-xxl-1 {
    padding: 0.25rem !important;
  }

  .p-xxl-2 {
    padding: 0.5rem !important;
  }

  .p-xxl-3 {
    padding: 1rem !important;
  }

  .p-xxl-4 {
    padding: 1.5rem !important;
  }

  .p-xxl-5 {
    padding: 3rem !important;
  }

  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxl-5 {
    padding-top: 3rem !important;
  }

  .pe-xxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xxl-3 {
    padding-right: 1rem !important;
  }

  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xxl-5 {
    padding-right: 3rem !important;
  }

  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xxl-3 {
    padding-left: 1rem !important;
  }

  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-grid {
    display: grid !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }

  .d-print-none {
    display: none !important;
  }
}
/* Helpers */
/*Fonts*/
/*Transitions*/
/*Image fit*/
/*Box Shadow*/
/*Multiply*/
/*Render frame*/
@keyframes fadedown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/*Mobile*/
/*Normal tablets (including ipad)*/
/*Tablets with retina displays (including ipad pro)*/
/* Responsive Mixins */
/* Base */
button,
textarea,
input,
select,
.bootstrap-select .dropdown-toggle:focus {
  -moz-outline-style: none;
  outline: none;
  border: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
button:focus,
textarea:focus,
input:focus,
select:focus,
.bootstrap-select .dropdown-toggle:focus:focus {
  -moz-outline-style: none;
  outline: none;
  box-shadow: none;
}

input::-ms-clear {
  display: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
input.nice-select.open:-webkit-autofill {
  background-color: white;
}

/* iOS hack */
textarea,
input[type=text],
input[type=button],
input[type=submit],
input[type=date] {
  -webkit-appearance: none;
  border-radius: 0;
}
textarea:-webkit-autofill, textarea:-webkit-autofill:hover, textarea:-webkit-autofill:focus, textarea:-webkit-autofill:active, textarea.nice-select.open:-webkit-autofill,
input[type=text]:-webkit-autofill,
input[type=text]:-webkit-autofill:hover,
input[type=text]:-webkit-autofill:focus,
input[type=text]:-webkit-autofill:active,
input[type=button]:-webkit-autofill,
input[type=button]:-webkit-autofill:hover,
input[type=button]:-webkit-autofill:focus,
input[type=button]:-webkit-autofill:active,
input[type=submit]:-webkit-autofill,
input[type=submit]:-webkit-autofill:hover,
input[type=submit]:-webkit-autofill:focus,
input[type=submit]:-webkit-autofill:active,
input[type=date]:-webkit-autofill,
input[type=date]:-webkit-autofill:hover,
input[type=date]:-webkit-autofill:focus,
input[type=date]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

input[type=text], input[type=tel], input[type=email], input[type=password] {
  font-weight: "DM Sans";
  font-size: 15px;
  line-height: 15px;
  color: #3A3B32;
  border-color: #30236C;
  border-radius: 5px;
  padding: 10px;
}
@media (min-width: 1200px) {
  input[type=text], input[type=tel], input[type=email], input[type=password] {
    font-size: 18px;
    line-height: 18px;
    padding: 17px 10px;
  }
}
input[type=text]:hover, input[type=text]:focus, input[type=tel]:hover, input[type=tel]:focus, input[type=email]:hover, input[type=email]:focus, input[type=password]:hover, input[type=password]:focus {
  border: 1px solid #30236C;
}
input[type=text].wpcf7-not-valid, input[type=tel].wpcf7-not-valid, input[type=email].wpcf7-not-valid, input[type=password].wpcf7-not-valid {
  border: 1px solid #E1251B;
}
input[type=submit] {
  width: 100%;
  color: transparent;
  background: none;
  border: none;
}
input.elementor-search-form__input {
  text-align: right;
}
input.elementor-search-form__input::placeholder {
  opacity: 1;
}

textarea {
  font-weight: "DM Sans";
  font-size: 15px;
  line-height: 15px;
  color: #3A3B32;
  border: 1px solid #30236C;
  border-radius: 5px;
  padding: 10px 15px;
}
@media (min-width: 1200px) {
  textarea {
    font-size: 18px;
    line-height: 18px;
    padding: 15px 20px;
  }
}
textarea:hover, textarea:focus {
  border: 1px solid #30236C;
}
textarea.wpcf7-not-valid {
  border: 1px solid #E1251B;
}

label {
  font-size: 15px;
  line-height: 15px;
  color: #3A3B32;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  font-family: "Open Sans";
}
@media (min-width: 1200px) {
  label {
    font-size: 20px;
    line-height: 20px;
  }
}
label .wpcf7-form-control-wrap {
  display: block;
  margin-top: 10px;
  width: 100%;
}
@media (min-width: 1200px) {
  label .wpcf7-form-control-wrap {
    margin-top: 16px;
  }
}
label .wpcf7-not-valid-tip {
  font-size: 12px;
  line-height: 12px;
  margin-top: 10px;
}
@media (min-width: 1200px) {
  label .wpcf7-not-valid-tip {
    font-size: 16px;
    line-height: 16px;
  }
}
label .asterix {
  color: #E1251B;
  font-weight: 700;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  border: none;
  border-top: 2px solid #E1251B;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  color: #E1251B;
  background: #FBE3E1;
  padding: 20px 20px 18px;
}
@media (min-width: 1200px) {
  .wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    font-size: 18px;
    line-height: 24px;
    padding: 30px 26px 24px;
  }
}

.checkbox {
  position: relative;
}

input[type=checkbox]:checked, input[type=checkbox]:not(:checked) {
  position: absolute;
  top: 3px;
  left: 0;
  width: 8px;
  z-index: 1;
  height: 8px;
  opacity: 0;
  cursor: pointer;
}
input[type=checkbox]:checked + span, input[type=checkbox]:not(:checked) + span {
  cursor: pointer;
  display: inline-block;
  font-family: "Open Sans";
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  color: #76777A;
  letter-spacing: normal;
  position: relative;
  padding-left: 35px;
}
input[type=checkbox]:checked + span:before, input[type=checkbox]:not(:checked) + span:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 1px;
  width: 20px;
  height: 20px;
  border: 2px solid #3A3B32;
  background: none;
  border-radius: 5px;
}
input[type=checkbox]:checked + span:after, input[type=checkbox]:not(:checked) + span:after {
  content: "";
  width: 14px;
  height: 14px;
  background: #30236C;
  border-radius: 3px;
  position: absolute;
  top: 4px;
  left: 3px;
  transition: all 0.2s ease;
}
input[type=checkbox]:not(:checked) + span:after {
  opacity: 0;
  transform: scale(0);
}
input[type=checkbox]:checked + span:after {
  opacity: 1;
  transform: scale(1);
}
input[type=checkbox]:checked + span:before {
  opacity: 1;
}

.select2-dropdown {
  border-color: #30236C;
}

.select2-results__option {
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #3A3B32;
  padding: 8px 10px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option--highlighted[data-selected] {
  background: #30236C;
  color: #ffffff;
}

.select2-container--default .select2-results__option[aria-selected=true], .select2-container--default .select2-results__option[data-selected=true] {
  background: #30236C;
  color: #ffffff;
}

.eicon-chevron-left:before {
  content: "";
  display: block;
  width: 9px;
  height: 14px;
  background: url("../../src/images/sprites/svg/arrow-left.svg");
  background-size: 100%;
}
@media only screen and (min-width: 1025px) {
  .eicon-chevron-left:before {
    width: 13px;
    height: 21px;
  }
}
.retail-hp-slider .eicon-chevron-left:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}

.eicon-chevron-right:before {
  content: "";
  display: block;
  width: 9px;
  height: 14px;
  background: url("../../src/images/sprites/svg/arrow-right.svg");
  background-size: 100%;
}
@media only screen and (min-width: 1025px) {
  .eicon-chevron-right:before {
    width: 13px;
    height: 21px;
  }
}
.retail-hp-slider .eicon-chevron-right:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}

.eicon-bag-medium:before {
  content: "";
  width: 15px;
  height: 16px;
  display: inline-block;
  background: url("../../src/images/sprites/svg/cart.svg");
}

body .elementor-menu-cart__toggle .elementor-menu-cart__toggle_button {
  display: flex;
  flex-direction: row;
}
body .elementor-menu-cart__toggle .elementor-menu-cart__toggle_button .elementor-button-icon {
  margin-right: 15px;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

svg {
  vertical-align: baseline;
  display: block;
}

picture {
  display: block;
}

html {
  margin-top: 0 !important;
}

body {
  font-family: "DM Sans";
}
body .elementor-column-gap-default > .elementor-column > .elementor-element-populated {
  padding: 0;
}
body .elementor-widget:not(:last-child) {
  margin-bottom: 0;
}
body.elementor-default:not([class*=elementor-page-]) .site-main {
  max-width: 100%;
  width: 100%;
  padding: 0;
}
body.page {
  margin-top: 80px;
}
@media only screen and (min-width: 1025px) {
  body.page {
    margin-top: 0;
  }
}
body.woocommerce-page {
  margin-top: 0;
}
body.site-retail.home {
  margin-top: 0;
}
body.site-retail {
  margin-top: 0;
}
body:not(.rtl) .elementor .elementor-widget-wrap .elementor-search-form .elementor-search-form__icon {
  padding-left: 0;
}
body:not(.home) .search-retail .elementor-search-form .elementor-search-form__container .elementor-search-form__icon i:before {
  background: url("../../src/images/sprites/svg/picto-search.svg");
}
body .elementor-search-form__container:not(.elementor-search-form--full-screen) {
  background: none;
}

@media only screen and (max-width: 1024px) {
  .has-banner {
    margin-top: 70px;
  }
}

.open-menu {
  overflow: hidden;
}

ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.page-content {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 20px;
}
.site-retail .page-content > .woocommerce {
  max-width: 1500px;
  padding: 0 20px;
  margin: 0 auto;
}
.site-retail .page-content {
  max-width: 100%;
  padding: 0;
}
.privacy-policy .page-content, .terms-conditions .page-content {
  max-width: 1480px;
  margin: 0 auto 50px;
  padding: 0 20px;
}
.search .page-content, .error404 .page-content {
  max-width: 1480px;
  margin: 30px auto 50px;
  padding: 0 20px;
}

@media only screen and (max-width: 1024px) {
  .search-retail {
    opacity: 0;
    visibility: hidden;
    width: 0;
    display: none;
    transition: all 0.25s linear;
  }
}
.open-menu .search-retail {
  position: fixed;
  bottom: 100px;
  left: 0;
  opacity: 1;
  visibility: visible;
  width: 100%;
  display: block;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .open-menu .search-retail {
    bottom: 30%;
  }
}
@media only screen and (max-width: 767px) {
  .open-menu .search-retail {
    bottom: 10%;
  }
}
@media only screen and (max-width: 1024px) {
  .search-retail .elementor-search-form .elementor-search-form__container {
    border-color: #494c4f;
  }
}
.search-retail .elementor-search-form .elementor-search-form__container:not(.home .search-retail .elementor-search-form .elementor-search-form__container) {
  border: none;
  align-items: flex-end;
}
.search-retail .elementor-search-form .elementor-search-form__container .elementor-search-form__icon {
  opacity: 1;
}
.search-retail .elementor-search-form .elementor-search-form__container .elementor-search-form__icon i {
  position: relative;
  width: 22px;
  height: 22px;
}
.search-retail .elementor-search-form .elementor-search-form__container .elementor-search-form__icon i:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  display: inline-flex;
  width: 17px;
  height: 17px;
  background: url("../../src/images/sprites/svg/search.svg");
}
@media only screen and (max-width: 1024px) {
  .search-retail .elementor-search-form .elementor-search-form__container .elementor-search-form__icon i:before {
    background: url("../../src/images/sprites/svg/search-grey.svg");
  }
}
.search-retail .elementor-search-form .elementor-search-form__container .elementor-search-form__input {
  border-bottom: 1px solid #ffffff;
  border-radius: 0;
  padding: 0;
}
@media only screen and (max-width: 1024px) {
  .search-retail .elementor-search-form .elementor-search-form__container .elementor-search-form__input {
    color: #494c4f;
    border-bottom: 1px solid #E1251B;
  }
}
.search-retail .elementor-search-form .elementor-search-form__container .elementor-search-form__input:not(.home .search-retail .elementor-search-form .elementor-search-form__container .elementor-search-form__input) {
  color: #76777A;
  border-bottom: 1px solid #E1251B;
  padding: 0;
  border-radius: 0;
}

@font-face {
  font-family: "DM Sans";
  src: url("../../fonts/DM Sans Regular.eot");
  src: url("../../fonts/DM Sans Regular.eot?#iefix") format("embedded-opentype"), url("../../fonts/DM Sans Regular.woff2") format("woff2"), url("../../fonts/DM Sans Regular.woff") format("woff"), url("../../fonts/DM Sans Regular.svg#DM Sans Regular") format("svg");
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-2212;
}
@font-face {
  font-family: "Open Sans";
  src: url("../../fonts/Open Sans Regular.eot");
  src: url("../../fonts/Open Sans Regular.eot?#iefix") format("embedded-opentype"), url("../../fonts/Open Sans Regular.woff2") format("woff2"), url("../../fonts/Open Sans Regular.woff") format("woff"), url("../../fonts/Open Sans Regular.svg#Open Sans Regular") format("svg");
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-02DC;
}
/* Components */
.container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
  word-wrap: break-word;
}

.overflow-hidden {
  overflow: hidden;
  /*Ipad fix*/
}
.overflow-hidden.ios {
  position: fixed;
  width: 100%;
}

.svg-graphic {
  transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
}

.sign-in {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 4px;
}
@media (max-width: 767.98px) {
  .sign-in {
    justify-content: center;
  }
}
.sign-in:before {
  content: "";
  width: 17px;
  height: 15px;
  display: inline-flex;
  background: url("../../src/images/sprites/svg/account.svg") no-repeat 0 0;
  margin-right: 4px;
  flex-shrink: 0;
}
.logged-in .sign-in:before {
  width: 34px;
  height: 34px;
  background: url("../../src/images/sprites/svg/account-picto.svg") no-repeat 0 0;
}
.sign-in a {
  font-family: "DM Sans";
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  color: #76777A;
  margin: 0 5px;
}
.sign-in a:hover {
  color: #30236C;
}
.logged-in .sign-in a {
  color: #1D1D1D;
}
.logged-in .sign-in a:hover {
  color: #30236C;
}
.sign-in:last-child:before {
  display: none;
}
.logged-in .sign-in:last-child:before {
  display: block;
  width: 34px;
  height: 34px;
  background: url("../../src/images/sprites/svg/account-picto.svg") no-repeat 0 0;
}

.login-section .elementor-shortcode {
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  .login-section .elementor-shortcode {
    justify-content: center;
  }
}

.shop-list-cat .product-categories {
  font-family: "DM Sans";
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  color: #30236C;
  list-style: none;
  position: relative;
  cursor: pointer;
}
.shop-list-cat .product-categories:before {
  content: "+";
  position: absolute;
  top: 0px;
  right: 5px;
  font-size: 20px;
  line-height: 20px;
  color: #30236C;
  z-index: 2;
}
.shop-list-cat .product-categories:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #EFEFEF;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.shop-list-cat .open .product-categories:before {
  content: "-";
  top: 1px;
  right: 6px;
}
.shop-list-cat .parent {
  margin-top: 20px;
}
.shop-list-cat .parent > li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.shop-list-cat .parent .cat-item a {
  font-family: "DM Sans";
  font-size: 16px;
  line-height: 29px;
  font-weight: 400;
  color: #3A3B32;
}
.shop-list-cat .parent .cat-item a:hover {
  color: #30236C;
}
.shop-list-cat .parent .cat-item.open .icon:before {
  content: "-";
  color: #30236C;
}
.shop-list-cat .parent .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 10px;
  height: 10px;
  margin-right: 7px;
  cursor: pointer;
}
.shop-list-cat .parent .icon:before {
  content: "+";
  display: inline-block;
  font-size: 20px;
  line-height: 20px;
  font-weight: bold;
  color: #E1251B;
  z-index: 2;
}
.shop-list-cat .parent .current-cat > a {
  color: #30236C;
  font-weight: 700;
}
.shop-list-cat .children {
  margin: 0 2px;
  width: 100%;
}
.shop-list-cat .children .cat-item {
  margin-bottom: 3px;
}
.shop-list-cat .children .cat-item a {
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 29px;
  font-weight: 400;
  color: #3A3B32;
  padding: 1px 11px;
}
.shop-list-cat .children .cat-item a:hover {
  color: #30236C;
}
.shop-list-cat .children .cat-item.current-cat a {
  color: #E1251B;
  font-weight: 500;
  background: #E6E4ED;
  border-radius: 3px;
}

.my-account .woocommerce {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
@media (min-width: 992px) {
  .my-account .woocommerce {
    flex-direction: row;
  }
}
.my-account .woocommerce .woocommerce-notices-wrapper {
  width: 100%;
}
.my-account .woocommerce p {
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #3A3B32;
}
@media (min-width: 1200px) {
  .my-account .woocommerce p {
    font-size: 18px;
    line-height: 26px;
  }
}
.my-account .woocommerce .woocommerce-MyAccount-navigation {
  width: 100%;
  margin-top: 40px;
}
@media (min-width: 992px) {
  .my-account .woocommerce .woocommerce-MyAccount-navigation {
    margin-top: 95px;
    width: 21%;
  }
}
.my-account .woocommerce .woocommerce-MyAccount-navigation li {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .my-account .woocommerce .woocommerce-MyAccount-navigation li {
    margin-bottom: 45px;
  }
}
.my-account .woocommerce .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link--downloads {
  display: none;
}
.my-account .woocommerce .woocommerce-MyAccount-navigation a {
  font-family: "DM Sans";
  font-size: 18px;
  line-height: 18px;
  font-weight: 600;
  color: #1D1D1D;
}
@media (min-width: 992px) {
  .my-account .woocommerce .woocommerce-MyAccount-navigation a {
    font-size: 20px;
    line-height: 20px;
  }
}
.my-account .woocommerce .woocommerce-MyAccount-navigation .is-active a {
  color: #30236C;
  text-transform: uppercase;
  border-bottom: 2px solid #E1251B;
}
.my-account .woocommerce .woocommerce-MyAccount-content {
  width: 100%;
  background: #FAFAFA;
  padding: 20px 0;
}
@media (min-width: 992px) {
  .my-account .woocommerce .woocommerce-MyAccount-content {
    width: 79%;
    padding: 85px 43px 70px;
    min-height: 615px;
  }
}
.my-account .woocommerce .woocommerce-MyAccount-content p {
  font-family: "DM Sans";
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #343434;
  padding: 0 15px;
}
@media (min-width: 992px) {
  .my-account .woocommerce .woocommerce-MyAccount-content p {
    font-size: 20px;
    line-height: 27px;
    padding: 0;
  }
}
.my-account .woocommerce .woocommerce-MyAccount-content p strong {
  font-weight: 700;
}
.my-account .woocommerce .woocommerce-MyAccount-content p a {
  color: #343434;
  text-decoration: underline !important;
}
.my-account .woocommerce .woocommerce-MyAccount-content p a:hover {
  color: #30236C;
}
.my-account .woocommerce .woocommerce-MyAccount-content .account-orders-table {
  border: none;
  text-align: center;
}
.my-account .woocommerce .woocommerce-MyAccount-content .account-orders-table thead {
  border: none;
}
.my-account .woocommerce .woocommerce-MyAccount-content .account-orders-table thead th {
  font-family: "DM Sans";
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  color: #343434;
  border: none;
  border-bottom: 1px solid #E1E1E1;
}
.my-account .woocommerce .woocommerce-MyAccount-content .account-orders-table td {
  border: none;
  background: none;
  font-family: "DM Sans";
  font-size: 18px;
  line-height: 40px;
  font-weight: 400;
  color: #343434;
  padding: 21px 10px;
}
.my-account .woocommerce .woocommerce-MyAccount-content .account-orders-table td a {
  color: #30236C;
}
.my-account .woocommerce .woocommerce-MyAccount-content .account-orders-table td .view {
  font-family: "DM Sans";
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #ffffff;
  background: #30236C;
  padding: 10px 30px;
}
@media (min-width: 992px) {
  .my-account .woocommerce .woocommerce-MyAccount-content .account-orders-table td .view {
    font-size: 18px;
    line-height: 18px;
    padding: 13px 46px;
  }
}
.my-account .woocommerce .woocommerce-MyAccount-content .account-orders-table td .view:hover {
  background: #E1251B;
}
.my-account .woocommerce .woocommerce-MyAccount-content .woocommerce-Address .title {
  padding: 11px 17px;
  background: #E2E0E9;
  border-radius: 0;
  position: relative;
}
@media (min-width: 992px) {
  .my-account .woocommerce .woocommerce-MyAccount-content .woocommerce-Address .title {
    border-radius: 5px 0 0 0;
  }
}
.my-account .woocommerce .woocommerce-MyAccount-content .woocommerce-Address .title h3 {
  font-family: "Open Sans";
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  color: #343434;
  text-transform: uppercase;
  margin: 0;
}
@media (min-width: 992px) {
  .my-account .woocommerce .woocommerce-MyAccount-content .woocommerce-Address .title h3 {
    font-size: 30px;
    line-height: 30px;
  }
}
.my-account .woocommerce .woocommerce-MyAccount-content .woocommerce-Address .title .edit {
  font-family: "Open Sans";
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
  color: #30236C;
  position: absolute;
  top: 75px;
  left: 17px;
  border-bottom: 1px solid #30236C;
}
@media (min-width: 992px) {
  .my-account .woocommerce .woocommerce-MyAccount-content .woocommerce-Address .title .edit {
    font-size: 20px;
    line-height: 20px;
    top: 100px;
  }
}
.my-account .woocommerce .woocommerce-MyAccount-content .woocommerce-Address address {
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: #1D1D1D;
  font-style: italic;
  margin-top: 60px;
  padding: 0 17px;
}
@media (min-width: 992px) {
  .my-account .woocommerce .woocommerce-MyAccount-content .woocommerce-Address address {
    margin-top: 78px;
    font-size: 20px;
    line-height: 39px;
  }
}
.my-account .woocommerce .woocommerce-MyAccount-content .woocommerce-customer-details address {
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: #343434;
}
.my-account .woocommerce .woocommerce-MyAccount-content .woocommerce-customer-details p {
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: #343434;
  margin-left: 10px;
}
@media (min-width: 992px) {
  .my-account .woocommerce .woocommerce-MyAccount-content .woocommerce-customer-details p {
    margin-left: 25px;
  }
}
.my-account .woocommerce .woocommerce-MyAccount-content .woocommerce-address-fields .button {
  font-family: "DM Sans";
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #ffffff;
  background: #30236C;
  padding: 12px 20px;
  margin-top: 15px;
}
@media (min-width: 992px) {
  .my-account .woocommerce .woocommerce-MyAccount-content .woocommerce-address-fields .button {
    font-size: 18px;
    line-height: 18px;
    padding: 13px 30px;
  }
}
.my-account .woocommerce .woocommerce-MyAccount-content .woocommerce-address-fields .button:hover {
  background: #E1251B;
}
.my-account .woocommerce .u-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.my-account .woocommerce .u-columns > div {
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
}
@media (min-width: 992px) {
  .my-account .woocommerce .u-columns > div {
    flex: 0 0 50%;
    max-width: 50%;
    width: 50%;
  }
}
.my-account .woocommerce .u-columns > div h2 {
  font-family: "DM Sans";
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  color: #343434;
  padding-bottom: 15px;
  margin: 0;
  border-bottom: 1px solid #E1E1E1;
}
@media (min-width: 992px) {
  .my-account .woocommerce .u-columns > div h2 {
    font-size: 30px;
    line-height: 30px;
    padding-bottom: 22px;
  }
}
.my-account .woocommerce .u-columns .col-1 {
  margin-bottom: 60px;
}
@media (min-width: 992px) {
  .my-account .woocommerce .u-columns .col-1 {
    padding: 0 45px 0 0;
    margin: 63px 0 0;
  }
}
.my-account .woocommerce .u-columns .col-2 {
  padding: 30px 20px;
  background: #FAFAFA;
}
@media (min-width: 992px) {
  .my-account .woocommerce .u-columns .col-2 {
    padding: 63px 38px 43px;
  }
}
.my-account .woocommerce .u-columns .col-2 .title {
  border-radius: 0;
}
@media (min-width: 992px) {
  .my-account .woocommerce .u-columns .col-2 .title {
    border-radius: 0 5px 0 0;
  }
}
.my-account .woocommerce .u-columns .woocommerce-Address {
  padding: 0;
  margin: 0 0 30px;
}
@media (min-width: 992px) {
  .my-account .woocommerce .u-columns .woocommerce-Address {
    margin: 0;
  }
}
.my-account .woocommerce .u-columns .login {
  margin: 18px 0 0;
  padding: 0;
  border: none;
}
.my-account .woocommerce .u-columns .login .show-password-input {
  top: 11px;
  right: 10px;
}
@media (min-width: 1200px) {
  .my-account .woocommerce .u-columns .login .show-password-input {
    top: 20px;
  }
}
.my-account .woocommerce .u-columns .register {
  margin: 25px 0 0;
  padding: 0;
  border: none;
}
.my-account .woocommerce .u-columns .register p {
  font-family: "Open Sans";
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
  color: #3A3B32;
}
@media (min-width: 992px) {
  .my-account .woocommerce .u-columns .register p {
    font-size: 18px;
    line-height: 23px;
  }
}
.my-account .woocommerce .u-columns .register p a {
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #30236C;
}
@media (min-width: 992px) {
  .my-account .woocommerce .u-columns .register p a {
    font-size: 18px;
    line-height: 23px;
  }
}
.my-account .woocommerce .u-columns .register p a:hover {
  color: #E1251B;
}
.my-account .woocommerce .u-columns .woocommerce-privacy-policy-text {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .my-account .woocommerce .u-columns .woocommerce-privacy-policy-text {
    margin-bottom: 70px;
  }
}
.my-account .woocommerce .u-columns .form-row {
  padding: 0;
  margin: 0 0 20px;
}
.my-account .woocommerce .u-columns .form-row label {
  margin-bottom: 10px;
}
.my-account .woocommerce .u-columns .form-row .woocommerce-form__label-for-checkbox {
  font-family: "Open Sans";
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  color: #76777A;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 34px;
}
.my-account .woocommerce .u-columns .form-row .button {
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #ffffff;
  background: #30236C;
  padding: 13px 56px;
  border-radius: 5px;
  float: none;
  display: block;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .my-account .woocommerce .u-columns .form-row .button {
    font-size: 18px;
    line-height: 18px;
  }
}
.my-account .woocommerce .u-columns .form-row .button:hover {
  background: #E1251B;
}
.my-account .woocommerce .u-columns .lost_password {
  text-align: center;
  margin: 30px 0 0;
}
.my-account .woocommerce .u-columns .lost_password a {
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #76777A;
}
@media (min-width: 992px) {
  .my-account .woocommerce .u-columns .lost_password a {
    font-size: 20px;
    line-height: 20px;
  }
}
.my-account .woocommerce .addresses {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .my-account .woocommerce .addresses {
    margin-top: 90px;
  }
}
.my-account .woocommerce .lost_reset_password {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
.my-account .woocommerce .lost_reset_password p {
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #3A3B32;
}
@media (min-width: 992px) {
  .my-account .woocommerce .lost_reset_password p {
    font-size: 20px;
    line-height: 26px;
  }
}
.my-account .woocommerce .lost_reset_password .button {
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #ffffff;
  background: #30236C;
  padding: 13px 56px;
  border-radius: 5px;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .my-account .woocommerce .lost_reset_password .button {
    font-size: 18px;
    line-height: 18px;
  }
}
.my-account .woocommerce .lost_reset_password .button:hover {
  background: #E1251B;
}
.my-account .woocommerce .woocommerce-message {
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  width: 100%;
}
.my-account .woocommerce .woocommerce-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 576px) {
  .my-account .woocommerce .woocommerce-info {
    display: block;
  }
}
.my-account .woocommerce .woocommerce-info .button {
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #ffffff;
  background: #30236C;
  padding: 13px 20px;
  border-radius: 5px;
  order: 3;
  margin-top: 20px;
}
@media (min-width: 576px) {
  .my-account .woocommerce .woocommerce-info .button {
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .my-account .woocommerce .woocommerce-info .button {
    font-size: 18px;
    line-height: 18px;
  }
}
.my-account .woocommerce .edit-account .form-row input + span em {
  display: inline-block;
  margin-top: 4px;
}
.my-account .woocommerce .edit-account .form-row.form-row-first {
  width: 100%;
}
@media (min-width: 576px) {
  .my-account .woocommerce .edit-account .form-row.form-row-first {
    width: 47%;
  }
}
.my-account .woocommerce .edit-account .form-row.form-row-last {
  width: 100%;
}
@media (min-width: 576px) {
  .my-account .woocommerce .edit-account .form-row.form-row-last {
    width: 47%;
  }
}
.my-account .woocommerce .edit-account fieldset {
  padding: 25px 0 35px 0;
  margin: 55px 15px 35px;
  border: none;
  background: #E2E0EA;
  border-radius: 5px;
  position: relative;
}
@media (min-width: 768px) {
  .my-account .woocommerce .edit-account fieldset {
    padding: 55px 43px 55px 53px;
    margin: 65px 42px 55px;
  }
}
.my-account .woocommerce .edit-account fieldset legend {
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  color: #343434;
  font-style: italic;
  position: absolute;
  top: -30px;
  left: 0;
}
@media (min-width: 992px) {
  .my-account .woocommerce .edit-account fieldset legend {
    font-size: 20px;
    line-height: 20px;
    padding-left: 0;
    margin-bottom: 5px;
    font-size: 20px;
    line-height: 20px;
    top: -38px;
    left: 36px;
  }
}
.my-account .woocommerce .edit-account fieldset .show-password-input {
  top: 11px;
  right: 10px;
}
@media (min-width: 1200px) {
  .my-account .woocommerce .edit-account fieldset .show-password-input {
    top: 20px;
  }
}
.my-account .woocommerce .edit-account .button {
  font-family: "Open Sans";
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  color: #ffffff;
  background: #30236C;
  padding: 12px 15px;
  border-radius: 5px;
}
@media (min-width: 768px) {
  .my-account .woocommerce .edit-account .button {
    margin-left: 42px;
  }
}
@media (min-width: 992px) {
  .my-account .woocommerce .edit-account .button {
    font-size: 18px;
    line-height: 18px;
    padding: 13px 20px;
  }
}
.my-account .woocommerce .edit-account .button:hover {
  background: #E1251B;
}

.woocommerce .woocommerce-MyAccount-content .woocommerce-order-details h2, .woocommerce .woocommerce-MyAccount-content .woocommerce-customer-details h2 {
  font-family: "DM Sans";
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  color: #1D1D1D;
  padding: 10px;
}
@media (min-width: 992px) {
  .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details h2, .woocommerce .woocommerce-MyAccount-content .woocommerce-customer-details h2 {
    font-size: 30px;
    line-height: 30px;
    padding: 0;
  }
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .woocommerce-table--order-details, .woocommerce .woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-table--order-details {
  border-radius: 0;
  border: none;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .woocommerce-table--order-details thead, .woocommerce .woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-table--order-details thead {
  background: #FAFAFA;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .woocommerce-table--order-details thead th, .woocommerce .woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-table--order-details thead th {
  font-family: "DM Sans";
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  color: #3A3B32;
  text-transform: uppercase;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #C9C9C9;
}
@media only screen and (max-width: 1024px) {
  .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .woocommerce-table--order-details tbody tr, .woocommerce .woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-table--order-details tbody tr {
    padding: 10px 15px;
  }
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .woocommerce-table--order-details tbody td, .woocommerce .woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-table--order-details tbody td {
  border: 1px solid #C9C9C9;
  border-top: none;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .woocommerce-table--order-details tbody td a, .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .woocommerce-table--order-details tbody td span, .woocommerce .woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-table--order-details tbody td a, .woocommerce .woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-table--order-details tbody td span {
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #76777A;
}
@media only screen and (max-width: 1024px) {
  .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .woocommerce-table--order-details tbody td a, .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .woocommerce-table--order-details tbody td span, .woocommerce .woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-table--order-details tbody td a, .woocommerce .woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-table--order-details tbody td span {
    font-size: 15px;
    line-height: 15px;
  }
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .woocommerce-table--order-details tbody td a, .woocommerce .woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-table--order-details tbody td a {
  color: #30236C;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .woocommerce-table--order-details tfoot th, .woocommerce .woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-table--order-details tfoot th {
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #76777A;
  border-top: none;
}
@media only screen and (max-width: 1024px) {
  .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .woocommerce-table--order-details tfoot th, .woocommerce .woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-table--order-details tfoot th {
    font-size: 15px;
    line-height: 15px;
  }
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .woocommerce-table--order-details tfoot td, .woocommerce .woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-table--order-details tfoot td {
  border-top: none;
}

.woocommerce-form-login .button.woocommerce-form-login__submit {
  font-family: "DM Sans";
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #ffffff;
  background: #30236C;
  padding: 12px 20px;
  margin-top: 15px;
}
@media (min-width: 992px) {
  .woocommerce-form-login .button.woocommerce-form-login__submit {
    font-size: 18px;
    line-height: 18px;
    padding: 13px 30px;
  }
}
.woocommerce-form-login .button.woocommerce-form-login__submit:hover {
  color: #ffffff;
  background: #E1251B;
}

.woocommerce-shipping-fields .shipping_address .woocommerce-shipping-fields__field-wrapper .form-row-first {
  width: 100%;
}
@media (min-width: 992px) {
  .woocommerce-shipping-fields .shipping_address .woocommerce-shipping-fields__field-wrapper .form-row-first {
    width: 47%;
  }
}
.woocommerce-shipping-fields .shipping_address .woocommerce-shipping-fields__field-wrapper .form-row-last {
  width: 100%;
}
@media (min-width: 992px) {
  .woocommerce-shipping-fields .shipping_address .woocommerce-shipping-fields__field-wrapper .form-row-last {
    width: 47%;
  }
}

.p-rel {
  position: relative;
}

.mobile {
  display: block;
}
@media (min-width: 992px) {
  .mobile {
    display: none;
  }
}

.desktop {
  display: none;
}
@media (min-width: 992px) {
  .desktop {
    display: block;
  }
}

.hp-azuma-slider .elementor-slides .swiper-slide-inner {
  padding: 0;
  max-width: 1440px;
}
.hp-azuma-slider .elementor-arrows-position-outside .swiper-container {
  width: 100%;
}

.containerbtn {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 10px;
  max-width: 1440px;
  text-align: center;
  z-index: 1;
}
@media only screen and (min-width: 767px) {
  .containerbtn {
    text-align: left;
    padding-left: 22px;
  }
}
@media (min-width: 1200px) {
  .containerbtn {
    bottom: 30px;
  }
}
.containerbtn > div {
  position: static;
  transform: none;
  margin: 0 10px;
}
@media only screen and (min-width: 1025px) {
  .containerbtn > div {
    margin: 0 30px 0 0;
  }
}

.slick-prev, .slick-next {
  background: none;
  border: none;
  font-size: 0;
  padding: 0;
  color: transparent;
  position: absolute;
  left: 0;
  right: 25px;
  bottom: 0;
  margin: 0 auto;
  z-index: 1;
}
.slick-prev:before, .slick-next:before {
  content: "";
  width: 9px;
  height: 14px;
  display: inline-block;
  background: url("../../src/images/sprites/svg/slick-prev.svg") no-repeat 0 0;
}
.slick-prev:hover, .slick-next:hover, .slick-prev:focus, .slick-next:focus {
  background: none;
  outline: none;
}
.product-slider .slick-prev, .product-slider .slick-next {
  left: 0;
  right: auto;
  border: none;
}
.product-slider .slick-prev:before, .product-slider .slick-next:before {
  content: "";
  width: 14px;
  height: 21px;
  display: inline-block;
  background: url("../../src/images/sprites/svg/slick-prev.svg") no-repeat 0 0;
  background-size: 100%;
}
.product-slider .slick-prev i, .product-slider .slick-next i {
  display: none;
}
.product-interest-slider .slick-prev, .product-interest-slider .slick-next {
  left: -30px;
  width: 20px;
}
@media (max-width: 767.98px) {
  .product-interest-slider .slick-prev, .product-interest-slider .slick-next {
    left: -5px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .product-interest-slider .slick-prev, .product-interest-slider .slick-next {
    left: -10px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .product-interest-slider .slick-prev, .product-interest-slider .slick-next {
    left: 0;
  }
}
@media (max-width: 1199.98px) {
  .client-feedback .slick-prev, .client-feedback .slick-next {
    width: 14px;
  }
}
.home.site-retail .product-interest-slider .product-slider .slick-prev:hover, .home.site-retail .product-interest-slider .product-slider .slick-next:hover {
  background: transparent !important;
}

.slick-next {
  left: 25px;
  right: 0;
}
.slick-next:before {
  background: url("../../src/images/sprites/svg/slick-next.svg") no-repeat 0 0;
}
.product-slider .slick-next {
  right: 0;
  left: auto;
  border: none;
}
.product-slider .slick-next:before {
  content: "";
  width: 14px;
  height: 21px;
  display: inline-block;
  background: url("../../src/images/sprites/svg/slick-next.svg") no-repeat 0 0;
  background-size: 100%;
}
.product-slider .slick-next i {
  display: none;
}
@media (max-width: 767.98px) {
  .product-interest-slider .product-slider .slick-next {
    right: -5px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .product-interest-slider .product-slider .slick-next {
    right: -10px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .product-interest-slider .product-slider .slick-next {
    right: 0;
  }
}
.home.site-retail .product-interest-slider .product-slider .slick-next:hover {
  background: transparent !important;
}

@media only screen and (max-width: 1024px) {
  body .elementor-element .elementor-container .elementor-element .elementor-swiper .elementor-slides .swiper-slide-bg {
    background-position: right center;
    position: relative;
  }
  body .elementor-element .elementor-container .elementor-element .elementor-swiper .elementor-slides .swiper-slide-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(228, 223, 219, 0.55);
  }
}

.retail-hp-slider .swiper-slide {
  position: relative;
}
.retail-hp-slider .swiper-slide:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}
.retail-hp-slider .swiper-slide .elementor-slide-heading, .retail-hp-slider .swiper-slide .elementor-slide-description, .retail-hp-slider .swiper-slide .elementor-button {
  position: relative;
  z-index: 2;
}
@media (max-width: 767.98px) {
  .retail-hp-slider .swiper-slide .swiper-slide-inner .swiper-slide-contents .elementor-slide-button {
    padding: 15px 20px;
  }
}
.retail-hp-slider .elementor-swiper-button-prev, .retail-hp-slider .elementor-swiper-button-next {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  left: 10px;
}
@media (min-width: 992px) {
  .retail-hp-slider .elementor-swiper-button-prev, .retail-hp-slider .elementor-swiper-button-next {
    left: 20px;
    width: 45px;
    height: 45px;
  }
}
@media (min-width: 1200px) {
  .retail-hp-slider .elementor-swiper-button-prev, .retail-hp-slider .elementor-swiper-button-next {
    left: 112px;
  }
}
.retail-hp-slider .elementor-swiper-button-next {
  left: auto;
  right: 10px;
}
@media (min-width: 992px) {
  .retail-hp-slider .elementor-swiper-button-next {
    right: 20px;
  }
}
@media (min-width: 1200px) {
  .retail-hp-slider .elementor-swiper-button-next {
    right: 112px;
  }
}

.our-brand-slider .swiper-pagination-bullets, .retail-hp-slider .swiper-pagination-bullets {
  bottom: 20px;
}
@media (min-width: 1200px) {
  .our-brand-slider .swiper-pagination-bullets, .retail-hp-slider .swiper-pagination-bullets {
    bottom: 68px;
  }
}

.our-brand-slider .swiper-pagination-bullet, .retail-hp-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #D0D0D0;
  opacity: 1;
  margin: 0 3px;
}

.our-brand-slider .swiper-pagination-bullet-active, .retail-hp-slider .swiper-pagination-bullet-active {
  background: #30236C;
}

.product-interest-slider .product-slider .slick-dots {
  bottom: -58px;
}
.product-interest-slider .product-slider .slick-dots li button {
  width: 10px;
  height: 10px;
  line-height: 10px;
  background: #D0D0D0;
  border: none;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .our-brand-slider .swiper-slide {
    padding: 0 20px;
  }
}
.our-brand-slider .swiper-slide img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
  cursor: pointer;
}
.our-brand-slider .swiper-slide img:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.our-team img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
}
.our-team img:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.pll-switcher-select li {
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  text-indent: -9999px;
}
.pll-switcher-select li:first-child:before {
  content: "";
  display: block;
  width: 38px;
  height: 26px;
  background: url("../../src/images/sprites/svg/en.svg") 0 0 no-repeat;
  flex-shrink: 0;
}
.pll-switcher-select li:last-child:before {
  content: "";
  display: block;
  width: 38px;
  height: 26px;
  background: url("../../src/images/sprites/svg/fr.svg") no-repeat 0 0;
  flex-shrink: 0;
}
.subject .pll-switcher-select li {
  text-indent: 1px;
  color: #3A3B32;
}

header .current, .sales .current {
  color: transparent;
}
:lang(en-GB) header .current, :lang(en-GB) .sales .current {
  width: 38px;
  height: 26px;
  background: url("../../src/images/sprites/svg/en.svg") 0 0 no-repeat;
}
:lang(fr-FR) header .current, :lang(fr-FR) .sales .current {
  width: 38px;
  height: 26px;
  background: url("../../src/images/sprites/svg/fr.svg") no-repeat 0 0;
}

body .retail-lang .elementor-nav-menu--dropdown {
  margin: 0;
  background: none;
}
body .retail-lang ul li img {
  width: 38px !important;
  height: 25px !important;
  margin: 0 auto;
}
body .retail-lang ul li .has-submenu {
  padding: 0;
  margin-top: 8px !important;
  border: none;
}
body .retail-lang ul li .has-submenu:hover {
  padding: 0;
  background: none;
}
body .retail-lang ul li .has-submenu:hover:after {
  display: none;
}
body .retail-lang ul li .has-submenu.highlighted {
  padding: 0;
  background: none;
}
body .retail-lang ul li .has-submenu.highlighted .sub-arrow i:before {
  transform: rotate(-180deg);
}
body .retail-lang ul li .sub-menu {
  min-width: 54px !important;
  left: -7px !important;
  margin-top: 6px !important;
  padding-bottom: 6px;
  background: #ffffff;
}
body .retail-lang ul li .sub-menu a {
  padding: 6px 8px 0;
  border: none;
}
body .retail-lang ul li .sub-menu a:hover {
  background: none;
  border: none;
  padding: 6px 8px 0;
}
body .retail-lang .sub-arrow i:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 7px;
  background: url("../../src/images/sprites/svg/puce-down.svg") no-repeat 0 0;
  opacity: 0.6;
  transition: all 0.25s linear;
}

@media (max-width: 767.98px) {
  .retail-language .elementor-widget-container {
    display: flex;
    justify-content: center;
  }
}

.language .dropdown {
  display: flex;
  align-items: center;
  justify-content: center;
}
.language .dropdown .btn {
  background: none;
  border: none;
  text-indent: -9999px;
}
.language .dropdown .btn:focus {
  outline: none;
}
.language .dropdown .dropdown-toggle {
  position: relative;
}
.language .dropdown .dropdown-toggle:after {
  margin: 0;
  border: none;
  display: block;
  position: absolute;
  top: 9px;
  right: -22px;
  width: 12px;
  height: 7px;
  background: url("../../src/images/sprites/svg/puce-down.svg") no-repeat 0 0;
  transition: all 0.25s linear;
  text-indent: 1px;
}
.language .dropdown .dropdown-toggle:after:focus {
  outline: none;
}
.language .dropdown .dropdown-toggle.show:after {
  transform: rotate(180deg);
}
.language .dropdown .dropdown-menu {
  min-width: 60px;
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
  transform: translate(2px, 37px) !important;
}
@media only screen and (max-width: 1700px) {
  .language .dropdown .dropdown-menu {
    transform: translate(1px, 37px) !important;
  }
}
@media only screen and (max-width: 1500px) {
  .language .dropdown .dropdown-menu {
    transform: translate(0, 37px) !important;
  }
}
@media only screen and (max-width: 1400px) {
  .language .dropdown .dropdown-menu {
    transform: translate(-1px, 37px) !important;
  }
}
@media (max-width: 1199.98px) {
  .language .dropdown .dropdown-menu {
    transform: translate(18px, 37px) !important;
  }
}
@media (max-width: 991.98px) {
  .language .dropdown .dropdown-menu {
    transform: translate(8px, 37px) !important;
  }
}
@media (max-width: 767.98px) {
  .language .dropdown .dropdown-menu {
    transform: none !important;
    margin: 84px auto 0 !important;
    inset: initial !important;
  }
}
.language .dropdown .dropdown-menu li {
  padding: 6px 8px;
}
.language .dropdown .dropdown-menu .dropdown-item {
  font-size: 0;
  text-indent: -9999px;
  color: transparent;
  padding: 0;
  position: relative;
}
.language .dropdown .dropdown-menu .dropdown-item:after {
  content: "";
  display: block;
  width: 38px;
  height: 26px;
  margin: 0 auto;
}
:lang(en-GB) .language .dropdown .dropdown-menu .dropdown-item:after {
  background: url("../../src/images/sprites/svg/fr.svg") 0 0 no-repeat;
}
:lang(fr-FR) .language .dropdown .dropdown-menu .dropdown-item:after {
  background: url("../../src/images/sprites/svg/en.svg") no-repeat 0 0;
}
.language .dropdown .dropdown-menu .dropdown-item:hover {
  background: none;
}
.language .dropdown .en-lang {
  width: 38px;
  height: 26px;
  background: url("../../src/images/sprites/svg/en.svg") 0 0 no-repeat;
}
.language .dropdown .fr-lang {
  width: 38px;
  height: 26px;
  background: url("../../src/images/sprites/svg/fr.svg") no-repeat 0 0;
}

.nice-select {
  border-radius: 4px;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  outline: none;
  padding: 10px 23px 10px 0;
  position: relative;
  transition: all 0.2s ease-in-out;
  user-select: none;
  white-space: nowrap;
  width: 60px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 16px;
  color: #1D1D1D;
  font-weight: 600;
  z-index: 50;
}
.open-menu .nice-select {
  z-index: 0;
}
@media (max-width: 767.98px) {
  .site-retail .sales .nice-select {
    margin: 0 auto;
  }
}
.subject .nice-select {
  width: 100%;
  height: 46px;
  border: 1px solid #30236C;
  padding: 10px 15px;
  margin-top: 16px;
  justify-content: flex-start;
  font-size: 15px;
  line-height: 15px;
  font-weight: 400;
}
@media (min-width: 1200px) {
  .subject .nice-select {
    height: 60px;
    font-size: 18px;
    line-height: 18px;
    padding: 10px 21px;
  }
}
.nice-select:after {
  content: "";
  position: absolute;
  right: 0;
  top: 3px;
  bottom: 0;
  margin: auto;
  width: 12px;
  height: 7px;
  background: url("../../src/images/sprites/svg/puce-down.svg") no-repeat 0 0;
  transition: all 0.15s ease-in-out;
}
.subject .nice-select:after {
  background: url("../../src/images/sprites/svg/puce-red.svg") no-repeat 0 0;
  right: 21px;
  height: 8px;
}
.nice-select.open:after {
  transform: rotate(-180deg);
}
.contact .nice-select.open:after, .career-form .nice-select.open:after {
  transform: rotate(0);
  opacity: 1;
}
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}
.nice-select .list {
  background-color: #ffffff;
  box-sizing: border-box;
  margin-top: 1px;
  opacity: 0;
  overflow: hidden;
  padding: 0 0 6px;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: -10px;
  width: 100%;
  transform-origin: 50% 0;
  transform: scale(0.5) translateY(30px);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
}
.subject .nice-select .list {
  left: -1px;
  padding: 10px 0;
  width: calc(100% + 2px);
}
.nice-select .option {
  padding: 6px 8px 0;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: #ffffff;
}
.nice-select .option.selected {
  color: #1D1D1D;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #ffffff;
  cursor: default;
}
.nice-select .option:last-child {
  border: none;
}
.subject .nice-select .option {
  padding: 10px 20px;
  text-align: left;
}

.orderby {
  width: 225px;
  font-family: "Open Sans";
  font-weight: 400;
  height: 30px;
  color: #30236C;
  border: 1px solid #30236C;
  justify-content: flex-start;
  padding: 10px 80px 10px 10px;
}
.orderby:after {
  width: 12px;
  height: 7px;
  background: url("../../src/images/sprites/svg/puce-red-small.svg") no-repeat 0 0;
  top: 2px;
  right: 8px;
}
.orderby .list {
  width: 225px;
  left: -40px;
  border-radius: 5px;
  border: 1px solid #D0D0D0;
  margin-top: 6px;
  text-align: left;
  padding: 13px 0 16px;
}
@media (max-width: 1199.98px) {
  .orderby .list {
    left: 0;
  }
}
.orderby .option {
  padding: 5px 18px 0;
  position: relative;
  text-align: left;
}
.orderby .option:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #D0D0D0;
  margin: 8px auto 5px;
}
.orderby .option:last-child:after {
  display: none;
}
.orderby .option:hover, .orderby .option.focus, .orderby .option.selected.focus {
  color: #E1251B;
}

.no-csspointerevents .nice-select .list {
  display: none;
}
.no-csspointerevents .nice-select.open .list {
  display: block;
}

.product {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}
.product__item {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
  margin-bottom: 16px;
}
@media (min-width: 576px) {
  .product__item {
    flex: 0 0 auto;
    width: 50%;
  }
}
@media (min-width: 992px) {
  .product__item {
    flex: 0 0 auto;
    width: 25%;
  }
}
.product.elementor {
  display: block;
  margin: 0;
  padding: 0;
}

.our-products {
  position: relative;
  overflow: hidden;
  box-shadow: 0px 12px 32px rgba(0, 0, 0, 0.0509803922);
  margin-bottom: 25px;
  border-radius: 5px;
}
.product-list .our-products {
  background: #EFEFEF;
  height: 320px;
  width: 100%;
}
@media (min-width: 768px) {
  .product-list .our-products {
    height: 377px;
  }
}
@media (min-width: 768px) {
  .product-list .our-products {
    height: 469px;
  }
}
@media (min-width: 992px) {
  .our-products {
    margin: 0;
  }
}
.product-list .our-products {
  margin: 0;
}
.our-products:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 0 0 5px 5px;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}
.product-list .our-products:after {
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
  border-radius: 5px;
}
.our-products .term-link {
  display: none;
}
.our-products:hover .hover-products {
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
}
.our-products:hover .term-link {
  display: block;
}
.our-products__image {
  height: 100%;
}
.our-products__image img {
  border-radius: 5px;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  transition: all 0.25s linear;
  object-fit: cover;
}
.our-products__items {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0 10px;
  z-index: 2;
}
.product-list .our-products__items {
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.our-products__items h3, .our-products__items h2, .our-products__items h4 {
  font-size: 22px;
  line-height: 29px;
  color: #ffffff;
  margin: 0;
}
.our-products__items h2 {
  color: #ffffff;
}

.hover-products {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  background: #ffffff;
  transition: all 0.25s linear;
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 5px;
}
.hover-products__image img {
  border-radius: 5px 5px 0 0;
  width: 100%;
  object-fit: cover;
}
.hover-products__btn {
  padding: 0 20px 20px;
}
.hover-products h4 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  padding: 15px 10px 0;
  margin: 0 0 5px;
}
.hover-products p {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  margin: 0 0 15px;
  padding: 0 20px;
}
.hover-products .more {
  display: block;
  font-size: 18px;
  line-height: 18px;
  color: #ffffff;
  background: #3E2D8B;
  border-radius: 5px;
  padding: 12px 0 14px;
}
.hover-products .more:hover {
  background: #fc6363;
}

.link-products:hover .hover-products {
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
}

.product-list {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
  margin-bottom: 50px;
}
@media (min-width: 1200px) {
  .product-list {
    margin-bottom: 90px;
  }
}
.product-list__item {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
  position: relative;
  margin-bottom: 16px;
}
@media (min-width: 576px) {
  .product-list__item {
    flex: 0 0 auto;
    width: 50%;
  }
}
@media (min-width: 992px) {
  .product-list__item {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
}
.product-list .term-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.product-list .term-link:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
  border-radius: 5px;
  transition: all 0.5s ease;
}
.product-list .term-link:hover:after {
  background: none;
}
.product-list .term-link:hover + .our-products__image img {
  transform: scale(1.1);
  border-radius: 5px;
}
.product-list .term-link:hover + .our-products__image + .our-products__items {
  display: none;
}

body .ht-products .ht-product.ht-product-action-right {
  margin: 0;
}
body .ht-products .ht-product.ht-product-action-right .ht-product-inner {
  position: relative;
  border-radius: 5px;
}
body .ht-products .ht-product.ht-product-action-right .ht-product-inner .ht-product-image-wrap {
  position: static;
}
body .ht-products .ht-product.ht-product-action-right .ht-product-inner .ht-product-action {
  transform: none;
  top: auto;
  left: 0;
  right: auto;
  bottom: 0;
  width: 100%;
}
body .ht-products .ht-product.ht-product-action-right .ht-product-inner .ht-product-action ul {
  flex-direction: row-reverse;
  justify-content: space-between;
  width: 100%;
  padding: 12px 34px 0;
  margin: 0;
  border-top: 1px solid #D0D0D0;
}
body .ht-products .ht-product.ht-product-action-right .ht-product-inner .ht-product-action ul li {
  padding: 0;
}
body .ht-products .ht-product.ht-product-action-right .ht-product-inner .ht-product-action ul li:first-child {
  display: none;
}
body .ht-products .ht-product.ht-product-action-right .ht-product-inner .ht-product-action ul .woolentor-cart span {
  display: none;
}
body .ht-products .ht-product.ht-product-action-right .ht-product-inner .ht-product-action ul .woolentor-cart .added_to_cart {
  font-family: "Open Sans";
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  color: #76777A;
}
body .ht-products .ht-product.ht-product-action-right .ht-product-inner .ht-product-action .ht-product-action-tooltip {
  font-family: "DM Sans";
  font-size: 12px;
  line-height: 12px;
  font-weight: 400;
  background: #30236C;
  margin-top: -4px;
  transform: translate(-6px, -12px);
}
body .ht-products .ht-product.ht-product-action-right .ht-product-inner .ht-product-content {
  padding: 15px 30px 50px;
}
body .ht-products .ht-product.ht-product-action-right .ht-product-inner .ht-product-content .ht-product-content-inner {
  display: flex;
  flex-direction: column;
  text-align: center;
}
body .ht-products .ht-product.ht-product-action-right .ht-product-inner .ht-product-content .ht-product-content-inner .ht-product-ratting-wrap {
  display: none;
}
body .ht-products .ht-product.ht-product-action-right .ht-product-inner .ht-product-content .ht-product-content-inner .ht-product-title {
  order: 1;
}
body .ht-products .ht-product.ht-product-action-right .ht-product-inner .ht-product-content .ht-product-content-inner .ht-product-categories {
  margin: 0 auto 23px;
  padding: 0;
  order: 2;
}
body .ht-products .ht-product.ht-product-action-right .ht-product-inner .ht-product-content .ht-product-content-inner .ht-product-price {
  justify-content: center;
  order: 3;
}
body .ht-products .ht-product.ht-product-action-right .ht-product-inner .ht-product-label-right {
  display: none;
}
body .ht-products .ht-product.ht-product-action-right .ht-product-inner .ht-product-categories:before {
  display: none;
}

.list-product {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .list-product {
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .list-product {
    margin-bottom: 150px;
  }
}
.list-product__left {
  width: 100%;
}
@media (min-width: 992px) {
  .list-product__left {
    width: 45%;
  }
}
.list-product__right {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .list-product__right {
    width: 55%;
    padding-left: 48px;
  }
}
.list-product__image {
  margin-bottom: 30px;
  border-radius: 5px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .list-product__image {
    margin: 0;
  }
}
.list-product__image img {
  border-radius: 5px;
  transition: all 0.25s linear;
}
.list-product__image:hover img {
  transform: scale(1.05);
}
.list-product__content {
  flex-grow: 1;
}
.list-product__content h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  margin: 0;
}
@media (min-width: 576px) {
  .list-product__content h3 {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (min-width: 1200px) {
  .list-product__content h3 {
    font-size: 38px;
    line-height: 50px;
  }
}
.list-product__content p {
  font-size: 14px;
  line-height: 30px;
}
@media (min-width: 1200px) {
  .list-product__content p {
    font-size: 16px;
    line-height: 32px;
  }
}
.list-product__btn {
  margin-bottom: 15px;
}
.list-product__btn a {
  font-size: 15px;
  line-height: 15px;
  color: #ffffff;
  background: #30236C;
  text-decoration: none;
  border-radius: 6px;
  padding: 16px 40px;
  display: inline-flex;
}
@media (min-width: 1200px) {
  .list-product__btn a {
    font-size: 18px;
    line-height: 18px;
    padding: 28px 82px;
  }
}
.list-product__btn a:hover {
  background: #fc6363;
}
@media (min-width: 992px) {
  .list-product:nth-child(even) {
    flex-direction: row-reverse;
  }
}
@media (min-width: 992px) {
  .list-product:nth-child(even) .list-product__right {
    padding: 0 135px 0 0;
  }
}
.list-product:last-child {
  margin-bottom: 50px;
}
@media (min-width: 1200px) {
  .list-product:last-child {
    margin-bottom: 105px;
  }
}

.wrap-title {
  display: flex;
  align-items: flex-end;
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .wrap-title {
    margin-bottom: 35px;
  }
}

.order-only-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  background: url("../../src/images/sprites/svg/order.svg") no-repeat 0 0;
  margin-left: 20px;
  flex-shrink: 0;
  background-size: 100%;
}
@media (min-width: 576px) {
  .order-only-icon {
    margin-left: 25px;
  }
}
@media (min-width: 1200px) {
  .order-only-icon {
    margin-left: 34px;
    width: 79px;
    height: 79px;
  }
}

.product-category {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
  justify-content: center;
}
@media (min-width: 576px) {
  .product-category {
    margin: 0 -10px;
  }
}
@media (min-width: 1200px) {
  .product-category {
    margin-bottom: 38px;
    padding: 0 21px;
  }
}
.product-category__list {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
  margin-bottom: 38px;
}
@media (min-width: 576px) {
  .product-category__list {
    flex: 0 0 auto;
    width: 33.3333333333%;
    padding: 0 10px;
  }
}
@media (min-width: 992px) {
  .product-category__list {
    flex: 0 0 auto;
    width: 25%;
  }
}
@media (min-width: 1200px) {
  .product-category__list {
    padding: 0 21px;
  }
}
.product-category__wrap {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.product-category__wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}
.product-category__wrap img {
  width: 100%;
  border-radius: 5px;
  transition: all 0.25s linear;
}
.product-category__wrap:hover img {
  transform: scale(1.05);
}
.product-category__wrap:hover a {
  color: #E1251B;
}
.product-category__shop {
  position: absolute;
  right: 28px;
  bottom: 35px;
  text-align: right;
  z-index: 2;
}
.product-category__shop h3 {
  font-family: "DM Sans";
  font-size: 20px;
  line-height: 29px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
}
@media (min-width: 992px) {
  .product-category__shop h3 {
    font-size: 30px;
    line-height: 39px;
  }
}
.product-category__shop a {
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: underline !important;
  transition: all 0.4s ease;
}
@media (min-width: 992px) {
  .product-category__shop a {
    font-size: 18px;
    line-height: 24px;
  }
}

.breadcrumb {
  max-width: 1480px;
  margin: 85px auto 20px;
  padding: 0 20px;
}
@media only screen and (min-width: 1025px) {
  .breadcrumb {
    margin: 18px auto 60px;
  }
}
@media only screen and (max-width: 1024px) {
  .has-banner .breadcrumb {
    margin: 20px auto;
  }
}
.breadcrumb span {
  color: #343434;
  font-size: 14px;
  line-height: 14px;
  font-family: "DM Sans";
}
.breadcrumb span a {
  font-size: 14px;
  line-height: 14px;
  color: #343434;
  font-family: "DM Sans";
}
.breadcrumb .breadcrumb_last {
  font-weight: 700;
}
.page .breadcrumb {
  margin: 0 auto;
}

@media only screen and (max-width: 576px) {
  .site-retail #breadcrumbs {
    text-align: center;
    padding: 0 15px;
  }
}
#breadcrumbs span {
  color: #343434;
  font-weight: 600;
}
.site-retail #breadcrumbs span {
  color: #ffffff;
}
#breadcrumbs span a {
  color: #343434;
  font-weight: 400;
}
.site-retail #breadcrumbs span a {
  color: #ffffff;
  font-weight: 600;
}
#breadcrumbs span .breadcrumb_last {
  color: #343434;
  font-weight: 600;
}
.site-retail #breadcrumbs span .breadcrumb_last {
  color: #E1251B;
}

body.woocommerce .woocommerce-breadcrumb {
  margin: 0;
}
body.woocommerce .woocommerce-breadcrumb a {
  color: #ffffff;
}
body.woocommerce .site-main .woocommerce-breadcrumb {
  display: none;
}
body.woocommerce div.product .woocommerce-tabs {
  width: 100%;
  margin: 30px 0 60px;
  border-bottom: 1px solid #C9C9C9;
}
@media (min-width: 992px) {
  body.woocommerce div.product .woocommerce-tabs {
    margin: 75px 0 105px;
  }
}
body.woocommerce div.product .woocommerce-tabs ul.tabs {
  margin: 0;
  padding: 0;
}
body.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: #ffffff;
}
@media (min-width: 576px) {
  body.woocommerce div.product .woocommerce-tabs ul.tabs li {
    margin-right: 156px;
  }
}
body.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-family: "DM Sans";
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  color: #3A3B32;
  padding: 14px 10px;
}
@media (min-width: 576px) {
  body.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    padding: 14px 20px;
  }
}
@media (min-width: 992px) {
  body.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-size: 22px;
    line-height: 22px;
  }
}
body.woocommerce div.product .woocommerce-tabs ul.tabs li:before {
  width: 100%;
  display: none;
}
body.woocommerce div.product .woocommerce-tabs ul.tabs li:after {
  width: 100%;
  border-radius: 0;
  height: 2px;
  border-color: #E1251B;
  border-width: 0 0 2px 0;
  display: none;
  right: 0;
}
body.woocommerce div.product .woocommerce-tabs ul.tabs .active {
  background: #E6E4ED;
  border-radius: 3px 3px 0 0;
}
body.woocommerce div.product .woocommerce-tabs ul.tabs .active a {
  font-weight: 700;
}
body.woocommerce div.product .woocommerce-tabs ul.tabs .active:after {
  display: block;
}
body.woocommerce div.product .woocommerce-Tabs-panel {
  display: flex;
  flex-direction: column;
}
@media (min-width: 576px) {
  body.woocommerce div.product .woocommerce-Tabs-panel {
    flex-direction: row;
  }
}
body.woocommerce div.product .woocommerce-Tabs-panel.panel {
  margin: 0;
  padding: 44px 0 65px;
}
body.woocommerce div.product .woocommerce-Tabs-panel > div {
  width: 100%;
}
@media (min-width: 992px) {
  body.woocommerce div.product .woocommerce-Tabs-panel > div {
    width: 440px;
  }
}
body.woocommerce div.product .woocommerce-Tabs-panel > div > span {
  display: flex;
  font-family: "Open Sans";
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  color: #76777A;
  padding-bottom: 5px;
  margin-bottom: 15px;
  border-bottom: 1px solid #C9C9C9;
}
@media only screen and (min-width: 360px) {
  body.woocommerce div.product .woocommerce-Tabs-panel > div > span {
    font-size: 14px;
    line-height: 16px;
  }
}
@media (min-width: 992px) {
  body.woocommerce div.product .woocommerce-Tabs-panel > div > span {
    font-size: 18px;
    line-height: 18px;
  }
}
body.woocommerce div.product .woocommerce-Tabs-panel > div > span label {
  font-family: "Open Sans";
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  color: #3A3B32;
  width: 160px;
  flex-shrink: 0;
}
@media only screen and (min-width: 360px) {
  body.woocommerce div.product .woocommerce-Tabs-panel > div > span label {
    width: 175px;
    font-size: 15px;
    line-height: 15px;
  }
}
@media (min-width: 992px) {
  body.woocommerce div.product .woocommerce-Tabs-panel > div > span label {
    font-size: 18px;
    line-height: 18px;
  }
}
body.woocommerce div.product .woocommerce-Tabs-panel > div > span a {
  color: #E1251B;
}
body.woocommerce div.product .woocommerce-Tabs-panel > div .special {
  color: #E1251B;
}
@media (min-width: 576px) {
  body.woocommerce div.product .woocommerce-Tabs-panel .tab-column-1 {
    margin-right: 50px;
  }
}
@media (min-width: 992px) {
  body.woocommerce div.product .woocommerce-Tabs-panel .tab-column-1 {
    margin-right: 155px;
  }
}

.wrap-share {
  display: flex;
  justify-content: space-between;
  padding: 20px 0 18px;
  border-top: 1px solid #DE2826;
  border-bottom: 1px solid #DE2826;
  margin-bottom: 20px;
}
.wrap-share p {
  font-family: "DM Sans";
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  color: #30236C;
  margin: 0;
}
.wrap-share__list {
  display: flex;
}
.wrap-share__list li {
  margin-left: 10px;
}
.wrap-share__list .fb {
  display: inline-flex;
  width: 17px;
  height: 17px;
  background: url("../../src/images/sprites/svg/facebook-icon.svg") no-repeat 0 0;
}
.wrap-share__list .watsapp {
  display: inline-flex;
  width: 17px;
  height: 17px;
  background: url("../../src/images/sprites/svg/whatsapp-icon.svg") no-repeat 0 0;
}

.wrap-contact {
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.contact-form form > div {
  margin: 0 -10px;
}
@media (min-width: 1200px) {
  .contact-form form > div {
    margin: 0 -40px;
  }
}
.contact-form form > div > div {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.contact-form form > div > div > div {
  padding: 0 10px;
  margin-bottom: 24px;
  width: 100%;
}
@media (min-width: 992px) {
  .contact-form form > div > div > div {
    padding: 0 40px;
    width: 50%;
  }
}
.contact-form form .wrap-submit {
  margin: 0;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .contact-form form .wrap-submit {
    padding: 0 30px;
  }
}
.contact-form form p {
  margin: 0;
}
.contact-form form .wpcf7-response-output {
  border: none;
  border-top: 2px solid #198754;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(8, 194, 64, 0.5);
  padding: 20px 20px 18px;
  margin: 15px 0 0;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .contact-form form .wpcf7-response-output {
    margin: 15px 30px;
  }
}
@media (min-width: 1200px) {
  .contact-form form .wpcf7-response-output {
    font-size: 18px;
    line-height: 24px;
    padding: 30px 26px 24px;
  }
}
.contact-form .message-box {
  width: 100%;
  margin-bottom: 35px;
}
.contact-form .subject {
  width: 100%;
}

.wpcf7-spinner {
  display: block;
  margin: 10px auto 0;
}

.submit-message {
  display: flex;
  flex-direction: column;
  position: relative;
}
.submit-message .envelope {
  width: 100%;
  font-size: 15px;
  line-height: 15px;
  color: #ffffff;
  background: #30236C;
  border: none;
  padding: 15px 0;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1200px) {
  .submit-message .envelope {
    font-size: 18px;
    line-height: 18px;
    padding: 22px 0;
  }
}
.submit-message .envelope:hover, .submit-message .envelope:focus {
  background: #30236C;
}
.submit-message .envelope:before {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-right: 10px;
  background: url("../../src/images/sprites/svg/envelope.svg") no-repeat 0 0;
  flex-shrink: 0;
}
.submit-message input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 45px;
}
@media (min-width: 1200px) {
  .submit-message input {
    height: 62px;
  }
}
.submit-message input:focus {
  background: none;
  color: transparent;
  box-shadow: none;
  outline: none;
}
.submit-message input:focus + .wpcf7-spinner + .envelope {
  background: #30236C;
}
.submit-message input:hover {
  background: none;
  color: transparent;
  box-shadow: none;
  outline: none;
}
.submit-message input:hover + .wpcf7-spinner + .envelope {
  background: #fc6363;
}
.submit-message .wpcf7-spinner {
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.showroom-contact .nav {
  display: flex;
  justify-content: center;
  border: none;
  border-bottom: 1px solid #D0D0D0;
  max-width: 800px;
  margin: 0 auto;
}
.showroom-contact .nav-link {
  font-family: "DM Sans";
  font-size: 15px;
  line-height: 15px;
  font-weight: 400;
  color: #76777A;
  margin: 0;
  padding: 10px;
  border-radius: 5px 5px 0px 0px;
  border: none;
  background: none;
}
@media (min-width: 576px) {
  .showroom-contact .nav-link {
    font-size: 18px;
    line-height: 18px;
    padding: 10px 15px;
    margin: 0 10px;
  }
}
@media (min-width: 1200px) {
  .showroom-contact .nav-link {
    font-size: 22px;
    line-height: 22px;
    padding: 10px 30px;
  }
}
.showroom-contact .nav-link.active {
  font-weight: 700;
  color: #E1251B;
  background: #E6E4ED;
}
.showroom-contact .nav-link:focus {
  outline: none;
}
.showroom-contact .tab-content {
  margin-top: 50px;
}
@media (min-width: 1200px) {
  .showroom-contact .tab-content {
    margin-top: 110px;
  }
}

.our-showroom__top {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .our-showroom__top {
    flex-direction: row;
  }
}
.our-showroom__job {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
  margin: 0 auto 30px;
}
@media (min-width: 992px) {
  .our-showroom__job {
    width: 35%;
  }
}
@media (min-width: 1200px) {
  .our-showroom__job {
    width: calc(100% - 697px);
  }
}
.our-showroom__image {
  width: 284px;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 50%;
  margin-bottom: 30px;
}
@media (min-width: 1200px) {
  .our-showroom__image {
    margin: 0 auto 12px;
  }
}
.our-showroom__image img {
  width: 100%;
  border-radius: 50%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
}
.our-showroom__image img:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  transform: scale(1.05);
}
.our-showroom__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.our-showroom__wrap h3 {
  font-family: "DM Sans";
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: #E1251B;
  margin: 0;
}
.our-showroom__wrap p {
  font-family: "DM Sans";
  font-size: 16px;
  line-height: 30px;
  font-weight: 700;
  color: #3A3A3A;
  margin: 0 0 15px;
}
.our-showroom__wrap a {
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  color: #30236C;
  position: relative;
  margin-bottom: 7px;
  padding-left: 38px;
}
@media only screen and (max-width: 330px) {
  .our-showroom__wrap a {
    font-size: 13px;
  }
}
@media only screen and (min-width: 1025px) {
  .our-showroom__wrap a {
    width: 155px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 21px;
  }
}
.our-showroom__wrap a:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 28px;
  height: 18px;
  background: url("../../src/images/sprites/svg/mail.svg") no-repeat 0 0;
  margin-right: 12px;
}
.our-showroom__wrap .tel {
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: #30236C;
  position: relative;
  display: inline-block;
  padding-left: 35px;
}
.our-showroom__wrap .tel:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  background: url("../../src/images/sprites/svg/tel.svg") no-repeat 0 0;
  margin-right: 12px;
}
.our-showroom__wrap .tel br {
  display: none;
}
.our-showroom .map {
  width: 100%;
}
@media (min-width: 992px) {
  .our-showroom .map {
    width: 65%;
    padding-left: 50px;
  }
}
@media (min-width: 1200px) {
  .our-showroom .map {
    width: 697px;
    padding-left: 0;
  }
}
.our-showroom .map > div {
  margin-bottom: 25px;
}
.our-showroom .map iframe {
  height: 410px;
}
.our-showroom .map p {
  font-family: "DM Sans";
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #343434;
  position: relative;
  padding-left: 22px;
}
.our-showroom .map p:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 18px;
  background: url("../../src/images/sprites/svg/plan.svg") no-repeat 0 0;
  margin-right: 12px;
}
.our-showroom__list {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
  justify-content: center;
}
.our-showroom__item {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
  margin-bottom: 60px;
}
@media (min-width: 576px) {
  .our-showroom__item {
    flex: 0 0 auto;
    width: 50%;
  }
}
@media (min-width: 992px) {
  .our-showroom__item {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
}
.our-showroom__bottom {
  margin-bottom: 70px;
}

body .elementor .elementor-section.shop-now {
  margin: 40px auto;
  max-width: 1480px;
  width: 100%;
}
@media (min-width: 992px) {
  body .elementor .elementor-section.shop-now {
    margin: 75px auto;
  }
}
body .elementor .elementor-section.shop-now .featured-products ul.products {
  border-radius: 10px;
  border: 1px solid #EFEFEF;
  padding: 30px 10px;
  display: flex;
  flex-wrap: wrap;
}
body .elementor .elementor-section.shop-now .featured-products ul.products li {
  width: 100%;
}
body .elementor .elementor-section.shop-now .featured-products ul.products li .wishlist-fragment, body .elementor .elementor-section.shop-now .featured-products ul.products li .ajax_add_to_cart {
  display: none;
}
body .elementor .elementor-section.shop-now .featured-products ul.products li img {
  width: 53px;
  height: 53px;
  border-radius: 5px;
  margin: 0;
}
body .elementor .elementor-section.shop-now .featured-products ul.products li a.woocommerce-loop-product__link {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
body .elementor .elementor-section.shop-now .featured-products ul.products li a.woocommerce-loop-product__link:hover .woocommerce-loop-product__title {
  color: #E1251B;
}
body .elementor .elementor-section.shop-now .featured-products ul.products li a .featured-products-image {
  width: 65px;
  border-radius: 5px;
  border: 1px solid #EFEFEF;
  padding: 6px;
  flex-shrink: 0;
}
body .elementor .elementor-section.shop-now .featured-products ul.products li a .featured-products-contents {
  width: calc(100% - 65px);
  padding-left: 10px;
  display: flex;
  flex-direction: column;
}
body .elementor .elementor-section.shop-now .featured-products ul.products li a .woocommerce-loop-product__title {
  font-family: "DM Sans";
  font-size: 14px;
  line-height: 17px;
  font-weight: 700;
  color: #30236C;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  order: 1;
}
body .elementor .elementor-section.shop-now .featured-products ul.products li a .price {
  font-family: "DM Sans";
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  color: #76777A;
  margin: 0;
  order: 3;
}
body .elementor .elementor-section.shop-now .featured-products ul.products li a .product-sku {
  font-family: "Open Sans";
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #76777A;
  order: 2;
}
body .elementor .elementor-section.shop-now .featured-products ul.products li .add_to_cart_button {
  font-family: "Open Sans";
  font-size: 15px;
  line-height: 15px;
  font-weight: 400;
  color: #ffffff;
  background: #30236C;
}
body .elementor .elementor-section.shop-now .featured-products ul.products li .add_to_cart_button:hover {
  background: #E1251B;
}
body .elementor .elementor-section.shop-now .shop-cart ul.products.elementor-grid {
  display: flex;
  flex-wrap: wrap;
}
body .elementor .elementor-section.shop-now .shop-cart ul.products.elementor-grid > li {
  width: 30%;
  border: 1px solid #D0D0D0;
  border-radius: 5px;
  position: relative;
}
@media (max-width: 1199.98px) {
  body .elementor .elementor-section.shop-now .shop-cart ul.products.elementor-grid > li {
    width: 45%;
  }
}
@media (max-width: 575.98px) {
  body .elementor .elementor-section.shop-now .shop-cart ul.products.elementor-grid > li {
    width: 100%;
  }
}
body .elementor .elementor-section.shop-now .shop-cart ul.products.elementor-grid > li:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 40px;
  width: 100%;
  height: 1px;
  background: #D0D0D0;
}
body .elementor .elementor-section.shop-now .shop-cart ul.products.elementor-grid > li .woocommerce-LoopProduct-link {
  display: flex;
  flex-direction: column;
  padding-bottom: 60px;
}
body .elementor .elementor-section.shop-now .shop-cart ul.products.elementor-grid > li .woocommerce-LoopProduct-link:hover .woocommerce-loop-product__title {
  color: #E1251B;
}
body .elementor .elementor-section.shop-now .shop-cart ul.products.elementor-grid > li img {
  height: 288px;
  border-radius: 5px 5px 0 0;
  object-fit: cover;
  order: 1;
}
body .elementor .elementor-section.shop-now .shop-cart ul.products.elementor-grid > li h2 {
  padding: 0 34px;
  text-align: center;
  order: 2;
}
body .elementor .elementor-section.shop-now .shop-cart ul.products.elementor-grid > li .price {
  display: flex;
  justify-content: center;
  text-align: center;
  order: 4;
}
body .elementor .elementor-section.shop-now .shop-cart ul.products.elementor-grid > li .price del {
  opacity: 1;
  order: 2;
}
body .elementor .elementor-section.shop-now .shop-cart ul.products.elementor-grid > li .price ins {
  order: 1;
  margin-right: 15px;
}
body .elementor .elementor-section.shop-now .shop-cart ul.products.elementor-grid > li .star-rating {
  display: none;
}
body .elementor .elementor-section.shop-now .shop-cart ul.products.elementor-grid > li .product-sku {
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  color: #76777A;
  text-transform: uppercase;
  margin: 8px 0 23px;
  display: block;
  text-align: center;
  order: 3;
}
body .elementor .elementor-section.shop-now .shop-cart ul.products.elementor-grid > li .ajax_add_to_cart {
  background: none;
  position: absolute;
  left: 15px;
  bottom: 12px;
  padding: 0;
  margin: 0;
}
body .elementor .elementor-section.shop-now .shop-cart ul.products.elementor-grid > li .product_type_grouped {
  background: none;
  position: absolute;
  left: 15px;
  bottom: 12px;
  padding: 0;
  margin: 0;
  font-family: "Open Sans";
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  color: #E1251B;
}
body .elementor .elementor-section.shop-now .shop-cart ul.products.elementor-grid > li .added_to_cart {
  position: absolute;
  left: 25px;
  right: 0;
  bottom: 45px;
  margin: 0 auto;
  display: inline-block;
  width: 80px;
}
body .elementor .elementor-section.shop-now .shop-cart ul.products.elementor-grid > li .wishlist-fragment {
  position: absolute;
  right: 15px;
  bottom: 12px;
  height: 17px;
  padding: 0;
  margin: 0;
}
body .elementor .elementor-section.shop-now .shop-cart ul.products.elementor-grid > li .wishlist-fragment .feedback {
  color: transparent;
  width: 17px;
  height: 19px;
  display: inline-block;
  overflow: hidden;
  margin-right: 5px;
}
body .elementor .elementor-section.shop-now .shop-cart ul.products.elementor-grid > li .wishlist-fragment .add_to_wishlist span {
  display: none;
}
body .elementor .elementor-section.shop-now .shop-cart ul.products.elementor-grid > li .wishlist-fragment .yith-wcwl-wishlistexistsbrowse, body .elementor .elementor-section.shop-now .shop-cart ul.products.elementor-grid > li .wishlist-fragment .yith-wcwl-wishlistaddedbrowse {
  display: flex !important;
  align-items: center;
}
body .elementor .elementor-section.shop-now .shop-cart ul.products.elementor-grid > li .wishlist-fragment .yith-wcwl-wishlistexistsbrowse a, body .elementor .elementor-section.shop-now .shop-cart ul.products.elementor-grid > li .wishlist-fragment .yith-wcwl-wishlistaddedbrowse a {
  font-family: "Open Sans";
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  color: #E1251B;
}
body .elementor .elementor-section.shop-now .shop-cart ul.products.elementor-grid > li .wishlist-fragment i {
  margin: 0;
}
body .elementor .elementor-section.shop-now .shop-cart ul.products.elementor-grid > li .wishlist-fragment i:before {
  content: "";
  display: inline-flex;
  width: 17px;
  height: 14px;
  background: url("../../src/images/sprites/svg/red-heart.svg") no-repeat 0 0;
}
body .elementor .elementor-section.shop-now .shop-cart ul.products.elementor-grid > li .onsale {
  padding: 6px 15px;
}
body .elementor .elementor-section.shop-now .shop-cart ul.products.elementor-grid > li .button.product_type_variable, body .elementor .elementor-section.shop-now .shop-cart ul.products.elementor-grid > li .button.product_type_simple {
  background: none;
  position: absolute;
  left: 25px;
  bottom: 13px;
  margin: 0;
  padding: 0;
}
body .elementor .elementor-section.shop-now .filter-order {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  background: rgba(250, 250, 250, 0.5);
  padding: 18px 20px;
  margin-bottom: 54px;
}
@media (max-width: 767.98px) {
  body .elementor .elementor-section.shop-now .filter-order {
    flex-direction: column-reverse;
    align-items: flex-start;
    margin: 30px 0;
  }
}
@media (min-width: 992px) {
  body .elementor .elementor-section.shop-now .filter-order {
    padding: 18px 28px;
  }
}
body .elementor .elementor-section.shop-now .filter-order p {
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #30236C;
  margin: 0 0 0 28px;
}
@media (max-width: 767.98px) {
  body .elementor .elementor-section.shop-now .filter-order p {
    margin: 20px 0 0;
  }
}
body .elementor .elementor-section.shop-now .filter-order .woocommerce-ordering {
  margin: 0;
}
body.site-retail .elementor-location-archive.product {
  margin: 0;
}
body .woocommerce ul.order_details {
  margin-top: 50px;
}
body .woocommerce ul.order_details li {
  margin-bottom: 20px;
}
body .woocommerce .gomips {
  margin-bottom: 60px;
}

.shop-now .shop-search .woolentor-filter-wrap form {
  border: none;
  flex-direction: row-reverse;
  margin-right: 22px;
  position: relative;
}
.shop-now .shop-search .woolentor-filter-wrap form button {
  width: 17px;
  height: 17px;
  position: absolute;
  top: 2px;
  left: 0;
}
.shop-now .shop-search .woolentor-filter-wrap form button i {
  margin: 0;
}
.shop-now .shop-search .woolentor-filter-wrap form button i:before {
  content: "";
  display: inline-flex;
  width: 17px;
  height: 17px;
  background: url("../../src/images/sprites/svg/picto-search.svg") no-repeat 0 0;
}
.shop-now .shop-search .woolentor-filter-wrap input[type=search] {
  font-family: "DM Sans";
  font-size: 12px;
  line-height: 12px;
  font-weight: 400;
  color: #76777A;
  text-align: right;
  text-transform: uppercase;
  border-bottom: 1px solid #E1251B;
  height: 20px;
  padding: 0;
  margin-left: 24px;
  width: 100%;
}

.filter-price h5 {
  font-family: "DM Sans";
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  color: #30236C;
  margin: 0 0 26px;
}

.elementor-icon-box-title {
  margin: 0;
}

body.woocommerce div.product p.price del {
  opacity: 1;
}
body.woocommerce div.product div.images .woocommerce-product-gallery__image {
  border-radius: 6px;
}
body.woocommerce div.product div.images .woocommerce-product-gallery__image a {
  border-radius: 6px;
}
body.woocommerce div.product div.images .woocommerce-product-gallery__image img {
  height: 400px;
  object-fit: cover;
  border-radius: 6px;
}
@media (min-width: 1200px) {
  body.woocommerce div.product div.images .woocommerce-product-gallery__image img {
    height: 602px;
  }
}
body.woocommerce div.product div.images .flex-control-thumbs {
  margin: 16px -8px 0;
}
body.woocommerce div.product div.images .flex-control-thumbs li {
  width: 20%;
  padding: 0 8px;
}
body.woocommerce div.product div.images .flex-control-thumbs li img {
  opacity: 1;
  border-radius: 3px;
}
body.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
  width: 46px;
  height: 46px;
  display: none;
  background: none;
}
body.woocommerce div.product div.images .woocommerce-product-gallery__trigger:before {
  width: 46px;
  height: 46px;
  background: url("../../src/images/sprites/svg/loupe-search.svg") no-repeat 0 0;
  border: none;
  top: 0;
  left: 0;
}
body.woocommerce div.product div.images .woocommerce-product-gallery__trigger:after {
  display: none;
}
body.woocommerce div.product div.images:hover .woocommerce-product-gallery__trigger {
  top: 40%;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
}
body.woocommerce nav.woocommerce-pagination {
  background: rgba(250, 250, 250, 0.65);
  padding: 18px 10px 12px;
  text-align: right;
  margin-top: 50px;
}
@media (min-width: 992px) {
  body.woocommerce nav.woocommerce-pagination {
    margin-top: 100px;
  }
}
body.woocommerce nav.woocommerce-pagination .page-numbers {
  border: none;
}
body.woocommerce nav.woocommerce-pagination .page-numbers li {
  border: none;
  margin-right: 7px;
}
body.woocommerce nav.woocommerce-pagination .page-numbers li .page-numbers {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 13px;
  font-weight: 700;
  color: #30236C;
  border: 1px solid #D0D0D0;
}
body.woocommerce nav.woocommerce-pagination .page-numbers li .page-numbers:hover {
  color: #ffffff;
  background: #30236C;
  border-color: #30236C;
}
body.woocommerce nav.woocommerce-pagination .page-numbers li .current {
  color: #ffffff;
  background: #30236C;
  border-color: #30236C;
}
body.woocommerce nav.woocommerce-pagination .page-numbers li .next, body.woocommerce nav.woocommerce-pagination .page-numbers li .prev {
  border: none;
  color: transparent;
  position: relative;
}
body.woocommerce nav.woocommerce-pagination .page-numbers li .next:after, body.woocommerce nav.woocommerce-pagination .page-numbers li .prev:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 13px;
  background: url("../../src/images/sprites/svg/right-arrow.svg") no-repeat 0 0;
}
body.woocommerce nav.woocommerce-pagination .page-numbers li .next:hover, body.woocommerce nav.woocommerce-pagination .page-numbers li .prev:hover {
  color: transparent;
  background: none;
}
body.woocommerce nav.woocommerce-pagination .page-numbers li .prev:after {
  transform: rotate(180deg);
}

.product-banner {
  position: relative;
  margin: 0 auto 50px;
}
@media (min-width: 992px) {
  .product-banner {
    margin: 0 auto 85px;
  }
}
.product-banner img {
  width: 100%;
  object-fit: cover;
}
.product-banner__content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.site-retail .product-banner h2 {
  font-family: "DM Sans";
  font-size: 30px;
  line-height: 50px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px;
}
@media (min-width: 992px) {
  .site-retail .product-banner h2 {
    font-size: 50px;
    line-height: 72px;
    margin: 0 0 35px;
  }
}
@media (max-width: 575.98px) {
  .product-banner img {
    height: 180px;
    object-fit: cover;
  }
}

.woocommerce-order {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .woocommerce-order {
    margin-top: 60px;
  }
}
.woocommerce-order .woocommerce-notice--success {
  font-family: "DM Sans";
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}
@media (min-width: 992px) {
  .woocommerce-order .woocommerce-notice--success {
    font-size: 30px;
    line-height: 40px;
  }
}
.woocommerce-order .woocommerce-order-details h2, .woocommerce-order .woocommerce-customer-details h2 {
  font-family: "DM Sans";
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}
@media (min-width: 992px) {
  .woocommerce-order .woocommerce-order-details h2, .woocommerce-order .woocommerce-customer-details h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

.woocommerce .woocommerce-order-details .order_details {
  border-radius: 0;
}
.woocommerce .woocommerce-order-details .order_details thead th {
  font-family: "Open Sans";
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  color: #1D1D1D;
}
.woocommerce .woocommerce-order-details .order_details tbody td a {
  font-family: "Open Sans";
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
  color: #E1251B;
}
@media only screen and (max-width: 1024px) {
  .woocommerce .woocommerce-order-details .order_details tbody td a {
    font-size: 15px;
    line-height: 20px;
  }
}
.woocommerce .woocommerce-order-details .order_details tbody td span {
  font-family: "Open Sans";
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
  color: #E1251B;
}
@media only screen and (max-width: 1024px) {
  .woocommerce .woocommerce-order-details .order_details tbody td span {
    font-size: 15px;
    line-height: 20px;
  }
}
.woocommerce ul.products li.product .onsale {
  margin: 0;
  font-family: "DM Sans";
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  color: #ffffff;
  background: #FC6363;
  border-radius: 5px;
  padding: 8px 18px;
  min-height: auto;
  top: 15px;
  right: 15px;
}
.woocommerce span.onsale {
  margin: 0;
  font-family: "DM Sans";
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  color: #ffffff;
  background: #FC6363;
  border-radius: 5px;
  padding: 8px 18px;
  min-height: auto;
  top: 15px;
  left: calc(50% - 130px);
}
@media only screen and (max-width: 1024px) {
  .woocommerce span.onsale {
    left: calc(50% - 85px);
  }
}
@media only screen and (max-width: 992px) {
  .woocommerce span.onsale {
    left: auto;
    right: 30px;
  }
}
.woocommerce.open-menu span.onsale {
  display: none;
}

.cart-shop .elementor-widget-container .elementor-nothing-found {
  font-family: "Open Sans";
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  color: #E1251B;
  padding: 5px 0;
  border-bottom: 1px solid #E1251B;
}
@media (min-width: 992px) {
  .cart-shop .elementor-widget-container .elementor-nothing-found {
    font-size: 18px;
    line-height: 20px;
  }
}

.return-to-shop a.wc-backward {
  font-family: "DM Sans";
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #ffffff;
  background: #30236C;
  padding: 10px 20px;
}
@media (min-width: 992px) {
  .return-to-shop a.wc-backward {
    font-size: 18px;
    line-height: 18px;
    padding: 13px 25px;
  }
}
.return-to-shop a.wc-backward:hover {
  background: #E1251B;
  color: #ffffff;
}

.woocommerce-notices-wrapper .woocommerce-message .wc-forward {
  font-family: "DM Sans";
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #ffffff;
  background: #30236C;
  padding: 8px 16px;
}
@media (min-width: 992px) {
  .woocommerce-notices-wrapper .woocommerce-message .wc-forward {
    font-size: 18px;
    line-height: 18px;
    padding: 10px 20px;
  }
}
.woocommerce-notices-wrapper .woocommerce-message .wc-forward:hover {
  background: #E1251B;
  color: #ffffff;
}
@media only screen and (max-width: 576px) {
  .woocommerce-notices-wrapper .woocommerce-message .wc-forward {
    order: 3;
    margin-top: 15px;
  }
}
@media only screen and (max-width: 576px) {
  .single .woocommerce-notices-wrapper .woocommerce-message {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.shop-now .woocommerce.widget_price_filter .ui-slider-horizontal {
  height: 5px;
}
.shop-now .woocommerce.widget_price_filter .price_slider_wrapper .ui-widget-content {
  background: #EFEFEF;
}
.shop-now .woocommerce.widget_price_filter .price_slider_wrapper .ui-slider {
  background: #EFEFEF;
  margin-bottom: 36px;
}
.woocommerce.widget_price_filter .price_slider_wrapper .ui-slider .ui-slider-handle {
  width: 10px;
  height: 10px;
  top: -0.15rem;
  background: #E1251B;
}
.shop-now .woocommerce.widget_price_filter .price_slider_wrapper .ui-slider .ui-slider-range {
  background: #E1251B;
}
.woocommerce.widget_price_filter .price_slider_wrapper .price_slider_amount {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.woocommerce.widget_price_filter .price_slider_wrapper .price_slider_amount .button {
  font-family: "Open Sans";
  font-size: 18px;
  line-height: 18px;
  font-weight: 400;
  color: #ffffff;
  background: #30236C;
  padding: 10px 31px;
  margin-bottom: 15px;
}
.woocommerce.widget_price_filter .price_slider_wrapper .price_slider_amount .button:hover {
  background: #E1251B;
}
.woocommerce.widget_price_filter .price_slider_wrapper .price_slider_amount .price_label {
  font-family: "Open Sans";
  font-size: 14px;
  line-height: 19px;
  font-weight: 600;
  color: #76777A;
}
.woocommerce.widget_price_filter .price_slider_wrapper .price_slider_amount .price_label span {
  font-family: "Open Sans";
  font-size: 14px;
  line-height: 19px;
  font-weight: 600;
  color: #76777A;
}
.woocommerce form.checkout_coupon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.woocommerce form.checkout_coupon p:first-child {
  width: 100%;
}
.woocommerce form.checkout_coupon p.form-row-first {
  width: 100%;
}
@media (min-width: 576px) {
  .woocommerce form.checkout_coupon p.form-row-first {
    width: 47%;
  }
}
.woocommerce form.checkout_coupon p .button {
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #ffffff;
  background: #30236C;
  padding: 12px 20px;
}
@media (min-width: 576px) {
  .woocommerce form.checkout_coupon p .button {
    margin-left: 40px;
  }
}
@media (min-width: 992px) {
  .woocommerce form.checkout_coupon p .button {
    font-size: 18px;
    line-height: 18px;
  }
}
.woocommerce form.checkout_coupon p .button:hover {
  background: #E1251B;
}

.site-retail.woocommerce-page div.product div.images {
  width: 100%;
}
@media (min-width: 992px) {
  .site-retail.woocommerce-page div.product div.images {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .site-retail.woocommerce-page div.product div.images {
    width: 47%;
  }
}
.site-retail.woocommerce-page div.product div.summary {
  width: 100%;
}
@media (min-width: 992px) {
  .site-retail.woocommerce-page div.product div.summary {
    width: 50%;
    padding-left: 30px;
  }
}
@media (min-width: 1200px) {
  .site-retail.woocommerce-page div.product div.summary {
    padding-left: 94px;
    width: 47%;
  }
}
.site-retail.woocommerce-page div.product div.summary h1 {
  font-family: "DM Sans";
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  color: #343434;
}
@media (min-width: 992px) {
  .site-retail.woocommerce-page div.product div.summary h1 {
    font-size: 38px;
    line-height: 38px;
  }
}
.site-retail.woocommerce-page div.product div.summary .price {
  font-family: "DM Sans";
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #76777A;
  margin-bottom: 30px;
  display: flex;
}
@media (min-width: 992px) {
  .site-retail.woocommerce-page div.product div.summary .price {
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 50px;
  }
}
.site-retail.woocommerce-page div.product div.summary .price ins {
  color: #E1251B;
  order: 1;
  margin-right: 25px;
  text-decoration: none;
}
.site-retail.woocommerce-page div.product div.summary .price del {
  font-size: 20px;
  line-height: 28px;
  order: 2;
}
.site-retail.woocommerce-page div.product div.summary .woocommerce-product-details__short-description {
  margin-bottom: 40px;
}
.site-retail.woocommerce-page div.product div.summary .woocommerce-product-details__short-description p {
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #3A3B32;
}
@media (min-width: 992px) {
  .site-retail.woocommerce-page div.product div.summary .woocommerce-product-details__short-description p {
    font-size: 18px;
    line-height: 28px;
  }
}
.site-retail.woocommerce-page div.product div.summary .cart {
  margin: 0;
}
@media only screen and (max-width: 350px) {
  .site-retail.woocommerce-page div.product div.summary .cart {
    margin-right: 15px;
  }
}
.site-retail.woocommerce-page div.product div.summary .wishlist-fragment {
  margin: 0 0 0 13px;
}
@media only screen and (max-width: 350px) {
  .site-retail.woocommerce-page div.product div.summary .wishlist-fragment {
    margin: 20px 0 0;
  }
}
@media only screen and (max-width: 1025px) {
  .site-retail.woocommerce-page div.product div.summary .wishlist-fragment .yith-wcwl-wishlistexistsbrowse, .site-retail.woocommerce-page div.product div.summary .wishlist-fragment .yith-wcwl-wishlistaddedbrowse {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 992px) {
  .site-retail.woocommerce-page div.product div.summary .wishlist-fragment .yith-wcwl-wishlistexistsbrowse, .site-retail.woocommerce-page div.product div.summary .wishlist-fragment .yith-wcwl-wishlistaddedbrowse {
    margin-top: 0;
  }
}
@media only screen and (max-width: 576px) {
  .site-retail.woocommerce-page div.product div.summary .wishlist-fragment .yith-wcwl-wishlistexistsbrowse, .site-retail.woocommerce-page div.product div.summary .wishlist-fragment .yith-wcwl-wishlistaddedbrowse {
    margin-top: 20px;
  }
}
.site-retail.woocommerce-page div.product div.summary .wishlist-fragment .yith-wcwl-wishlistexistsbrowse .feedback, .site-retail.woocommerce-page div.product div.summary .wishlist-fragment .yith-wcwl-wishlistaddedbrowse .feedback {
  display: none;
}
.site-retail.woocommerce-page div.product div.summary .wishlist-fragment .add_to_wishlist {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid #D0D0D0;
  border-radius: 5px;
}
.site-retail.woocommerce-page div.product div.summary .wishlist-fragment .add_to_wishlist i {
  margin: 0;
}
.site-retail.woocommerce-page div.product div.summary .wishlist-fragment .add_to_wishlist i:before {
  content: "";
  display: inline-flex;
  width: 17px;
  height: 14px;
  background: url("../../src/images/sprites/svg/red-heart.svg") no-repeat 0 0;
}
.site-retail.woocommerce-page div.product div.summary .wishlist-fragment .add_to_wishlist span {
  display: none;
}
.site-retail.woocommerce-page div.product div.summary .qty {
  width: 70px;
  height: 50px;
  margin-right: 14px;
}
@media (min-width: 992px) {
  .site-retail.woocommerce-page div.product div.summary .qty {
    width: 177px;
  }
}
.site-retail.woocommerce-page div.product div.summary .single_add_to_cart_button {
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #ffffff;
  background: #30236C;
  padding: 16px 20px;
  border-radius: 5px;
}
@media (min-width: 992px) {
  .site-retail.woocommerce-page div.product div.summary .single_add_to_cart_button {
    font-size: 18px;
    line-height: 18px;
    padding: 16px 44px;
  }
}
.site-retail.woocommerce-page div.product div.summary .single_add_to_cart_button:hover {
  background: #E1251B;
}
.site-retail.woocommerce-page div.product div.summary .product_meta {
  margin-bottom: 10px;
}
.site-retail.woocommerce-page div.product div.summary .product_meta .sku_wrapper {
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  color: #76777A;
}
@media (min-width: 992px) {
  .site-retail.woocommerce-page div.product div.summary .product_meta .sku_wrapper {
    font-size: 18px;
    line-height: 18px;
  }
}
.site-retail.woocommerce-page div.product div.summary .product_meta .sku {
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #76777A;
}
.site-retail .type-product {
  max-width: 1540px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
@media (min-width: 992px) {
  .site-retail .type-product {
    padding: 0 20px;
  }
}

.related.products {
  width: 100%;
}
.related.products h2 {
  font-family: "DM Sans";
  font-size: 22px;
  line-height: 26px;
  font-weight: 700;
  color: #343434;
  text-align: center;
  margin: 0 0 40px;
}
@media (min-width: 992px) {
  .related.products h2 {
    font-size: 38px;
    line-height: 38px;
    margin: 0 0 60px;
  }
}
.related.products .products.columns-4 {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
  margin: 0 0 50px;
}
@media (min-width: 576px) {
  .related.products .products.columns-4 {
    margin: 0 0 70px;
  }
}
@media (min-width: 1200px) {
  .related.products .products.columns-4 {
    margin: 0 -19px 70px;
  }
}
.related.products .products.columns-4 li {
  width: 100%;
}
.related.products .products.columns-4 li .woocommerce-LoopProduct-link {
  border-radius: 5px;
  border: 1px solid #D0D0D0;
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 22px;
  display: flex;
  flex-direction: column;
}
.related.products .products.columns-4 li .woocommerce-LoopProduct-link:after {
  content: "";
  position: absolute;
  bottom: 42px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #D0D0D0;
}
.related.products .products.columns-4 li .woocommerce-LoopProduct-link h2 {
  font-family: "DM Sans";
  font-size: 22px;
  line-height: 22px;
  font-weight: 700;
  color: #30236C;
  text-transform: uppercase;
  margin: 20px 0 10px;
  padding: 0 20px;
  order: 2;
}
.related.products .products.columns-4 li .woocommerce-LoopProduct-link:hover h2 {
  color: #E1251B;
}
.related.products .products.columns-4 li img {
  width: 100%;
  height: 287px;
  object-fit: cover;
  border-radius: 5px 5px 0 0;
  margin: 0;
  order: 1;
}
.related.products .products.columns-4 li .price {
  font-family: "DM Sans";
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  color: #76777A;
  margin-bottom: 50px;
  display: block;
  text-align: center;
  order: 3;
}
.related.products .products.columns-4 li .product-sku {
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  color: #76777A;
  text-transform: uppercase;
  margin: 8px 0 23px;
  display: block;
  text-align: center;
  order: 2;
}
.related.products .products.columns-4 li .ajax_add_to_cart {
  position: absolute;
  left: 15px;
  bottom: 15px;
  font-family: "Open Sans";
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  color: #E1251B;
  padding: 0;
  background: none;
}
@media (min-width: 1200px) {
  .related.products .products.columns-4 li .ajax_add_to_cart {
    left: 34px;
  }
}
.related.products .products.columns-4 li .added_to_cart {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 55px;
  margin: 0 auto;
  display: inline-block;
  font-family: "Open Sans";
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  color: #30236C;
  width: 80px;
}
.related.products .products.columns-4 li .button {
  position: absolute;
  left: 15px;
  bottom: 15px;
  font-family: "Open Sans";
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  color: #E1251B;
  padding: 0;
  background: none;
}
@media (min-width: 1200px) {
  .related.products .products.columns-4 li .button {
    left: 34px;
  }
}
.related.products .products.columns-4 li .wishlist-fragment {
  position: absolute;
  right: 15px;
  bottom: 12px;
}
@media (min-width: 1200px) {
  .related.products .products.columns-4 li .wishlist-fragment {
    right: 34px;
  }
}
.related.products .products.columns-4 li .wishlist-fragment .yith-wcwl-wishlistaddedbrowse .feedback {
  display: none;
}
.related.products .products.columns-4 li .wishlist-fragment .yith-wcwl-wishlistaddedbrowse .feedback i {
  display: none;
}
.related.products .products.columns-4 li .wishlist-fragment .yith-wcwl-wishlistaddedbrowse a {
  font-family: "Open Sans";
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  color: #E1251B;
}
.related.products .products.columns-4 li .wishlist-fragment .yith-wcwl-wishlistexistsbrowse {
  display: flex;
  align-items: center;
}
.related.products .products.columns-4 li .wishlist-fragment .yith-wcwl-wishlistexistsbrowse .feedback {
  color: transparent;
  width: 17px;
  height: 19px;
  display: inline-block;
  overflow: hidden;
  margin-right: 5px;
}
.related.products .products.columns-4 li .wishlist-fragment .yith-wcwl-wishlistexistsbrowse a {
  font-family: "Open Sans";
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  color: #E1251B;
}
.related.products .products.columns-4 li .wishlist-fragment .add_to_wishlist {
  display: flex;
  align-items: center;
  height: 17px;
}
.related.products .products.columns-4 li .wishlist-fragment .add_to_wishlist span {
  font-family: "Open Sans";
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  color: #E1251B;
  display: none;
}
.related.products .products.columns-4 li .wishlist-fragment i {
  margin-right: 5px;
}
.related.products .products.columns-4 li .wishlist-fragment i span {
  display: none;
}
.related.products .products.columns-4 li .wishlist-fragment i:before {
  content: "";
  display: inline-flex;
  width: 17px;
  height: 14px;
  background: url("../../src/images/sprites/svg/red-heart.svg") no-repeat 0 0;
}

.woocommerce .related ul.products[class*=columns-] li.product,
.woocommerce-page .related ul.products[class*=columns-] li.product {
  width: 100%;
  margin-bottom: 30px;
}
@media (min-width: 576px) {
  .woocommerce .related ul.products[class*=columns-] li.product,
.woocommerce-page .related ul.products[class*=columns-] li.product {
    width: 50%;
    padding: 0 10px;
  }
}
@media (min-width: 768px) {
  .woocommerce .related ul.products[class*=columns-] li.product,
.woocommerce-page .related ul.products[class*=columns-] li.product {
    width: 33.333%;
    padding: 0 10px;
    margin: 0 0 30px;
  }
}
@media (min-width: 1200px) {
  .woocommerce .related ul.products[class*=columns-] li.product,
.woocommerce-page .related ul.products[class*=columns-] li.product {
    width: 25%;
    padding: 0 19px;
    margin: 0 0 30px;
  }
}

body.woocommerce div.product .elementor-element.elementor-products-grid .related.products ul.products li.product {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
  flex: 0 0 auto;
  width: 25%;
  padding: 0 9px;
  margin: 0 0 38px;
  width: 24%;
}
body.woocommerce div.product .elementor-element.elementor-products-grid .related.products ul.products li.product .woocommerce-LoopProduct-link {
  height: 100%;
}
body.woocommerce div.product .elementor-element.elementor-products-grid .related.products ul.products li.product a.button {
  background: none;
}
body.woocommerce div.product .elementor-element.elementor-products-grid .related.products ul.products li.product .feedback {
  display: none;
}
body.woocommerce div.product .elementor-element.elementor-products-grid .related.products ul.products li.product .wishlist-fragment a span {
  display: inline-block;
  text-indent: -9999px;
}
body.woocommerce div.product .elementor-element.elementor-products-grid .related.products ul.products li.product .wishlist-fragment a i:before {
  content: "";
  display: inline-flex;
  width: 17px;
  height: 17px;
  background: url("../../src/images/sprites/svg/red-heart.svg") no-repeat 0 0;
}

.product-taxo-terms span {
  font-family: "Open Sans";
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: #76777A;
}
.product-taxo-terms span a {
  font-weight: 400;
  color: #76777A;
}

.wrap-cart {
  display: flex;
  flex-wrap: inherit;
  align-items: flex-end;
  margin-bottom: 53px;
}

.elementor-widget-woocommerce-cart .woocommerce-cart-form .e-cart-section {
  padding: 0;
  margin: 0 0 40px;
}
@media (min-width: 992px) {
  .elementor-widget-woocommerce-cart .woocommerce-cart-form .e-cart-section {
    margin: 0 0 80px;
  }
}
.elementor-widget-woocommerce-cart .woocommerce-cart-form .e-cart-section:last-child {
  margin: 0 0 30px;
}
@media (min-width: 992px) {
  .elementor-widget-woocommerce-cart .woocommerce-cart-form .e-cart-section:last-child {
    margin: 0 0 50px;
  }
}
.elementor-widget-woocommerce-cart .woocommerce-cart-form .e-cart-section table.shop_table {
  border-radius: 0;
}
.elementor-widget-woocommerce-cart .woocommerce-cart-form .e-cart-section table.shop_table thead {
  background: #FAFAFA;
}
.elementor-widget-woocommerce-cart .woocommerce-cart-form .e-cart-section table.shop_table thead tr {
  border: 1px solid;
  border-bottom: 1px solid #C9C9C9;
}
.elementor-widget-woocommerce-cart .woocommerce-cart-form .e-cart-section table.shop_table thead th {
  font-family: "DM Sans";
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  color: #3A3B32;
  text-transform: uppercase;
  padding: 30px 0;
  border-right: 1px solid #C9C9C9;
  border-bottom: 1px solid #C9C9C9;
  text-align: center;
}
.elementor-widget-woocommerce-cart .woocommerce-cart-form .e-cart-section table.shop_table thead th:last-child {
  border-right: none;
}
@media only screen and (max-width: 1024px) {
  .elementor-widget-woocommerce-cart .woocommerce-cart-form .e-cart-section table.shop_table tbody tr {
    padding: 10px 15px;
  }
}
.elementor-widget-woocommerce-cart .woocommerce-cart-form .e-cart-section table.shop_table tbody td {
  border-right: 1px solid #C9C9C9;
  text-align: center;
  padding-right: 0;
}
@media only screen and (max-width: 1024px) {
  .elementor-widget-woocommerce-cart .woocommerce-cart-form .e-cart-section table.shop_table tbody td {
    border-right: none;
  }
}
.elementor-widget-woocommerce-cart .woocommerce-cart-form .e-cart-section table.shop_table tbody td:last-child {
  border-right: none;
}
.elementor-widget-woocommerce-cart .woocommerce-cart-form .e-cart-section table.shop_table tbody td img {
  margin: 0 auto;
}
.elementor-widget-woocommerce-cart .woocommerce-cart-form .e-cart-section table.shop_table tbody td a, .elementor-widget-woocommerce-cart .woocommerce-cart-form .e-cart-section table.shop_table tbody td span {
  font-family: "Open Sans";
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  color: #76777A;
}
@media only screen and (max-width: 1024px) {
  .elementor-widget-woocommerce-cart .woocommerce-cart-form .e-cart-section table.shop_table tbody td a, .elementor-widget-woocommerce-cart .woocommerce-cart-form .e-cart-section table.shop_table tbody td span {
    font-size: 15px;
    line-height: 15px;
  }
}
.elementor-widget-woocommerce-cart .woocommerce-cart-form .e-cart-section table.shop_table tbody td img {
  width: 104px;
  height: 104px;
  border-radius: 3px;
}
.elementor-widget-woocommerce-cart .woocommerce-cart-form .e-cart-section table.shop_table tbody td .qty {
  font-family: "Open Sans";
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  color: #3A3B32;
  padding: 20px 15px;
  width: 100px;
}
@media only screen and (max-width: 1024px) {
  .elementor-widget-woocommerce-cart .woocommerce-cart-form .e-cart-section table.shop_table tbody td .qty {
    font-size: 15px;
    line-height: 15px;
    padding: 15px 10px;
  }
}
.elementor-widget-woocommerce-cart .woocommerce-cart-form .e-cart-section table.shop_table tbody td .remove {
  font-size: 0;
  width: 30px;
  height: 30px;
  background: url("../../src/images/sprites/svg/remove.svg") no-repeat 0 0;
  margin: 0 12px;
}
.elementor-widget-woocommerce-cart .woocommerce-cart-form .e-cart-section table.shop_table tbody td .remove:hover {
  background: url("../../src/images/sprites/svg/remove-hover.svg") no-repeat 0 0;
}
@media only screen and (max-width: 1024px) {
  .elementor-widget-woocommerce-cart .woocommerce-cart-form .e-cart-section table.shop_table tbody td:before {
    font-family: "Open Sans";
    font-size: 15px;
    line-height: 15px;
    font-weight: 700;
    color: #3A3B32;
  }
}
.elementor-widget-woocommerce-cart .woocommerce-cart-form .e-cart-section table.shop_table tbody .product-subtotal a {
  font-weight: 700;
  color: #1D1D1D;
}
.elementor-widget-woocommerce-cart .woocommerce-cart-form .e-cart-section table.shop_table tbody .product-subtotal span {
  font-weight: 700;
  color: #1D1D1D;
}
.elementor-widget-woocommerce-cart .woocommerce-cart-form .e-cart-section.shop_table .coupon-col {
  padding: 20px;
  align-items: center;
}
.elementor-widget-woocommerce-cart .woocommerce-cart-form .e-cart-section.shop_table .coupon-col .input-text {
  font-family: "DM Sans";
  font-size: 15px;
  line-height: 20px;
  font-weight: 700;
  color: #30236C;
  border: 1px solid #30236C;
  padding: 15px 18px;
  border-radius: 5px;
}
.elementor-widget-woocommerce-cart .woocommerce-cart-form .e-cart-section.shop_table .coupon-col .input-text::placeholder {
  opacity: 1;
}
@media (min-width: 992px) {
  .elementor-widget-woocommerce-cart .woocommerce-cart-form .e-cart-section.shop_table .coupon-col .input-text {
    font-size: 20px;
    line-height: 26px;
    padding: 18px 23px;
  }
}
.elementor-widget-woocommerce-cart .woocommerce .e-cart-totals .cart-collaterals .cart_totals {
  padding: 15px;
}
@media (min-width: 768px) {
  .elementor-widget-woocommerce-cart .woocommerce .e-cart-totals .cart-collaterals .cart_totals {
    padding: 0;
  }
}
.elementor-widget-woocommerce-cart .woocommerce .e-cart-totals .cart-collaterals .cart_totals h2 {
  font-family: "DM Sans";
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  color: #3A3B32;
}
@media (min-width: 992px) {
  .elementor-widget-woocommerce-cart .woocommerce .e-cart-totals .cart-collaterals .cart_totals h2 {
    font-size: 30px;
    line-height: 30px;
  }
}
.elementor-widget-woocommerce-cart .woocommerce .e-cart-totals .cart-collaterals .cart_totals .shop_table td {
  font-family: "Open Sans";
  font-size: 15px;
  line-height: 15px;
  font-weight: 400;
  color: #76777A;
}
@media (min-width: 992px) {
  .elementor-widget-woocommerce-cart .woocommerce .e-cart-totals .cart-collaterals .cart_totals .shop_table td {
    font-size: 20px;
    line-height: 20px;
  }
}
.elementor-widget-woocommerce-cart .woocommerce .e-cart-totals .cart-collaterals .cart_totals .shop_table td span, .elementor-widget-woocommerce-cart .woocommerce .e-cart-totals .cart-collaterals .cart_totals .shop_table td bdi {
  font-family: "Open Sans";
  font-size: 15px;
  line-height: 15px;
  font-weight: 400;
  color: #76777A;
}
@media (min-width: 992px) {
  .elementor-widget-woocommerce-cart .woocommerce .e-cart-totals .cart-collaterals .cart_totals .shop_table td span, .elementor-widget-woocommerce-cart .woocommerce .e-cart-totals .cart-collaterals .cart_totals .shop_table td bdi {
    font-size: 20px;
    line-height: 20px;
  }
}

body .elementor-widget-woocommerce-cart .woocommerce a:not(.add_to_cart_button):not(.restore-item):not(.wc-backward):not(.wc-forward) {
  color: #76777A;
}
body .elementor-widget-woocommerce-cart .woocommerce a:not(.add_to_cart_button):not(.restore-item):not(.wc-backward):not(.wc-forward):hover {
  color: #30236C;
}
body .elementor-widget-woocommerce-cart .woocommerce .cart_totals table.shop_table_responsive tr td::before {
  font-weight: 500;
  color: #76777A;
}
body .woocommerce .woocommerce-checkout > .col2-set {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column;
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  body .woocommerce .woocommerce-checkout > .col2-set {
    flex-direction: row;
  }
}
body .woocommerce .woocommerce-checkout > .col2-set > div {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 992px) {
  body .woocommerce .woocommerce-checkout > .col2-set > div {
    max-width: 49%;
  }
}
body .woocommerce .woocommerce-checkout > .col2-set .col-1 {
  margin-right: auto;
}
body .woocommerce .woocommerce-checkout > .col2-set .col-2 {
  background: #EFEFEF;
  margin-left: auto;
  padding: 30px 15px;
}
@media (min-width: 992px) {
  body .woocommerce .woocommerce-checkout > .col2-set .col-2 {
    padding: 44px 38px;
  }
}
body .woocommerce .woocommerce-checkout .woocommerce-billing-fields h3 {
  font-family: "DM Sans";
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  color: #3A3B32;
  padding-bottom: 10px;
  border-bottom: 1px solid #EFEFEF;
}
@media (min-width: 992px) {
  body .woocommerce .woocommerce-checkout .woocommerce-billing-fields h3 {
    font-size: 30px;
    line-height: 30px;
    padding-bottom: 15px;
  }
}
body .woocommerce .woocommerce-checkout .woocommerce-billing-fields p {
  margin-bottom: 10px;
}
body .woocommerce .woocommerce-checkout .woocommerce-billing-fields p label {
  font-family: "Open Sans";
  font-size: 15px;
  line-height: 15px;
  font-weight: 400;
  color: #3A3B32;
  margin-bottom: 6px;
}
@media (min-width: 992px) {
  body .woocommerce .woocommerce-checkout .woocommerce-billing-fields p label {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 18px;
  }
}
body .woocommerce .woocommerce-checkout .woocommerce-billing-fields p .required {
  font-family: "Open Sans";
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  color: #E1251B;
}
body .woocommerce .woocommerce-checkout .woocommerce-billing-fields .form-row-first, body .woocommerce .woocommerce-checkout .woocommerce-billing-fields .form-row-last {
  width: 100%;
}
@media (min-width: 992px) {
  body .woocommerce .woocommerce-checkout .woocommerce-billing-fields .form-row-first, body .woocommerce .woocommerce-checkout .woocommerce-billing-fields .form-row-last {
    width: 47%;
  }
}
body .woocommerce .woocommerce-checkout .woocommerce-account-fields p {
  font-family: "Open Sans";
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  color: #3A3B32;
  padding: 0;
}
body .woocommerce .woocommerce-checkout .select2 {
  margin-bottom: 6px;
  line-height: 60px;
}
@media (min-width: 992px) {
  body .woocommerce .woocommerce-checkout .select2 {
    margin-bottom: 18px;
  }
}
body .woocommerce .woocommerce-checkout .select2 .select2-selection {
  border-color: #30236C;
  height: 42px;
}
@media (min-width: 992px) {
  body .woocommerce .woocommerce-checkout .select2 .select2-selection {
    height: 60px;
  }
}
body .woocommerce .woocommerce-checkout .select2 .select2-selection__rendered {
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  line-height: 42px;
  padding: 0 10px;
}
@media (min-width: 992px) {
  body .woocommerce .woocommerce-checkout .select2 .select2-selection__rendered {
    line-height: 60px;
  }
}
body .woocommerce .woocommerce-checkout .select2 .select2-selection__arrow {
  top: 8px;
  right: 10px;
}
@media (min-width: 992px) {
  body .woocommerce .woocommerce-checkout .select2 .select2-selection__arrow {
    top: 19px;
  }
}
body .woocommerce .woocommerce-checkout .select2 .select2-selection__arrow b {
  border-color: #30236C transparent transparent transparent;
  border-width: 8px 6px 0 6px;
}
body .woocommerce .woocommerce-checkout .woocommerce-error li {
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #3A3B32;
  margin-bottom: 10px;
}
body .woocommerce .woocommerce-checkout .woocommerce-error li strong {
  font-weight: 600;
}
body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order-table {
  margin-bottom: 50px;
}
body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order-table tr th {
  font-family: "DM Sans";
  font-size: 15px;
  line-height: 15px;
  font-weight: 700;
  color: #3A3B32;
  padding: 10px;
}
@media (min-width: 992px) {
  body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order-table tr th {
    font-size: 20px;
    line-height: 20px;
    padding: 12px 15px;
  }
}
body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order-table tr td, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order-table tr span {
  font-family: "Open Sans";
  font-size: 15px;
  line-height: 15px;
  font-weight: 400;
  color: #76777A;
  padding: 10px;
}
@media (min-width: 992px) {
  body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order-table tr td, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order-table tr span {
    font-size: 20px;
    line-height: 20px;
    padding: 12px 15px;
  }
}
body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order-table tr span {
  padding: 0;
}
body .woocommerce .woocommerce-checkout .woocommerce-checkout-payment {
  margin-bottom: 100px;
}
body .woocommerce .woocommerce-checkout .place-order p a {
  color: #E1251B;
}
body .woocommerce .woocommerce-checkout .place-order button {
  font-family: "DM Sans";
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  background: #30236C;
}
body .woocommerce .woocommerce-checkout .place-order button:hover {
  background: #30236C;
}

.woocommerce .page-content .wishlist-fragment {
  overflow-y: auto;
}
.woocommerce .page-content .wishlist-fragment .wishlist_table {
  border-width: 0 1px 0 0;
  border-color: #C9C9C9;
  border-radius: 0;
}
.woocommerce .page-content .wishlist-fragment .wishlist_table thead {
  background: #FAFAFA;
}
.woocommerce .page-content .wishlist-fragment .wishlist_table thead tr {
  border: 1px solid;
  border-bottom: 1px solid #C9C9C9;
}
.woocommerce .page-content .wishlist-fragment .wishlist_table thead th {
  font-family: "DM Sans";
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  color: #3A3B32;
  text-transform: uppercase;
  padding: 30px 10px;
  border-width: 1px 1px 1px 0;
  border-color: #C9C9C9;
  text-align: center;
}
@media (min-width: 992px) {
  .woocommerce .page-content .wishlist-fragment .wishlist_table thead th {
    font-size: 20px;
    line-height: 20px;
  }
}
.woocommerce .page-content .wishlist-fragment .wishlist_table thead th:last-child {
  border-right: none;
}
.woocommerce .page-content .wishlist-fragment .wishlist_table thead th:first-child {
  border-left: 1px solid #C9C9C9;
}
@media only screen and (max-width: 1024px) {
  .woocommerce .page-content .wishlist-fragment .wishlist_table tbody tr {
    padding: 10px 15px;
  }
}
.woocommerce .page-content .wishlist-fragment .wishlist_table tbody tr:hover > td {
  background: none;
}
.woocommerce .page-content .wishlist-fragment .wishlist_table tbody tr:nth-child(2n+1) > td {
  background: none;
}
.woocommerce .page-content .wishlist-fragment .wishlist_table tbody td {
  border-width: 0 1px 1px 0;
  border-color: #C9C9C9;
  text-align: center;
  padding: 15px 10px;
}
@media only screen and (max-width: 1024px) {
  .woocommerce .page-content .wishlist-fragment .wishlist_table tbody td {
    border-right: none;
  }
}
.woocommerce .page-content .wishlist-fragment .wishlist_table tbody td:last-child {
  border-right: none;
}
.woocommerce .page-content .wishlist-fragment .wishlist_table tbody td img {
  margin: 0 auto;
}
.woocommerce .page-content .wishlist-fragment .wishlist_table tbody td a, .woocommerce .page-content .wishlist-fragment .wishlist_table tbody td span {
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #76777A;
}
@media only screen and (max-width: 1024px) {
  .woocommerce .page-content .wishlist-fragment .wishlist_table tbody td a, .woocommerce .page-content .wishlist-fragment .wishlist_table tbody td span {
    font-size: 15px;
    line-height: 15px;
  }
}
.woocommerce .page-content .wishlist-fragment .wishlist_table tbody td img {
  width: 104px;
  height: 104px;
  border-radius: 3px;
}
.woocommerce .page-content .wishlist-fragment .wishlist_table tbody td .wishlist-in-stock {
  color: #198754;
}
.woocommerce .page-content .wishlist-fragment .wishlist_table tbody td:first-child {
  border-left: 1px solid #C9C9C9;
}
.woocommerce .page-content .wishlist-fragment .wishlist_table tbody .product-remove {
  padding: 10px 20px;
}
.woocommerce .page-content .wishlist-fragment .wishlist_table tbody .product-remove a {
  font-size: 0;
  width: 30px;
  height: 30px;
  background: url("../../src/images/sprites/svg/remove.svg") no-repeat 0 0;
  margin: 0 12px;
}
.woocommerce .page-content .wishlist-fragment .wishlist_table tbody .product-subtotal a {
  font-weight: 700;
  color: #1D1D1D;
}
.woocommerce .page-content .wishlist-fragment .wishlist_table tbody .product-add-to-cart a {
  color: #30236C;
}
.woocommerce .page-content .wishlist-fragment .wishlist_table li {
  border-bottom: 1px solid #E2E0E9;
  margin-bottom: 30px;
  padding-bottom: 20px;
  background: #EFEFEF;
}
.woocommerce .page-content .wishlist-fragment .wishlist_table li h3 {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 20px;
}
.woocommerce .page-content .wishlist-fragment .wishlist_table li h3 a {
  font-family: "Open Sans";
  font-size: 15px;
  line-height: 20px;
  font-weight: 700;
  color: #30236C;
}
.woocommerce .page-content .wishlist-fragment .wishlist_table li .item-wrapper {
  display: flex;
  padding: 10px 10px 0;
}
.woocommerce .page-content .wishlist-fragment .wishlist_table li tbody td {
  background: none;
  border: none;
}
.woocommerce .page-content .wishlist-fragment .wishlist_table li tbody td:first-child {
  border: none;
}
.woocommerce .page-content .wishlist-fragment .wishlist_table li tbody .label {
  font-family: "Open Sans";
  font-size: 18px;
  line-height: 18px;
  font-weight: 400;
  color: #30236C;
}
.woocommerce .page-content .wishlist-fragment .wishlist_table li tbody .value {
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
}
.woocommerce .page-content .wishlist-fragment .wishlist_table .product-add-to-cart a {
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  color: #E1251B;
}
.woocommerce .page-content .wishlist-fragment .wishlist_table .product-remove {
  padding-right: 10px;
}
.woocommerce .page-content .wishlist-fragment .wishlist_table .product-remove i:before {
  color: #E1251B;
}

.sli-heart:before {
  color: #E1251B;
}

.wishlist-title.wishlist-title-with-form h2:hover {
  background: none;
}
.wishlist-title.wishlist-title-with-form .show-title-form {
  display: none;
}

.yith_wcwl_wishlist_footer {
  display: none;
}

.management-team__list {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
  justify-content: center;
}
@media (min-width: 992px) {
  .management-team__list {
    margin: 0 -30px;
  }
}
@media (min-width: 1200px) {
  .management-team__list {
    margin: 0;
  }
}
@media only screen and (min-width: 1500px) {
  .management-team__list {
    margin: 0 -61px;
  }
}
.management-team__item {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
  margin-bottom: 60px;
}
@media (min-width: 576px) {
  .management-team__item {
    flex: 0 0 auto;
    width: 50%;
  }
}
@media (min-width: 992px) {
  .management-team__item {
    flex: 0 0 auto;
    width: 33.3333333333%;
    padding: 0 30px;
  }
}
@media (min-width: 1200px) {
  .management-team__item {
    flex: 0 0 auto;
    width: 25%;
    padding: 0;
    margin-bottom: 130px;
  }
}
@media only screen and (min-width: 1500px) {
  .management-team__item {
    padding: 0 61px;
  }
}
.management-team__image {
  overflow: hidden;
  border-radius: 50%;
  margin-bottom: 23px;
}
.management-team__image img {
  width: 100%;
  border-radius: 50%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
}
.management-team__image img:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  transform: scale(1.05);
}
.management-team__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.management-team__wrap h3 {
  font-family: "DM Sans";
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #E1251B;
  margin: 0;
  padding: 0 30px;
}
.management-team__wrap .title {
  font-family: "DM Sans";
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
  color: #3A3B32;
  margin: 0 0 7px;
  padding: 0 30px;
}
.management-team__wrap .desc {
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #3A3B32;
}

.customer-service .elementor-widget-image {
  overflow: hidden;
  border-radius: 50%;
}
.customer-service img {
  width: 100%;
  border-radius: 50%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
}
.customer-service img:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  transform: scale(1.05);
}

.modal-dialog {
  max-width: 1480px;
}

.modal-content {
  padding: 30px;
  border: 0;
  background: #F9F9F9;
}
@media (min-width: 1200px) {
  .modal-content {
    padding: 50px 60px;
  }
}
@media (min-width: 1400px) {
  .modal-content {
    padding: 125px 195px;
  }
}
.modal-content .btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: url("../../src/images/sprites/svg/btn-close.svg") no-repeat 0 0;
  border: none;
  padding: 0;
  z-index: 1;
}
@media (min-width: 1200px) {
  .modal-content .btn-close {
    top: 50px;
    right: 42px;
  }
}

.modal-body {
  padding: 0;
}

.popin-team {
  display: flex;
  flex-direction: column;
}
.popin-team__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 22px;
}
@media (min-width: 576px) {
  .popin-team__top {
    flex-direction: row;
  }
}
.popin-team__image {
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  flex-shrink: 0;
}
@media (min-width: 576px) {
  .popin-team__image {
    width: 284px;
    margin-bottom: 0;
  }
}
.popin-team__image img {
  width: 100%;
  border-radius: 50%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
}
.popin-team__image img:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  transform: scale(1.05);
}
.popin-team__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}
@media (min-width: 576px) {
  .popin-team__content {
    flex-direction: row;
    flex-direction: column;
    width: calc(100% - 284px);
    padding-left: 20px;
  }
}
@media (min-width: 992px) {
  .popin-team__content {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-end;
    flex-direction: row;
    padding-left: 46px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .popin-team__content {
    padding: 0;
  }
}
.popin-team__content .left {
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 576px) {
  .popin-team__content .left {
    width: 410px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .popin-team__content .left {
    width: 360px;
    padding-left: 30px;
  }
}
.popin-team__content .right {
  padding-bottom: 2px;
}
@media (min-width: 1200px) {
  .popin-team__content .right {
    padding-left: 65px;
  }
}
.popin-team__content a {
  font-family: "DM Sans";
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  color: #30236C;
  position: relative;
  padding-left: 35px;
}
.popin-team__content a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 28px;
  height: 18px;
  background: url("../../src/images/sprites/svg/mail.svg") no-repeat 0 0;
}
.popin-team__bottom {
  display: flex;
  flex-direction: column;
}
@media (min-width: 576px) {
  .popin-team__bottom {
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .popin-team__bottom {
    padding: 0 65px;
  }
}
.popin-team__bottom > div {
  width: 100%;
  font-family: "DM Sans";
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: #3A3B32;
}
@media (min-width: 576px) {
  .popin-team__bottom > div {
    width: 50%;
  }
}
.popin-team__bottom .col-left {
  margin-bottom: 50px;
}
@media (min-width: 576px) {
  .popin-team__bottom .col-left {
    padding-right: 35px;
    margin: 0;
  }
}
.popin-team__bottom .col-right {
  position: relative;
}
@media (min-width: 576px) {
  .popin-team__bottom .col-right {
    padding-left: 35px;
  }
}
.popin-team__bottom .not-empty:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -35px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 193px;
  height: 161px;
  background: url("../../src/images/sprites/svg/guimet.svg") no-repeat 0 0;
}
.popin-team .member-name {
  font-family: "DM Sans";
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  color: #E1251B;
  display: block;
}
@media (min-width: 1200px) {
  .popin-team .member-name {
    font-size: 38px;
    line-height: 50px;
  }
}
.popin-team .title {
  font-family: "DM Sans";
  font-size: 20px;
  line-height: 33px;
  font-weight: 700;
  color: #3A3B32;
  margin: 0;
}
@media (min-width: 1200px) {
  .popin-team .title {
    font-size: 33px;
    line-height: 35px;
  }
}

.search .page-content h2 {
  margin: 0 0 20px;
}
.search .page-content h2 a {
  font-family: "DM Sans";
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  color: #30236C;
}
@media (min-width: 992px) {
  .search .page-content h2 a {
    font-size: 30px;
    line-height: 40px;
  }
}
.search .page-content p {
  font-family: "DM Sans";
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  color: #76777A;
  margin: 0 0 20px;
}
@media (min-width: 992px) {
  .search .page-content p {
    font-size: 18px;
    line-height: 26px;
  }
}

/* Layout */
.page-header .entry-title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .page-header .entry-title {
    font-size: 30px;
    line-height: 39px;
  }
}
body .page-header .entry-title {
  max-width: 1480px;
  margin: 0 auto 20px;
  padding: 0 20px;
}
.page .page-header .entry-title, .error404 .page-header .entry-title {
  margin: 40px auto 20px;
}
.page-header .banner {
  position: relative;
  width: 100%;
  height: 100%;
}
.page-header .banner.no-image {
  display: none;
}
.page-header .banner h1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  line-height: 24px;
}
@media (min-width: 992px) {
  .page-header .banner h1 {
    font-size: 40px;
    line-height: 55px;
  }
}
@media (min-width: 1200px) {
  .page-header .banner h1 {
    font-size: 55px;
    line-height: 65px;
  }
}
.page-header img {
  width: 100%;
}
.search .page-header {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .search .page-header {
    margin-top: 50px;
  }
}

.home .retail-header {
  position: absolute;
  top: 120px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: transparent;
  z-index: 2;
}
@media only screen and (max-width: 1024px) {
  .home .retail-header {
    position: relative;
    top: 0;
    z-index: 15;
  }
}
@media (min-width: 1200px) {
  .retail-header .elementor-nav-menu .elementor-item {
    text-transform: uppercase;
  }
}

.bg-faded {
  background: transparent;
  transition: all 0.6s ease 0s;
}

.sticky-header {
  top: 0;
  padding: 10px 0;
  animation: fadeInDown 800ms;
}
.sticky-header .elementor-container .elementor-column .elementor-nav-menu--main .elementor-nav-menu li a {
  color: #1D1D1D;
}
.sticky-header .elementor-container .elementor-column .elementor-nav-menu--main .elementor-nav-menu li:last-child a {
  border-color: #1D1D1D;
}
.sticky-header .elementor-container .elementor-column .elementor-nav-menu--main .elementor-nav-menu li:last-child a:hover {
  border-color: #E1251B;
}

.elementor-menu-cart__close-button:hover:before, .elementor-menu-cart__close-button:hover:after {
  background: #E1251B;
}

@media only screen and (max-width: 1700px) {
  body .elementor-widget-woocommerce-menu-cart.elementor-menu-cart--cart-type-mini-cart .elementor-menu-cart__container {
    transform: translateX(-50%);
  }
}
@media (max-width: 575.98px) {
  body .elementor-widget-woocommerce-menu-cart.elementor-menu-cart--cart-type-mini-cart .elementor-menu-cart__container {
    left: 50%;
  }
}
body .elementor-widget-woocommerce-menu-cart.elementor-menu-cart--cart-type-mini-cart .elementor-menu-cart__container .elementor-menu-cart__products {
  padding-right: 5px;
  max-height: 304px !important;
  overflow-y: auto;
  /* Thumb */
  scrollbar-face-color: #30236C;
  scrollbar-shadow-color: #30236C;
  scrollbar-highlight-color: #30236C;
  scrollbar-3dlight-color: #30236C;
  scrollbar-darkshadow-color: #30236C;
  /* Track */
  scrollbar-track-color: #ffffff;
  /* Buttons */
  scrollbar-arrow-color: #000000;
}
body .elementor-widget-woocommerce-menu-cart.elementor-menu-cart--cart-type-mini-cart .elementor-menu-cart__container .elementor-menu-cart__products::-webkit-scrollbar-thumb {
  background-color: #30236C;
}
body .elementor-widget-woocommerce-menu-cart.elementor-menu-cart--cart-type-mini-cart .elementor-menu-cart__container .elementor-menu-cart__products::-webkit-scrollbar {
  background-color: #ffffff;
  width: 3px;
}
body .widget_shopping_cart_content .elementor-menu-cart__products {
  padding-right: 5px;
  overflow-y: auto;
  /* Thumb */
  scrollbar-face-color: #30236C;
  scrollbar-shadow-color: #30236C;
  scrollbar-highlight-color: #30236C;
  scrollbar-3dlight-color: #30236C;
  scrollbar-darkshadow-color: #30236C;
  /* Track */
  scrollbar-track-color: #ffffff;
  /* Buttons */
  scrollbar-arrow-color: #000000;
}
body .widget_shopping_cart_content .elementor-menu-cart__products::-webkit-scrollbar-thumb {
  background-color: #30236C;
}
body .widget_shopping_cart_content .elementor-menu-cart__products::-webkit-scrollbar {
  background-color: #ffffff;
  width: 3px;
}

.site-retail .elementor-location-footer p {
  margin: 0;
}
.site-retail .elementor-location-footer .elementor-icon-list-text a {
  color: #343434;
}
.site-retail .elementor-location-footer ul li a {
  text-decoration: underline !important;
}

@media (min-width: 992px) {
  .elementor-nav-menu--layout-horizontal .elementor-nav-menu > li.mobile-contact {
    display: none;
  }
}

@media only screen and (max-width: 1024px) {
  .menu-header > div {
    flex-direction: row-reverse;
  }
}

.elementor-menu-toggle {
  position: relative;
  z-index: 9998;
}

.elementor-nav-menu--toggle .elementor-menu-toggle {
  background: none;
}
.elementor-nav-menu--toggle .elementor-menu-toggle.elementor-active + .elementor-nav-menu__container {
  height: 100vh;
  margin: 0;
  top: -20px !important;
  padding-top: 60px;
}
.site-retail .elementor-nav-menu--toggle .elementor-menu-toggle.elementor-active + .elementor-nav-menu__container {
  top: 50px !important;
}

.main-menu {
  position: relative;
}
.main-menu .elementor-nav-menu li {
  margin: 0 10px;
}
@media (min-width: 1200px) {
  .main-menu .elementor-nav-menu li {
    margin: 0 45px;
  }
}
.main-menu .elementor-nav-menu li a:hover {
  border-bottom: 1px solid #E1251B;
}
.main-menu .elementor-nav-menu li:last-child a {
  border-radius: 10px;
  border: 1px solid #ffffff;
  display: inline-flex;
}
body .elementor .elementor-section .main-menu .elementor-nav-menu li:last-child a {
  padding: 7px 17px;
}
.main-menu .elementor-nav-menu li:last-child a:hover {
  border-color: #E1251B;
}
.main-menu .elementor-nav-menu li:last-child a:not(.home .main-menu .elementor-nav-menu li:last-child a) {
  border: 1px solid #1D1D1D;
}
.main-menu .elementor-nav-menu li:last-child a:not(.home .main-menu .elementor-nav-menu li:last-child a):hover {
  border-color: #E1251B;
}

@media only screen and (max-width: 1024px) {
  .retail-burger {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
}
.retail-burger .elementor-widget-wrap .elementor-nav-menu--burger .elementor-widget-container .elementor-nav-menu--main ul li a:not(.home .retail-burger .elementor-widget-wrap .elementor-nav-menu--burger .elementor-widget-container .elementor-nav-menu--main ul li a) {
  color: #1D1D1D;
}
.retail-burger .elementor-widget-wrap .elementor-nav-menu--burger .elementor-widget-container .elementor-nav-menu--main ul li a:not(.home .retail-burger .elementor-widget-wrap .elementor-nav-menu--burger .elementor-widget-container .elementor-nav-menu--main ul li a):hover {
  color: #E1251B;
}
.retail-burger .elementor-widget-wrap .elementor-nav-menu--burger .elementor-widget-container .elementor-nav-menu--main ul li a.elementor-item-active:not(.home .retail-burger .elementor-widget-wrap .elementor-nav-menu--burger .elementor-widget-container .elementor-nav-menu--main ul li a.elementor-item-active) {
  color: #E1251B;
  border-bottom: 1px solid #E1251B;
}
.retail-burger .elementor-widget-wrap .elementor-nav-menu--burger .elementor-widget-container .elementor-nav-menu--main ul li:last-child a.elementor-item-active:not(.home .retail-burger .elementor-widget-wrap .elementor-nav-menu--burger .elementor-widget-container .elementor-nav-menu--main ul li:last-child a.elementor-item-active) {
  border-color: #E1251B;
}
.retail-burger .elementor-widget-wrap .elementor-nav-menu--burger .elementor-widget-container .elementor-nav-menu--main ul li.current_page_parent a:not(.home .retail-burger .elementor-widget-wrap .elementor-nav-menu--burger .elementor-widget-container .elementor-nav-menu--main ul li.current_page_parent a) {
  color: #E1251B;
  border-bottom: 1px solid #E1251B;
}
.retail-burger .elementor-widget-wrap .elementor-nav-menu--burger .elementor-widget-container .elementor-nav-menu--main ul li.current_page_parent a:not(.home .retail-burger .elementor-widget-wrap .elementor-nav-menu--burger .elementor-widget-container .elementor-nav-menu--main ul li.current_page_parent a):hover {
  color: #E1251B;
}

/*# sourceMappingURL=main.min.css.map */
