@import url(https://fonts.googleapis.com/css?family=Roboto|Ubuntu);
@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap);
@charset "UTF-8";
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.text-bg-primary {
  color: #fff !important;
  background-color: RGBA(28, 28, 27, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-secondary {
  color: #000 !important;
  background-color: RGBA(139, 150, 158, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-success {
  color: #000 !important;
  background-color: RGBA(103, 194, 58, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-info {
  color: #000 !important;
  background-color: RGBA(144, 147, 153, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-warning {
  color: #000 !important;
  background-color: RGBA(230, 162, 60, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-danger {
  color: #000 !important;
  background-color: RGBA(245, 108, 108, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-light {
  color: #000 !important;
  background-color: RGBA(247, 247, 247, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-dark {
  color: #fff !important;
  background-color: RGBA(30, 26, 52, var(--bs-bg-opacity, 1)) !important;
}

.link-primary {
  color: #1C1C1B !important;
}
.link-primary:hover, .link-primary:focus {
  color: #161616 !important;
}

.link-secondary {
  color: #8B969E !important;
}
.link-secondary:hover, .link-secondary:focus {
  color: #a2abb1 !important;
}

.link-success {
  color: #67C23A !important;
}
.link-success:hover, .link-success:focus {
  color: #85ce61 !important;
}

.link-info {
  color: #909399 !important;
}
.link-info:hover, .link-info:focus {
  color: #a6a9ad !important;
}

.link-warning {
  color: #E6A23C !important;
}
.link-warning:hover, .link-warning:focus {
  color: #ebb563 !important;
}

.link-danger {
  color: #F56C6C !important;
}
.link-danger:hover, .link-danger:focus {
  color: #f78989 !important;
}

.link-light {
  color: #F7F7F7 !important;
}
.link-light:hover, .link-light:focus {
  color: #f9f9f9 !important;
}

.link-dark {
  color: #1E1A34 !important;
}
.link-dark:hover, .link-dark:focus {
  color: #18152a !important;
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.sticky-bottom {
  position: sticky;
  bottom: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-sm-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-md-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-lg-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xxl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}

.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}

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

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vr {
  display: inline-block;
  align-self: stretch;
  width: 1px;
  min-height: 1em;
  background-color: currentcolor;
  opacity: 0.25;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-end {
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-start {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

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

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

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

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

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

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

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

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

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

.border-1 {
  --bs-border-width: 1px;
}

.border-2 {
  --bs-border-width: 2px;
}

.border-3 {
  --bs-border-width: 3px;
}

.border-4 {
  --bs-border-width: 4px;
}

.border-5 {
  --bs-border-width: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mx-5 {
  margin-right: 6rem !important;
  margin-left: 6rem !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.5rem !important;
  margin-bottom: 0.5rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fs-4 {
  font-size: 1.125rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rounded-5 {
  border-radius: var(--bs-border-radius-2xl) !important;
}

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

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

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

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

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

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

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: 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.5rem !important;
  }
  .m-sm-2 {
    margin: 1rem !important;
  }
  .m-sm-3 {
    margin: 2rem !important;
  }
  .m-sm-4 {
    margin: 3rem !important;
  }
  .m-sm-5 {
    margin: 6rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-2 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-3 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-sm-4 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-5 {
    margin-right: 6rem !important;
    margin-left: 6rem !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.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-3 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-sm-4 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-5 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !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.5rem !important;
  }
  .mt-sm-2 {
    margin-top: 1rem !important;
  }
  .mt-sm-3 {
    margin-top: 2rem !important;
  }
  .mt-sm-4 {
    margin-top: 3rem !important;
  }
  .mt-sm-5 {
    margin-top: 6rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.5rem !important;
  }
  .me-sm-2 {
    margin-right: 1rem !important;
  }
  .me-sm-3 {
    margin-right: 2rem !important;
  }
  .me-sm-4 {
    margin-right: 3rem !important;
  }
  .me-sm-5 {
    margin-right: 6rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 2rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 6rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-2 {
    margin-left: 1rem !important;
  }
  .ms-sm-3 {
    margin-left: 2rem !important;
  }
  .ms-sm-4 {
    margin-left: 3rem !important;
  }
  .ms-sm-5 {
    margin-left: 6rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.5rem !important;
  }
  .p-sm-2 {
    padding: 1rem !important;
  }
  .p-sm-3 {
    padding: 2rem !important;
  }
  .p-sm-4 {
    padding: 3rem !important;
  }
  .p-sm-5 {
    padding: 6rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-2 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-3 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-sm-4 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-sm-5 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-3 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-sm-4 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-sm-5 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-2 {
    padding-top: 1rem !important;
  }
  .pt-sm-3 {
    padding-top: 2rem !important;
  }
  .pt-sm-4 {
    padding-top: 3rem !important;
  }
  .pt-sm-5 {
    padding-top: 6rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-2 {
    padding-right: 1rem !important;
  }
  .pe-sm-3 {
    padding-right: 2rem !important;
  }
  .pe-sm-4 {
    padding-right: 3rem !important;
  }
  .pe-sm-5 {
    padding-right: 6rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 2rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 3rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 6rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-2 {
    padding-left: 1rem !important;
  }
  .ps-sm-3 {
    padding-left: 2rem !important;
  }
  .ps-sm-4 {
    padding-left: 3rem !important;
  }
  .ps-sm-5 {
    padding-left: 6rem !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.5rem !important;
  }
  .gap-sm-2 {
    gap: 1rem !important;
  }
  .gap-sm-3 {
    gap: 2rem !important;
  }
  .gap-sm-4 {
    gap: 3rem !important;
  }
  .gap-sm-5 {
    gap: 6rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: 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.5rem !important;
  }
  .m-md-2 {
    margin: 1rem !important;
  }
  .m-md-3 {
    margin: 2rem !important;
  }
  .m-md-4 {
    margin: 3rem !important;
  }
  .m-md-5 {
    margin: 6rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-2 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-3 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-md-4 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-5 {
    margin-right: 6rem !important;
    margin-left: 6rem !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.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-3 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-md-4 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-5 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !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.5rem !important;
  }
  .mt-md-2 {
    margin-top: 1rem !important;
  }
  .mt-md-3 {
    margin-top: 2rem !important;
  }
  .mt-md-4 {
    margin-top: 3rem !important;
  }
  .mt-md-5 {
    margin-top: 6rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.5rem !important;
  }
  .me-md-2 {
    margin-right: 1rem !important;
  }
  .me-md-3 {
    margin-right: 2rem !important;
  }
  .me-md-4 {
    margin-right: 3rem !important;
  }
  .me-md-5 {
    margin-right: 6rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-2 {
    margin-bottom: 1rem !important;
  }
  .mb-md-3 {
    margin-bottom: 2rem !important;
  }
  .mb-md-4 {
    margin-bottom: 3rem !important;
  }
  .mb-md-5 {
    margin-bottom: 6rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.5rem !important;
  }
  .ms-md-2 {
    margin-left: 1rem !important;
  }
  .ms-md-3 {
    margin-left: 2rem !important;
  }
  .ms-md-4 {
    margin-left: 3rem !important;
  }
  .ms-md-5 {
    margin-left: 6rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.5rem !important;
  }
  .p-md-2 {
    padding: 1rem !important;
  }
  .p-md-3 {
    padding: 2rem !important;
  }
  .p-md-4 {
    padding: 3rem !important;
  }
  .p-md-5 {
    padding: 6rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-2 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-3 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-md-4 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-md-5 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-3 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-md-4 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-md-5 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.5rem !important;
  }
  .pt-md-2 {
    padding-top: 1rem !important;
  }
  .pt-md-3 {
    padding-top: 2rem !important;
  }
  .pt-md-4 {
    padding-top: 3rem !important;
  }
  .pt-md-5 {
    padding-top: 6rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.5rem !important;
  }
  .pe-md-2 {
    padding-right: 1rem !important;
  }
  .pe-md-3 {
    padding-right: 2rem !important;
  }
  .pe-md-4 {
    padding-right: 3rem !important;
  }
  .pe-md-5 {
    padding-right: 6rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-2 {
    padding-bottom: 1rem !important;
  }
  .pb-md-3 {
    padding-bottom: 2rem !important;
  }
  .pb-md-4 {
    padding-bottom: 3rem !important;
  }
  .pb-md-5 {
    padding-bottom: 6rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.5rem !important;
  }
  .ps-md-2 {
    padding-left: 1rem !important;
  }
  .ps-md-3 {
    padding-left: 2rem !important;
  }
  .ps-md-4 {
    padding-left: 3rem !important;
  }
  .ps-md-5 {
    padding-left: 6rem !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.5rem !important;
  }
  .gap-md-2 {
    gap: 1rem !important;
  }
  .gap-md-3 {
    gap: 2rem !important;
  }
  .gap-md-4 {
    gap: 3rem !important;
  }
  .gap-md-5 {
    gap: 6rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: 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.5rem !important;
  }
  .m-lg-2 {
    margin: 1rem !important;
  }
  .m-lg-3 {
    margin: 2rem !important;
  }
  .m-lg-4 {
    margin: 3rem !important;
  }
  .m-lg-5 {
    margin: 6rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-2 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-3 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-lg-4 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-5 {
    margin-right: 6rem !important;
    margin-left: 6rem !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.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-3 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-lg-4 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-5 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !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.5rem !important;
  }
  .mt-lg-2 {
    margin-top: 1rem !important;
  }
  .mt-lg-3 {
    margin-top: 2rem !important;
  }
  .mt-lg-4 {
    margin-top: 3rem !important;
  }
  .mt-lg-5 {
    margin-top: 6rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.5rem !important;
  }
  .me-lg-2 {
    margin-right: 1rem !important;
  }
  .me-lg-3 {
    margin-right: 2rem !important;
  }
  .me-lg-4 {
    margin-right: 3rem !important;
  }
  .me-lg-5 {
    margin-right: 6rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 2rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 6rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-2 {
    margin-left: 1rem !important;
  }
  .ms-lg-3 {
    margin-left: 2rem !important;
  }
  .ms-lg-4 {
    margin-left: 3rem !important;
  }
  .ms-lg-5 {
    margin-left: 6rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.5rem !important;
  }
  .p-lg-2 {
    padding: 1rem !important;
  }
  .p-lg-3 {
    padding: 2rem !important;
  }
  .p-lg-4 {
    padding: 3rem !important;
  }
  .p-lg-5 {
    padding: 6rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-2 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-3 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-lg-4 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-lg-5 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-3 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-lg-4 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-lg-5 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-2 {
    padding-top: 1rem !important;
  }
  .pt-lg-3 {
    padding-top: 2rem !important;
  }
  .pt-lg-4 {
    padding-top: 3rem !important;
  }
  .pt-lg-5 {
    padding-top: 6rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-2 {
    padding-right: 1rem !important;
  }
  .pe-lg-3 {
    padding-right: 2rem !important;
  }
  .pe-lg-4 {
    padding-right: 3rem !important;
  }
  .pe-lg-5 {
    padding-right: 6rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 2rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 3rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 6rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-2 {
    padding-left: 1rem !important;
  }
  .ps-lg-3 {
    padding-left: 2rem !important;
  }
  .ps-lg-4 {
    padding-left: 3rem !important;
  }
  .ps-lg-5 {
    padding-left: 6rem !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.5rem !important;
  }
  .gap-lg-2 {
    gap: 1rem !important;
  }
  .gap-lg-3 {
    gap: 2rem !important;
  }
  .gap-lg-4 {
    gap: 3rem !important;
  }
  .gap-lg-5 {
    gap: 6rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: 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.5rem !important;
  }
  .m-xl-2 {
    margin: 1rem !important;
  }
  .m-xl-3 {
    margin: 2rem !important;
  }
  .m-xl-4 {
    margin: 3rem !important;
  }
  .m-xl-5 {
    margin: 6rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-2 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-3 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xl-4 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-5 {
    margin-right: 6rem !important;
    margin-left: 6rem !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.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-3 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xl-4 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-5 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !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.5rem !important;
  }
  .mt-xl-2 {
    margin-top: 1rem !important;
  }
  .mt-xl-3 {
    margin-top: 2rem !important;
  }
  .mt-xl-4 {
    margin-top: 3rem !important;
  }
  .mt-xl-5 {
    margin-top: 6rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.5rem !important;
  }
  .me-xl-2 {
    margin-right: 1rem !important;
  }
  .me-xl-3 {
    margin-right: 2rem !important;
  }
  .me-xl-4 {
    margin-right: 3rem !important;
  }
  .me-xl-5 {
    margin-right: 6rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 2rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 6rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-2 {
    margin-left: 1rem !important;
  }
  .ms-xl-3 {
    margin-left: 2rem !important;
  }
  .ms-xl-4 {
    margin-left: 3rem !important;
  }
  .ms-xl-5 {
    margin-left: 6rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.5rem !important;
  }
  .p-xl-2 {
    padding: 1rem !important;
  }
  .p-xl-3 {
    padding: 2rem !important;
  }
  .p-xl-4 {
    padding: 3rem !important;
  }
  .p-xl-5 {
    padding: 6rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-2 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-3 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xl-4 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xl-5 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-3 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xl-4 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xl-5 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-2 {
    padding-top: 1rem !important;
  }
  .pt-xl-3 {
    padding-top: 2rem !important;
  }
  .pt-xl-4 {
    padding-top: 3rem !important;
  }
  .pt-xl-5 {
    padding-top: 6rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-2 {
    padding-right: 1rem !important;
  }
  .pe-xl-3 {
    padding-right: 2rem !important;
  }
  .pe-xl-4 {
    padding-right: 3rem !important;
  }
  .pe-xl-5 {
    padding-right: 6rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 2rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 3rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 6rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-2 {
    padding-left: 1rem !important;
  }
  .ps-xl-3 {
    padding-left: 2rem !important;
  }
  .ps-xl-4 {
    padding-left: 3rem !important;
  }
  .ps-xl-5 {
    padding-left: 6rem !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.5rem !important;
  }
  .gap-xl-2 {
    gap: 1rem !important;
  }
  .gap-xl-3 {
    gap: 2rem !important;
  }
  .gap-xl-4 {
    gap: 3rem !important;
  }
  .gap-xl-5 {
    gap: 6rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: 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.5rem !important;
  }
  .m-xxl-2 {
    margin: 1rem !important;
  }
  .m-xxl-3 {
    margin: 2rem !important;
  }
  .m-xxl-4 {
    margin: 3rem !important;
  }
  .m-xxl-5 {
    margin: 6rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-2 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-3 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xxl-4 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-5 {
    margin-right: 6rem !important;
    margin-left: 6rem !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.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-3 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xxl-4 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-5 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !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.5rem !important;
  }
  .mt-xxl-2 {
    margin-top: 1rem !important;
  }
  .mt-xxl-3 {
    margin-top: 2rem !important;
  }
  .mt-xxl-4 {
    margin-top: 3rem !important;
  }
  .mt-xxl-5 {
    margin-top: 6rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-2 {
    margin-right: 1rem !important;
  }
  .me-xxl-3 {
    margin-right: 2rem !important;
  }
  .me-xxl-4 {
    margin-right: 3rem !important;
  }
  .me-xxl-5 {
    margin-right: 6rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 2rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 6rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-2 {
    margin-left: 1rem !important;
  }
  .ms-xxl-3 {
    margin-left: 2rem !important;
  }
  .ms-xxl-4 {
    margin-left: 3rem !important;
  }
  .ms-xxl-5 {
    margin-left: 6rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.5rem !important;
  }
  .p-xxl-2 {
    padding: 1rem !important;
  }
  .p-xxl-3 {
    padding: 2rem !important;
  }
  .p-xxl-4 {
    padding: 3rem !important;
  }
  .p-xxl-5 {
    padding: 6rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-2 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-3 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xxl-4 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xxl-5 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-3 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xxl-4 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xxl-5 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-2 {
    padding-top: 1rem !important;
  }
  .pt-xxl-3 {
    padding-top: 2rem !important;
  }
  .pt-xxl-4 {
    padding-top: 3rem !important;
  }
  .pt-xxl-5 {
    padding-top: 6rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-2 {
    padding-right: 1rem !important;
  }
  .pe-xxl-3 {
    padding-right: 2rem !important;
  }
  .pe-xxl-4 {
    padding-right: 3rem !important;
  }
  .pe-xxl-5 {
    padding-right: 6rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 2rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 3rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 6rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-2 {
    padding-left: 1rem !important;
  }
  .ps-xxl-3 {
    padding-left: 2rem !important;
  }
  .ps-xxl-4 {
    padding-left: 3rem !important;
  }
  .ps-xxl-5 {
    padding-left: 6rem !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 0.5rem !important;
  }
  .gap-xxl-2 {
    gap: 1rem !important;
  }
  .gap-xxl-3 {
    gap: 2rem !important;
  }
  .gap-xxl-4 {
    gap: 3rem !important;
  }
  .gap-xxl-5 {
    gap: 6rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 1.875rem !important;
  }
  .fs-2 {
    font-size: 1.5rem !important;
  }
  .fs-3 {
    font-size: 1.3125rem !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;
  }
}
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #395357;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #FAFAFA;
  --bs-gray-200: #F2F2F2;
  --bs-gray-300: #E6E6E6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #395357;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #1C1C1B;
  --bs-secondary: #8B969E;
  --bs-success: #67C23A;
  --bs-info: #909399;
  --bs-warning: #E6A23C;
  --bs-danger: #F56C6C;
  --bs-light: #F7F7F7;
  --bs-dark: #1E1A34;
  --bs-primary-rgb: 28, 28, 27;
  --bs-secondary-rgb: 139, 150, 158;
  --bs-success-rgb: 103, 194, 58;
  --bs-info-rgb: 144, 147, 153;
  --bs-warning-rgb: 230, 162, 60;
  --bs-danger-rgb: 245, 108, 108;
  --bs-light-rgb: 247, 247, 247;
  --bs-dark-rgb: 30, 26, 52;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.25rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-2xl: 2rem;
  --bs-border-radius-pill: 50rem;
  --bs-link-color: #1C1C1B;
  --bs-link-hover-color: #161616;
  --bs-code-color: #d63384;
  --bs-highlight-bg: #fff3cd;
}

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

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

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

hr {
  margin: 2rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid;
  opacity: 0.25;
}

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

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

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

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

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

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

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

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

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small, .small {
  font-size: 90%;
}

mark, .mark {
  padding: 0.1875em;
  background-color: var(--bs-highlight-bg);
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: var(--bs-link-color);
  text-decoration: none;
}
a:hover {
  color: var(--bs-link-hover-color);
}

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

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 90%;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 90%;
  color: var(--bs-code-color);
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 90%;
  color: var(--bs-body-bg);
  background-color: var(--bs-body-color);
  border-radius: 0.25rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

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

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

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

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

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

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

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

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

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

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

textarea {
  resize: vertical;
}

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

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

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

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

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

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

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

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

output {
  display: inline-block;
}

iframe {
  border: 0;
}

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

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}

.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}

.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}

.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 2rem;
  font-size: 1.25rem;
}
.blockquote > :last-child {
  margin-bottom: 0;
}

.blockquote-footer {
  margin-top: -2rem;
  margin-bottom: 2rem;
  font-size: 90%;
  color: #395357;
}
.blockquote-footer::before {
  content: "— ";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid var(--bs-border-color);
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 1rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #395357;
}

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

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

.col {
  flex: 1 0 0%;
}

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

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

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

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.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.33333333%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@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.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 2rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 2rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 3rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 6rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 6rem;
  }
}
@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.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 1rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 1rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 2rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 2rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 3rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 3rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 6rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 6rem;
  }
}
@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.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 2rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 2rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 3rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 6rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 6rem;
  }
}
@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.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 2rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 2rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 3rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 6rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 6rem;
  }
}
@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.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 2rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 2rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 3rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 6rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 6rem;
  }
}
.table {
  --bs-table-color: var(--bs-body-color);
  --bs-table-bg: transparent;
  --bs-table-border-color: var(--bs-border-color);
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: var(--bs-body-color);
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: var(--bs-body-color);
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: var(--bs-body-color);
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 2rem;
  color: var(--bs-table-color);
  vertical-align: top;
  border-color: var(--bs-table-border-color);
}
.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}

.table-group-divider {
  border-top: 2px solid currentcolor;
}

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

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

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

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

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

.table-striped-columns > :not(caption) > tr > :nth-child(even) {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}

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

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

.table-primary {
  --bs-table-color: #000;
  --bs-table-bg: #d2d2d1;
  --bs-table-border-color: #bdbdbc;
  --bs-table-striped-bg: #c8c8c7;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bdbdbc;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c2c2c1;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-secondary {
  --bs-table-color: #000;
  --bs-table-bg: #e8eaec;
  --bs-table-border-color: #d1d3d4;
  --bs-table-striped-bg: #dcdee0;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #d1d3d4;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #d7d8da;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-success {
  --bs-table-color: #000;
  --bs-table-bg: #e1f3d8;
  --bs-table-border-color: #cbdbc2;
  --bs-table-striped-bg: #d6e7cd;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #cbdbc2;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #d0e1c8;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-info {
  --bs-table-color: #000;
  --bs-table-bg: #e9e9eb;
  --bs-table-border-color: #d2d2d4;
  --bs-table-striped-bg: #dddddf;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #d2d2d4;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #d8d8d9;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-warning {
  --bs-table-color: #000;
  --bs-table-bg: #faecd8;
  --bs-table-border-color: #e1d4c2;
  --bs-table-striped-bg: #eee0cd;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e1d4c2;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e7dac8;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-danger {
  --bs-table-color: #000;
  --bs-table-bg: #fde2e2;
  --bs-table-border-color: #e4cbcb;
  --bs-table-striped-bg: #f0d7d7;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e4cbcb;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ead1d1;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-light {
  --bs-table-color: #000;
  --bs-table-bg: #F7F7F7;
  --bs-table-border-color: #dedede;
  --bs-table-striped-bg: #ebebeb;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dedede;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e4e4e4;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-dark {
  --bs-table-color: #fff;
  --bs-table-bg: #1E1A34;
  --bs-table-border-color: #353148;
  --bs-table-striped-bg: #29253e;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #353148;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #2f2b43;
  --bs-table-hover-color: #fff;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

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

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.form-label {
  margin-bottom: 0.5rem;
}

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

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

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

.form-text {
  margin-top: 0.5rem;
  font-size: 90%;
  color: #395357;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.25rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control[type=file] {
  overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #8e8e8d;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(28, 28, 27, 0.25);
}
.form-control::-webkit-date-and-time-value {
  height: 2.5em;
}
.form-control::-moz-placeholder {
  color: #395357;
  opacity: 1;
}
.form-control::placeholder {
  color: #395357;
  opacity: 1;
}
.form-control:disabled {
  background-color: #F2F2F2;
  opacity: 1;
}
.form-control::file-selector-button {
  padding: 0.25rem 0.75rem;
  margin: -0.25rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #F2F2F2;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #e6e6e6;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.25rem 0;
  margin-bottom: 0;
  line-height: 2.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext:focus {
  outline: 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  min-height: calc(2.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}

.form-control-lg {
  min-height: calc(2.5em + 0.5rem + 2px);
  padding: 0.25rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.5rem;
}
.form-control-lg::file-selector-button {
  padding: 0.25rem 1rem;
  margin: -0.25rem -1rem;
  margin-inline-end: 1rem;
}

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

.form-control-color {
  width: 3rem;
  height: calc(2.5em + 0.5rem + 2px);
  padding: 0.25rem;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  border: 0 !important;
  border-radius: 0.25rem;
}
.form-control-color::-webkit-color-swatch {
  border-radius: 0.25rem;
}
.form-control-color.form-control-sm {
  height: calc(2.5em + 0.5rem + 2px);
}
.form-control-color.form-control-lg {
  height: calc(2.5em + 0.5rem + 2px);
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.25rem 2.25rem 0.25rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.5;
  color: #212529;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}
.form-select:focus {
  border-color: #8e8e8d;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(28, 28, 27, 0.25);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}
.form-select:disabled {
  background-color: #F2F2F2;
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #212529;
}

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

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

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

.form-check-reverse {
  padding-right: 1.5em;
  padding-left: 0;
  text-align: right;
}
.form-check-reverse .form-check-input {
  float: right;
  margin-right: -1.5em;
  margin-left: 0;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}
.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: #8e8e8d;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(28, 28, 27, 0.25);
}
.form-check-input:checked {
  background-color: #1C1C1B;
  border-color: #1C1C1B;
}
.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input[type=checkbox]:indeterminate {
  background-color: #1C1C1B;
  border-color: #1C1C1B;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  cursor: default;
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}
.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none;
  }
}
.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%238e8e8d'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.form-switch.form-check-reverse {
  padding-right: 2.5em;
  padding-left: 0;
}
.form-switch.form-check-reverse .form-check-input {
  margin-right: -2.5em;
  margin-left: 0;
}

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

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}

.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(28, 28, 27, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(28, 28, 27, 0.25);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #1C1C1B;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: #bbbbbb;
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #E6E6E6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #1C1C1B;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: #bbbbbb;
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #E6E6E6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.form-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem 0.75rem;
  overflow: hidden;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext {
  padding: 1rem 0.75rem;
}
.form-floating > .form-control::-moz-placeholder, .form-floating > .form-control-plaintext::-moz-placeholder {
  color: transparent;
}
.form-floating > .form-control::placeholder,
.form-floating > .form-control-plaintext::placeholder {
  color: transparent;
}
.form-floating > .form-control:not(:-moz-placeholder-shown), .form-floating > .form-control-plaintext:not(:-moz-placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown),
.form-floating > .form-control-plaintext:focus,
.form-floating > .form-control-plaintext:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill,
.form-floating > .form-control-plaintext:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control-plaintext ~ label {
  border-width: 1px 0;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-select,
.input-group > .form-floating {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus,
.input-group > .form-floating:focus-within {
  z-index: 5;
}
.input-group .btn {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus {
  z-index: 5;
}

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

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

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

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

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control,
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4),
.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control,
.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .form-floating:not(:first-child) > .form-control,
.input-group > .form-floating:not(:first-child) > .form-select {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.5rem;
  font-size: 90%;
  color: #67C23A;
}

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

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

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #67C23A;
  padding-right: calc(2.5em + 0.5rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2367C23A' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.625em + 0.125rem) center;
  background-size: calc(1.25em + 0.25rem) calc(1.25em + 0.25rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #67C23A;
  box-shadow: 0 0 0 0.25rem rgba(103, 194, 58, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(2.5em + 0.5rem);
  background-position: top calc(0.625em + 0.125rem) right calc(0.625em + 0.125rem);
}

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

.was-validated .form-control-color:valid, .form-control-color.is-valid {
  width: calc(3rem + calc(2.5em + 0.5rem));
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #67C23A;
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: #67C23A;
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(103, 194, 58, 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #67C23A;
}

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

.was-validated .input-group > .form-control:not(:focus):valid, .input-group > .form-control:not(:focus).is-valid,
.was-validated .input-group > .form-select:not(:focus):valid,
.input-group > .form-select:not(:focus).is-valid,
.was-validated .input-group > .form-floating:not(:focus-within):valid,
.input-group > .form-floating:not(:focus-within).is-valid {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.5rem;
  font-size: 90%;
  color: #F56C6C;
}

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

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

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

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(2.5em + 0.5rem);
  background-position: top calc(0.625em + 0.125rem) right calc(0.625em + 0.125rem);
}

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

.was-validated .form-control-color:invalid, .form-control-color.is-invalid {
  width: calc(3rem + calc(2.5em + 0.5rem));
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #F56C6C;
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: #F56C6C;
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(245, 108, 108, 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #F56C6C;
}

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

.was-validated .input-group > .form-control:not(:focus):invalid, .input-group > .form-control:not(:focus).is-invalid,
.was-validated .input-group > .form-select:not(:focus):invalid,
.input-group > .form-select:not(:focus).is-invalid,
.was-validated .input-group > .form-floating:not(:focus-within):invalid,
.input-group > .form-floating:not(:focus-within).is-invalid {
  z-index: 4;
}

.btn {
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.25rem;
  --bs-btn-font-family: ;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 2.5;
  --bs-btn-color: #212529;
  --bs-btn-bg: transparent;
  --bs-btn-border-width: 1px;
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: 0.25rem;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}
.btn-check + .btn:hover {
  color: var(--bs-btn-color);
  background-color: var(--bs-btn-bg);
  border-color: var(--bs-btn-border-color);
}
.btn:focus-visible {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:focus-visible + .btn {
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: var(--bs-btn-active-border-color);
}
.btn-check:checked + .btn:focus-visible, :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible {
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  color: var(--bs-btn-disabled-color);
  pointer-events: none;
  background-color: var(--bs-btn-disabled-bg);
  border-color: var(--bs-btn-disabled-border-color);
  opacity: var(--bs-btn-disabled-opacity);
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #1C1C1B;
  --bs-btn-border-color: #1C1C1B;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #181817;
  --bs-btn-hover-border-color: #161616;
  --bs-btn-focus-shadow-rgb: 62, 62, 61;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #161616;
  --bs-btn-active-border-color: #151514;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #1C1C1B;
  --bs-btn-disabled-border-color: #1C1C1B;
}

.btn-secondary {
  --bs-btn-color: #000;
  --bs-btn-bg: #8B969E;
  --bs-btn-border-color: #8B969E;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #9ca6ad;
  --bs-btn-hover-border-color: #97a1a8;
  --bs-btn-focus-shadow-rgb: 118, 128, 134;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #a2abb1;
  --bs-btn-active-border-color: #97a1a8;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #8B969E;
  --bs-btn-disabled-border-color: #8B969E;
}

.btn-success {
  --bs-btn-color: #000;
  --bs-btn-bg: #67C23A;
  --bs-btn-border-color: #67C23A;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #7ecb58;
  --bs-btn-hover-border-color: #76c84e;
  --bs-btn-focus-shadow-rgb: 88, 165, 49;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #85ce61;
  --bs-btn-active-border-color: #76c84e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #67C23A;
  --bs-btn-disabled-border-color: #67C23A;
}

.btn-info {
  --bs-btn-color: #000;
  --bs-btn-bg: #909399;
  --bs-btn-border-color: #909399;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #a1a3a8;
  --bs-btn-hover-border-color: #9b9ea3;
  --bs-btn-focus-shadow-rgb: 122, 125, 130;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #a6a9ad;
  --bs-btn-active-border-color: #9b9ea3;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #909399;
  --bs-btn-disabled-border-color: #909399;
}

.btn-warning {
  --bs-btn-color: #000;
  --bs-btn-bg: #E6A23C;
  --bs-btn-border-color: #E6A23C;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #eab059;
  --bs-btn-hover-border-color: #e9ab50;
  --bs-btn-focus-shadow-rgb: 196, 138, 51;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ebb563;
  --bs-btn-active-border-color: #e9ab50;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #E6A23C;
  --bs-btn-disabled-border-color: #E6A23C;
}

.btn-danger {
  --bs-btn-color: #000;
  --bs-btn-bg: #F56C6C;
  --bs-btn-border-color: #F56C6C;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f78282;
  --bs-btn-hover-border-color: #f67b7b;
  --bs-btn-focus-shadow-rgb: 208, 92, 92;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #f78989;
  --bs-btn-active-border-color: #f67b7b;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #F56C6C;
  --bs-btn-disabled-border-color: #F56C6C;
}

.btn-light {
  --bs-btn-color: #000;
  --bs-btn-bg: #F7F7F7;
  --bs-btn-border-color: #F7F7F7;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #d2d2d2;
  --bs-btn-hover-border-color: #c6c6c6;
  --bs-btn-focus-shadow-rgb: 210, 210, 210;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #c6c6c6;
  --bs-btn-active-border-color: #b9b9b9;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #F7F7F7;
  --bs-btn-disabled-border-color: #F7F7F7;
}

.btn-dark {
  --bs-btn-color: #fff;
  --bs-btn-bg: #1E1A34;
  --bs-btn-border-color: #1E1A34;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #403c52;
  --bs-btn-hover-border-color: #353148;
  --bs-btn-focus-shadow-rgb: 64, 60, 82;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #4b485d;
  --bs-btn-active-border-color: #353148;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #1E1A34;
  --bs-btn-disabled-border-color: #1E1A34;
}

.btn-outline-primary {
  --bs-btn-color: #1C1C1B;
  --bs-btn-border-color: #1C1C1B;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #1C1C1B;
  --bs-btn-hover-border-color: #1C1C1B;
  --bs-btn-focus-shadow-rgb: 28, 28, 27;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #1C1C1B;
  --bs-btn-active-border-color: #1C1C1B;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #1C1C1B;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #1C1C1B;
  --bs-gradient: none;
}

.btn-outline-secondary {
  --bs-btn-color: #8B969E;
  --bs-btn-border-color: #8B969E;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #8B969E;
  --bs-btn-hover-border-color: #8B969E;
  --bs-btn-focus-shadow-rgb: 139, 150, 158;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #8B969E;
  --bs-btn-active-border-color: #8B969E;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #8B969E;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #8B969E;
  --bs-gradient: none;
}

.btn-outline-success {
  --bs-btn-color: #67C23A;
  --bs-btn-border-color: #67C23A;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #67C23A;
  --bs-btn-hover-border-color: #67C23A;
  --bs-btn-focus-shadow-rgb: 103, 194, 58;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #67C23A;
  --bs-btn-active-border-color: #67C23A;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #67C23A;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #67C23A;
  --bs-gradient: none;
}

.btn-outline-info {
  --bs-btn-color: #909399;
  --bs-btn-border-color: #909399;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #909399;
  --bs-btn-hover-border-color: #909399;
  --bs-btn-focus-shadow-rgb: 144, 147, 153;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #909399;
  --bs-btn-active-border-color: #909399;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #909399;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #909399;
  --bs-gradient: none;
}

.btn-outline-warning {
  --bs-btn-color: #E6A23C;
  --bs-btn-border-color: #E6A23C;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #E6A23C;
  --bs-btn-hover-border-color: #E6A23C;
  --bs-btn-focus-shadow-rgb: 230, 162, 60;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #E6A23C;
  --bs-btn-active-border-color: #E6A23C;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #E6A23C;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #E6A23C;
  --bs-gradient: none;
}

.btn-outline-danger {
  --bs-btn-color: #F56C6C;
  --bs-btn-border-color: #F56C6C;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #F56C6C;
  --bs-btn-hover-border-color: #F56C6C;
  --bs-btn-focus-shadow-rgb: 245, 108, 108;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #F56C6C;
  --bs-btn-active-border-color: #F56C6C;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #F56C6C;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #F56C6C;
  --bs-gradient: none;
}

.btn-outline-light {
  --bs-btn-color: #F7F7F7;
  --bs-btn-border-color: #F7F7F7;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #F7F7F7;
  --bs-btn-hover-border-color: #F7F7F7;
  --bs-btn-focus-shadow-rgb: 247, 247, 247;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #F7F7F7;
  --bs-btn-active-border-color: #F7F7F7;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #F7F7F7;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #F7F7F7;
  --bs-gradient: none;
}

.btn-outline-dark {
  --bs-btn-color: #1E1A34;
  --bs-btn-border-color: #1E1A34;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #1E1A34;
  --bs-btn-hover-border-color: #1E1A34;
  --bs-btn-focus-shadow-rgb: 30, 26, 52;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #1E1A34;
  --bs-btn-active-border-color: #1E1A34;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #1E1A34;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #1E1A34;
  --bs-gradient: none;
}

.btn-link {
  --bs-btn-font-weight: 400;
  --bs-btn-color: var(--bs-link-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: var(--bs-link-hover-color);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: var(--bs-link-hover-color);
  --bs-btn-active-border-color: transparent;
  --bs-btn-disabled-color: #395357;
  --bs-btn-disabled-border-color: transparent;
  --bs-btn-box-shadow: none;
  --bs-btn-focus-shadow-rgb: 62, 62, 61;
  text-decoration: none;
}
.btn-link:focus-visible {
  color: var(--bs-btn-color);
}
.btn-link:hover {
  color: var(--bs-btn-hover-color);
}

.btn-lg, .btn-group-lg > .btn {
  --bs-btn-padding-y: 0.25rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 1.25rem;
  --bs-btn-border-radius: 0.5rem;
}

.btn-sm, .btn-group-sm > .btn {
  --bs-btn-padding-y: 0.25rem;
  --bs-btn-padding-x: 0.5rem;
  --bs-btn-font-size: 0.875rem;
  --bs-btn-border-radius: 0.25rem;
}

.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;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

.dropup,
.dropend,
.dropdown,
.dropstart,
.dropup-center,
.dropdown-center {
  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 {
  --bs-dropdown-zindex: 1000;
  --bs-dropdown-min-width: 10rem;
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: 0.5rem;
  --bs-dropdown-spacer: 0.125rem;
  --bs-dropdown-font-size: 1rem;
  --bs-dropdown-color: #212529;
  --bs-dropdown-bg: #fff;
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-border-radius: 0.25rem;
  --bs-dropdown-border-width: 1px;
  --bs-dropdown-inner-border-radius: calc(0.25rem - 1px);
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-divider-margin-y: 1rem;
  --bs-dropdown-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-dropdown-link-color: #212529;
  --bs-dropdown-link-hover-color: #1e2125;
  --bs-dropdown-link-hover-bg: #F2F2F2;
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #1C1C1B;
  --bs-dropdown-link-disabled-color: #adb5bd;
  --bs-dropdown-item-padding-x: 2rem;
  --bs-dropdown-item-padding-y: 0.5rem;
  --bs-dropdown-header-color: #395357;
  --bs-dropdown-header-padding-x: 2rem;
  --bs-dropdown-header-padding-y: 0.5rem;
  position: absolute;
  z-index: var(--bs-dropdown-zindex);
  display: none;
  min-width: var(--bs-dropdown-min-width);
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  margin: 0;
  font-size: var(--bs-dropdown-font-size);
  color: var(--bs-dropdown-color);
  text-align: left;
  list-style: none;
  background-color: var(--bs-dropdown-bg);
  background-clip: padding-box;
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  border-radius: var(--bs-dropdown-border-radius);
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: var(--bs-dropdown-spacer);
}

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

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

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: var(--bs-dropdown-spacer);
}
.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: var(--bs-dropdown-spacer);
}
.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: var(--bs-dropdown-spacer);
}
.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: var(--bs-dropdown-divider-margin-y) 0;
  overflow: hidden;
  border-top: 1px solid var(--bs-dropdown-divider-bg);
  opacity: 1;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  clear: both;
  font-weight: 400;
  color: var(--bs-dropdown-link-color);
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: var(--bs-dropdown-link-hover-color);
  background-color: var(--bs-dropdown-link-hover-bg);
}
.dropdown-item.active, .dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--bs-dropdown-link-active-bg);
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: var(--bs-dropdown-link-disabled-color);
  pointer-events: none;
  background-color: transparent;
}

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

.dropdown-header {
  display: block;
  padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--bs-dropdown-header-color);
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  color: var(--bs-dropdown-link-color);
}

.dropdown-menu-dark {
  --bs-dropdown-color: #E6E6E6;
  --bs-dropdown-bg: #343a40;
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-box-shadow: ;
  --bs-dropdown-link-color: #E6E6E6;
  --bs-dropdown-link-hover-color: #fff;
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #1C1C1B;
  --bs-dropdown-link-disabled-color: #adb5bd;
  --bs-dropdown-header-color: #adb5bd;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group {
  border-radius: 0.25rem;
}
.btn-group > :not(.btn-check:first-child) + .btn,
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn.dropdown-toggle-split:first-child,
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:nth-child(n+3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn ~ .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-link-color);
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
  --bs-nav-link-disabled-color: #395357;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  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: var(--bs-nav-link-hover-color);
}
.nav-link.disabled {
  color: var(--bs-nav-link-disabled-color);
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  --bs-nav-tabs-border-width: 1px;
  --bs-nav-tabs-border-color: #E6E6E6;
  --bs-nav-tabs-border-radius: 0.25rem;
  --bs-nav-tabs-link-hover-border-color: #F2F2F2 #F2F2F2 #E6E6E6;
  --bs-nav-tabs-link-active-color: #495057;
  --bs-nav-tabs-link-active-bg: #fff;
  --bs-nav-tabs-link-active-border-color: #E6E6E6 #E6E6E6 #fff;
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
}
.nav-tabs .nav-link {
  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
  background: none;
  border: var(--bs-nav-tabs-border-width) solid transparent;
  border-top-left-radius: var(--bs-nav-tabs-border-radius);
  border-top-right-radius: var(--bs-nav-tabs-border-radius);
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: var(--bs-nav-tabs-link-hover-border-color);
}
.nav-tabs .nav-link.disabled, .nav-tabs .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: var(--bs-nav-tabs-link-active-color);
  background-color: var(--bs-nav-tabs-link-active-bg);
  border-color: var(--bs-nav-tabs-link-active-border-color);
}
.nav-tabs .dropdown-menu {
  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills {
  --bs-nav-pills-border-radius: 0.25rem;
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: #1C1C1B;
}
.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: var(--bs-nav-pills-border-radius);
}
.nav-pills .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  background-color: transparent;
  border-color: transparent;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--bs-nav-pills-link-active-color);
  background-color: var(--bs-nav-pills-link-active-bg);
}

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

.navbar {
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: 1rem;
  --bs-navbar-color: rgba(0, 0, 0, 0.55);
  --bs-navbar-hover-color: rgba(0, 0, 0, 0.7);
  --bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
  --bs-navbar-active-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-brand-padding-y: 0.3125rem;
  --bs-navbar-brand-margin-end: 1rem;
  --bs-navbar-brand-font-size: 1.25rem;
  --bs-navbar-brand-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-nav-link-padding-x: 0.5rem;
  --bs-navbar-toggler-padding-y: 0.25rem;
  --bs-navbar-toggler-padding-x: 0.75rem;
  --bs-navbar-toggler-font-size: 1.25rem;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  --bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.1);
  --bs-navbar-toggler-border-radius: 0.25rem;
  --bs-navbar-toggler-focus-width: 0.25rem;
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: var(--bs-navbar-brand-padding-y);
  padding-bottom: var(--bs-navbar-brand-padding-y);
  margin-right: var(--bs-navbar-brand-margin-end);
  font-size: var(--bs-navbar-brand-font-size);
  color: var(--bs-navbar-brand-color);
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  color: var(--bs-navbar-brand-hover-color);
}

.navbar-nav {
  --bs-nav-link-padding-x: 0;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-navbar-color);
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .show > .nav-link,
.navbar-nav .nav-link.active {
  color: var(--bs-navbar-active-color);
}
.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-navbar-color);
}
.navbar-text a,
.navbar-text a:hover,
.navbar-text a:focus {
  color: var(--bs-navbar-active-color);
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  font-size: var(--bs-navbar-toggler-font-size);
  line-height: 1;
  color: var(--bs-navbar-color);
  background-color: transparent;
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  border-radius: var(--bs-navbar-toggler-border-radius);
  transition: var(--bs-navbar-toggler-transition);
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: var(--bs-navbar-toggler-icon-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
  .navbar-expand-sm .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-sm .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-sm .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
  .navbar-expand-md .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-md .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-md .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  .navbar-expand-lg .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-xl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xxl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-xxl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xxl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: var(--bs-navbar-nav-link-padding-x);
  padding-left: var(--bs-navbar-nav-link-padding-x);
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}
.navbar-expand .offcanvas {
  position: static;
  z-index: auto;
  flex-grow: 1;
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
  background-color: transparent !important;
  border: 0 !important;
  transform: none !important;
  transition: none;
}
.navbar-expand .offcanvas .offcanvas-header {
  display: none;
}
.navbar-expand .offcanvas .offcanvas-body {
  display: flex;
  flex-grow: 0;
  padding: 0;
  overflow-y: visible;
}

.navbar-dark {
  --bs-navbar-color: rgba(255, 255, 255, 0.55);
  --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
  --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
  --bs-navbar-active-color: #fff;
  --bs-navbar-brand-color: #fff;
  --bs-navbar-brand-hover-color: #fff;
  --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.card {
  --bs-card-spacer-y: 2rem;
  --bs-card-spacer-x: 2rem;
  --bs-card-title-spacer-y: 1rem;
  --bs-card-border-width: 1px;
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: 0.25rem;
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: calc(0.25rem - 1px);
  --bs-card-cap-padding-y: 1rem;
  --bs-card-cap-padding-x: 2rem;
  --bs-card-cap-bg: rgba(0, 0, 0, 0.03);
  --bs-card-cap-color: ;
  --bs-card-height: ;
  --bs-card-color: ;
  --bs-card-bg: #fff;
  --bs-card-img-overlay-padding: 2rem;
  --bs-card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: var(--bs-card-border-radius);
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color);
}

.card-title {
  margin-bottom: var(--bs-card-title-spacer-y);
}

.card-subtitle {
  margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link + .card-link {
  margin-left: var(--bs-card-spacer-x);
}

.card-header {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  margin-bottom: 0;
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
.card-header:first-child {
  border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
}

.card-footer {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
.card-footer:last-child {
  border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
}

.card-header-tabs {
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
  border-bottom: 0;
}
.card-header-tabs .nav-link.active {
  background-color: var(--bs-card-bg);
  border-bottom-color: var(--bs-card-bg);
}

.card-header-pills {
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: var(--bs-card-img-overlay-padding);
  border-radius: var(--bs-card-inner-border-radius);
}

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}

.card-group > .card {
  margin-bottom: var(--bs-card-group-margin);
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.accordion {
  --bs-accordion-color: #212529;
  --bs-accordion-bg: #fff;
  --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: 1px;
  --bs-accordion-border-radius: 0.25rem;
  --bs-accordion-inner-border-radius: calc(0.25rem - 1px);
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: #212529;
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23191918'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-border-color: #8e8e8d;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(28, 28, 27, 0.25);
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: #191918;
  --bs-accordion-active-bg: #e8e8e8;
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1rem;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--bs-accordion-active-bg);
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon);
  transform: var(--bs-accordion-btn-icon-transform);
}
.accordion-button::after {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  content: "";
  background-image: var(--bs-accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  border-color: var(--bs-accordion-btn-focus-border-color);
  outline: 0;
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}

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

.accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}
.accordion-item:first-of-type {
  border-top-left-radius: var(--bs-accordion-border-radius);
  border-top-right-radius: var(--bs-accordion-border-radius);
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
  border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}

.accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}

.accordion-flush .accordion-collapse {
  border-width: 0;
}
.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}
.accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
  border-radius: 0;
}

.breadcrumb {
  --bs-breadcrumb-padding-x: 0;
  --bs-breadcrumb-padding-y: 0;
  --bs-breadcrumb-margin-bottom: 1rem;
  --bs-breadcrumb-bg: ;
  --bs-breadcrumb-border-radius: ;
  --bs-breadcrumb-divider-color: #395357;
  --bs-breadcrumb-item-padding-x: 0.5rem;
  --bs-breadcrumb-item-active-color: #395357;
  display: flex;
  flex-wrap: wrap;
  padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
  margin-bottom: var(--bs-breadcrumb-margin-bottom);
  font-size: var(--bs-breadcrumb-font-size);
  list-style: none;
  background-color: var(--bs-breadcrumb-bg);
  border-radius: var(--bs-breadcrumb-border-radius);
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: var(--bs-breadcrumb-item-padding-x);
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: var(--bs-breadcrumb-divider-color);
  content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
}
.breadcrumb-item.active {
  color: var(--bs-breadcrumb-item-active-color);
}

.pagination {
  --bs-pagination-padding-x: 0.75rem;
  --bs-pagination-padding-y: 0.375rem;
  --bs-pagination-font-size: 1rem;
  --bs-pagination-color: var(--bs-link-color);
  --bs-pagination-bg: #fff;
  --bs-pagination-border-width: 1px;
  --bs-pagination-border-color: #E6E6E6;
  --bs-pagination-border-radius: 0.25rem;
  --bs-pagination-hover-color: var(--bs-link-hover-color);
  --bs-pagination-hover-bg: #F2F2F2;
  --bs-pagination-hover-border-color: #E6E6E6;
  --bs-pagination-focus-color: var(--bs-link-hover-color);
  --bs-pagination-focus-bg: #F2F2F2;
  --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(28, 28, 27, 0.25);
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: #1C1C1B;
  --bs-pagination-active-border-color: #1C1C1B;
  --bs-pagination-disabled-color: #395357;
  --bs-pagination-disabled-bg: #fff;
  --bs-pagination-disabled-border-color: #E6E6E6;
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  font-size: var(--bs-pagination-font-size);
  color: var(--bs-pagination-color);
  background-color: var(--bs-pagination-bg);
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .page-link {
    transition: none;
  }
}
.page-link:hover {
  z-index: 2;
  color: var(--bs-pagination-hover-color);
  background-color: var(--bs-pagination-hover-bg);
  border-color: var(--bs-pagination-hover-border-color);
}
.page-link:focus {
  z-index: 3;
  color: var(--bs-pagination-focus-color);
  background-color: var(--bs-pagination-focus-bg);
  outline: 0;
  box-shadow: var(--bs-pagination-focus-box-shadow);
}
.page-link.active, .active > .page-link {
  z-index: 3;
  color: var(--bs-pagination-active-color);
  background-color: var(--bs-pagination-active-bg);
  border-color: var(--bs-pagination-active-border-color);
}
.page-link.disabled, .disabled > .page-link {
  color: var(--bs-pagination-disabled-color);
  pointer-events: none;
  background-color: var(--bs-pagination-disabled-bg);
  border-color: var(--bs-pagination-disabled-border-color);
}

.page-item:not(:first-child) .page-link {
  margin-left: -1px;
}
.page-item:first-child .page-link {
  border-top-left-radius: var(--bs-pagination-border-radius);
  border-bottom-left-radius: var(--bs-pagination-border-radius);
}
.page-item:last-child .page-link {
  border-top-right-radius: var(--bs-pagination-border-radius);
  border-bottom-right-radius: var(--bs-pagination-border-radius);
}

.pagination-lg {
  --bs-pagination-padding-x: 1.5rem;
  --bs-pagination-padding-y: 0.75rem;
  --bs-pagination-font-size: 1.25rem;
  --bs-pagination-border-radius: 0.5rem;
}

.pagination-sm {
  --bs-pagination-padding-x: 0.5rem;
  --bs-pagination-padding-y: 0.25rem;
  --bs-pagination-font-size: 0.875rem;
  --bs-pagination-border-radius: 0.25rem;
}

.badge {
  --bs-badge-padding-x: 0.65em;
  --bs-badge-padding-y: 0.35em;
  --bs-badge-font-size: 0.75em;
  --bs-badge-font-weight: 700;
  --bs-badge-color: #fff;
  --bs-badge-border-radius: 0.25rem;
  display: inline-block;
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  font-size: var(--bs-badge-font-size);
  font-weight: var(--bs-badge-font-weight);
  line-height: 1;
  color: var(--bs-badge-color);
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: var(--bs-badge-border-radius);
}
.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.alert {
  --bs-alert-bg: transparent;
  --bs-alert-padding-x: 1rem;
  --bs-alert-padding-y: 1rem;
  --bs-alert-margin-bottom: 1rem;
  --bs-alert-color: inherit;
  --bs-alert-border-color: transparent;
  --bs-alert-border: 1px solid var(--bs-alert-border-color);
  --bs-alert-border-radius: 0.25rem;
  position: relative;
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  margin-bottom: var(--bs-alert-margin-bottom);
  color: var(--bs-alert-color);
  background-color: var(--bs-alert-bg);
  border: var(--bs-alert-border);
  border-radius: var(--bs-alert-border-radius);
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 3rem;
}
.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}

.alert-primary {
  --bs-alert-color: #111110;
  --bs-alert-bg: #d2d2d1;
  --bs-alert-border-color: #bbbbbb;
}
.alert-primary .alert-link {
  color: #0e0e0d;
}

.alert-secondary {
  --bs-alert-color: #535a5f;
  --bs-alert-bg: #e8eaec;
  --bs-alert-border-color: #dce0e2;
}
.alert-secondary .alert-link {
  color: #42484c;
}

.alert-success {
  --bs-alert-color: #3e7423;
  --bs-alert-bg: #e1f3d8;
  --bs-alert-border-color: #d1edc4;
}
.alert-success .alert-link {
  color: #325d1c;
}

.alert-info {
  --bs-alert-color: #56585c;
  --bs-alert-bg: #e9e9eb;
  --bs-alert-border-color: #dedfe0;
}
.alert-info .alert-link {
  color: #45464a;
}

.alert-warning {
  --bs-alert-color: #8a6124;
  --bs-alert-bg: #faecd8;
  --bs-alert-border-color: #f8e3c5;
}
.alert-warning .alert-link {
  color: #6e4e1d;
}

.alert-danger {
  --bs-alert-color: #934141;
  --bs-alert-bg: #fde2e2;
  --bs-alert-border-color: #fcd3d3;
}
.alert-danger .alert-link {
  color: #763434;
}

.alert-light {
  --bs-alert-color: #636363;
  --bs-alert-bg: #fdfdfd;
  --bs-alert-border-color: #fdfdfd;
}
.alert-light .alert-link {
  color: #4f4f4f;
}

.alert-dark {
  --bs-alert-color: #12101f;
  --bs-alert-bg: #d2d1d6;
  --bs-alert-border-color: #bcbac2;
}
.alert-dark .alert-link {
  color: #0e0d19;
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}
.progress {
  --bs-progress-height: 1rem;
  --bs-progress-font-size: 0.75rem;
  --bs-progress-bg: #F2F2F2;
  --bs-progress-border-radius: 0.25rem;
  --bs-progress-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --bs-progress-bar-color: #fff;
  --bs-progress-bar-bg: #1C1C1B;
  --bs-progress-bar-transition: width 0.6s ease;
  display: flex;
  height: var(--bs-progress-height);
  overflow: hidden;
  font-size: var(--bs-progress-font-size);
  background-color: var(--bs-progress-bg);
  border-radius: var(--bs-progress-border-radius);
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--bs-progress-bar-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--bs-progress-bar-bg);
  transition: var(--bs-progress-bar-transition);
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: var(--bs-progress-height) var(--bs-progress-height);
}

.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    animation: none;
  }
}

.list-group {
  --bs-list-group-color: #212529;
  --bs-list-group-bg: #fff;
  --bs-list-group-border-color: rgba(0, 0, 0, 0.125);
  --bs-list-group-border-width: 1px;
  --bs-list-group-border-radius: 0.25rem;
  --bs-list-group-item-padding-x: 2rem;
  --bs-list-group-item-padding-y: 1rem;
  --bs-list-group-action-color: #495057;
  --bs-list-group-action-hover-color: #495057;
  --bs-list-group-action-hover-bg: #FAFAFA;
  --bs-list-group-action-active-color: #212529;
  --bs-list-group-action-active-bg: #F2F2F2;
  --bs-list-group-disabled-color: #395357;
  --bs-list-group-disabled-bg: #fff;
  --bs-list-group-active-color: #fff;
  --bs-list-group-active-bg: #1C1C1B;
  --bs-list-group-active-border-color: #1C1C1B;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: var(--bs-list-group-border-radius);
}

.list-group-numbered {
  list-style-type: none;
  counter-reset: section;
}
.list-group-numbered > .list-group-item::before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}

.list-group-item-action {
  width: 100%;
  color: var(--bs-list-group-action-color);
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: var(--bs-list-group-action-hover-color);
  text-decoration: none;
  background-color: var(--bs-list-group-action-hover-bg);
}
.list-group-item-action:active {
  color: var(--bs-list-group-action-active-color);
  background-color: var(--bs-list-group-action-active-bg);
}

.list-group-item {
  position: relative;
  display: block;
  padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
  color: var(--bs-list-group-color);
  background-color: var(--bs-list-group-bg);
  border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: var(--bs-list-group-disabled-color);
  pointer-events: none;
  background-color: var(--bs-list-group-disabled-bg);
}
.list-group-item.active {
  z-index: 2;
  color: var(--bs-list-group-active-color);
  background-color: var(--bs-list-group-active-bg);
  border-color: var(--bs-list-group-active-border-color);
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: calc(-1 * var(--bs-list-group-border-width));
  border-top-width: var(--bs-list-group-border-width);
}

.list-group-horizontal {
  flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child:not(:last-child) {
  border-bottom-left-radius: var(--bs-list-group-border-radius);
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child:not(:first-child) {
  border-top-right-radius: var(--bs-list-group-border-radius);
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: var(--bs-list-group-border-width);
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: calc(-1 * var(--bs-list-group-border-width));
  border-left-width: var(--bs-list-group-border-width);
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 1400px) {
  .list-group-horizontal-xxl {
    flex-direction: row;
  }
  .list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 var(--bs-list-group-border-width);
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: #111110;
  background-color: #d2d2d1;
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #111110;
  background-color: #bdbdbc;
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #111110;
  border-color: #111110;
}

.list-group-item-secondary {
  color: #535a5f;
  background-color: #e8eaec;
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #535a5f;
  background-color: #d1d3d4;
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #535a5f;
  border-color: #535a5f;
}

.list-group-item-success {
  color: #3e7423;
  background-color: #e1f3d8;
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #3e7423;
  background-color: #cbdbc2;
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #3e7423;
  border-color: #3e7423;
}

.list-group-item-info {
  color: #56585c;
  background-color: #e9e9eb;
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #56585c;
  background-color: #d2d2d4;
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #56585c;
  border-color: #56585c;
}

.list-group-item-warning {
  color: #8a6124;
  background-color: #faecd8;
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #8a6124;
  background-color: #e1d4c2;
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #8a6124;
  border-color: #8a6124;
}

.list-group-item-danger {
  color: #934141;
  background-color: #fde2e2;
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #934141;
  background-color: #e4cbcb;
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #934141;
  border-color: #934141;
}

.list-group-item-light {
  color: #636363;
  background-color: #fdfdfd;
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #636363;
  background-color: #e4e4e4;
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #636363;
  border-color: #636363;
}

.list-group-item-dark {
  color: #12101f;
  background-color: #d2d1d6;
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #12101f;
  background-color: #bdbcc1;
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #12101f;
  border-color: #12101f;
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5;
}
.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}
.btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(28, 28, 27, 0.25);
  opacity: 1;
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: 0.25;
}

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.toast {
  --bs-toast-zindex: 1090;
  --bs-toast-padding-x: 0.75rem;
  --bs-toast-padding-y: 0.5rem;
  --bs-toast-spacing: 1.5rem;
  --bs-toast-max-width: 350px;
  --bs-toast-font-size: 0.875rem;
  --bs-toast-color: ;
  --bs-toast-bg: rgba(255, 255, 255, 0.85);
  --bs-toast-border-width: 1px;
  --bs-toast-border-color: var(--bs-border-color-translucent);
  --bs-toast-border-radius: 0.25rem;
  --bs-toast-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-toast-header-color: #395357;
  --bs-toast-header-bg: rgba(255, 255, 255, 0.85);
  --bs-toast-header-border-color: rgba(0, 0, 0, 0.05);
  width: var(--bs-toast-max-width);
  max-width: 100%;
  font-size: var(--bs-toast-font-size);
  color: var(--bs-toast-color);
  pointer-events: auto;
  background-color: var(--bs-toast-bg);
  background-clip: padding-box;
  border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
  box-shadow: var(--bs-toast-box-shadow);
  border-radius: var(--bs-toast-border-radius);
}
.toast.showing {
  opacity: 0;
}
.toast:not(.show) {
  display: none;
}

.toast-container {
  --bs-toast-zindex: 1090;
  position: absolute;
  z-index: var(--bs-toast-zindex);
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  pointer-events: none;
}
.toast-container > :not(:last-child) {
  margin-bottom: var(--bs-toast-spacing);
}

.toast-header {
  display: flex;
  align-items: center;
  padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
  color: var(--bs-toast-header-color);
  background-color: var(--bs-toast-header-bg);
  background-clip: padding-box;
  border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
  border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
  border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
}
.toast-header .btn-close {
  margin-right: calc(-0.5 * var(--bs-toast-padding-x));
  margin-left: var(--bs-toast-padding-x);
}

.toast-body {
  padding: var(--bs-toast-padding-x);
  word-wrap: break-word;
}

.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 2rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: ;
  --bs-modal-bg: #fff;
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: 1px;
  --bs-modal-border-radius: 0.5rem;
  --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-modal-inner-border-radius: calc(0.5rem - 1px);
  --bs-modal-header-padding-x: 2rem;
  --bs-modal-header-padding-y: 2rem;
  --bs-modal-header-padding: 2rem 2rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: 1px;
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: 1px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  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% - var(--bs-modal-margin) * 2);
}
.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% - var(--bs-modal-margin) * 2);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0;
}

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
}
.modal-header .btn-close {
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height);
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding);
}

.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}
.modal-footer > * {
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
}

@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }
  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }
  .modal-sm {
    --bs-modal-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    --bs-modal-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-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,
.modal-fullscreen .modal-footer {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}

@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,
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
}
@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,
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
}
@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,
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
}
@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,
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
}
@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,
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
}
.tooltip {
  --bs-tooltip-zindex: 1080;
  --bs-tooltip-max-width: 200px;
  --bs-tooltip-padding-x: 1rem;
  --bs-tooltip-padding-y: 0.5rem;
  --bs-tooltip-margin: ;
  --bs-tooltip-font-size: 0.875rem;
  --bs-tooltip-color: #fff;
  --bs-tooltip-bg: #000;
  --bs-tooltip-border-radius: 0.25rem;
  --bs-tooltip-opacity: 0.9;
  --bs-tooltip-arrow-width: 0.8rem;
  --bs-tooltip-arrow-height: 0.4rem;
  z-index: var(--bs-tooltip-zindex);
  display: block;
  padding: var(--bs-tooltip-arrow-height);
  margin: var(--bs-tooltip-margin);
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: var(--bs-tooltip-font-size);
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: var(--bs-tooltip-opacity);
}
.tooltip .tooltip-arrow {
  display: block;
  width: var(--bs-tooltip-arrow-width);
  height: var(--bs-tooltip-arrow-height);
}
.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  bottom: 0;
}
.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  top: -1px;
  border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  border-top-color: var(--bs-tooltip-bg);
}

/* rtl:begin:ignore */
.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  left: 0;
  width: var(--bs-tooltip-arrow-height);
  height: var(--bs-tooltip-arrow-width);
}
.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  right: -1px;
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  border-right-color: var(--bs-tooltip-bg);
}

/* rtl:end:ignore */
.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  top: 0;
}
.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  border-bottom-color: var(--bs-tooltip-bg);
}

/* rtl:begin:ignore */
.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  right: 0;
  width: var(--bs-tooltip-arrow-height);
  height: var(--bs-tooltip-arrow-width);
}
.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  left: -1px;
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  border-left-color: var(--bs-tooltip-bg);
}

/* rtl:end:ignore */
.tooltip-inner {
  max-width: var(--bs-tooltip-max-width);
  padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
  color: var(--bs-tooltip-color);
  text-align: center;
  background-color: var(--bs-tooltip-bg);
  border-radius: var(--bs-tooltip-border-radius);
}

.popover {
  --bs-popover-zindex: 1070;
  --bs-popover-max-width: 276px;
  --bs-popover-font-size: 0.875rem;
  --bs-popover-bg: #fff;
  --bs-popover-border-width: 1px;
  --bs-popover-border-color: var(--bs-border-color-translucent);
  --bs-popover-border-radius: 0.5rem;
  --bs-popover-inner-border-radius: calc(0.5rem - 1px);
  --bs-popover-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-popover-header-padding-x: 2rem;
  --bs-popover-header-padding-y: 0.5rem;
  --bs-popover-header-font-size: 1rem;
  --bs-popover-header-color: ;
  --bs-popover-header-bg: #f0f0f0;
  --bs-popover-body-padding-x: 2rem;
  --bs-popover-body-padding-y: 2rem;
  --bs-popover-body-color: #212529;
  --bs-popover-arrow-width: 1rem;
  --bs-popover-arrow-height: 0.5rem;
  --bs-popover-arrow-border: var(--bs-popover-border-color);
  z-index: var(--bs-popover-zindex);
  display: block;
  max-width: var(--bs-popover-max-width);
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: var(--bs-popover-font-size);
  word-wrap: break-word;
  background-color: var(--bs-popover-bg);
  background-clip: padding-box;
  border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-radius: var(--bs-popover-border-radius);
}
.popover .popover-arrow {
  display: block;
  width: var(--bs-popover-arrow-width);
  height: var(--bs-popover-arrow-height);
}
.popover .popover-arrow::before, .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
  border-width: 0;
}

.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before, .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  bottom: 0;
  border-top-color: var(--bs-popover-arrow-border);
}
.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  bottom: var(--bs-popover-border-width);
  border-top-color: var(--bs-popover-bg);
}

/* rtl:begin:ignore */
.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before, .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  left: 0;
  border-right-color: var(--bs-popover-arrow-border);
}
.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  left: var(--bs-popover-border-width);
  border-right-color: var(--bs-popover-bg);
}

/* rtl:end:ignore */
.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  top: 0;
  border-bottom-color: var(--bs-popover-arrow-border);
}
.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  top: var(--bs-popover-border-width);
  border-bottom-color: var(--bs-popover-bg);
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: var(--bs-popover-arrow-width);
  margin-left: calc(-0.5 * var(--bs-popover-arrow-width));
  content: "";
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
}

/* rtl:begin:ignore */
.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before, .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  right: 0;
  border-left-color: var(--bs-popover-arrow-border);
}
.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  right: var(--bs-popover-border-width);
  border-left-color: var(--bs-popover-bg);
}

/* rtl:end:ignore */
.popover-header {
  padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
  margin-bottom: 0;
  font-size: var(--bs-popover-header-font-size);
  color: var(--bs-popover-header-color);
  background-color: var(--bs-popover-header-bg);
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-top-left-radius: var(--bs-popover-inner-border-radius);
  border-top-right-radius: var(--bs-popover-inner-border-radius);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
  color: var(--bs-popover-body-color);
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-start,
  .carousel-fade .active.carousel-item-end {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

/* rtl:options: {
  "autoRename": true,
  "stringMap":[ {
    "name"    : "prev-next",
    "search"  : "prev",
    "replace" : "next"
  } ]
} */
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}

.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}
.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #000;
}
.carousel-dark .carousel-caption {
  color: #000;
}

.spinner-grow,
.spinner-border {
  display: inline-block;
  width: var(--bs-spinner-width);
  height: var(--bs-spinner-height);
  vertical-align: var(--bs-spinner-vertical-align);
  border-radius: 50%;
  animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */;
  }
}
.spinner-border {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -0.125em;
  --bs-spinner-border-width: 0.25em;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-border;
  border: var(--bs-spinner-border-width) solid currentcolor;
  border-right-color: transparent;
}

.spinner-border-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
  --bs-spinner-border-width: 0.2em;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.spinner-grow {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -0.125em;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-grow;
  background-color: currentcolor;
  opacity: 0;
}

.spinner-grow-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    --bs-spinner-animation-speed: 1.5s;
  }
}
.offcanvas, .offcanvas-xxl, .offcanvas-xl, .offcanvas-lg, .offcanvas-md, .offcanvas-sm {
  --bs-offcanvas-zindex: 1045;
  --bs-offcanvas-width: 400px;
  --bs-offcanvas-height: 30vh;
  --bs-offcanvas-padding-x: 2rem;
  --bs-offcanvas-padding-y: 2rem;
  --bs-offcanvas-color: ;
  --bs-offcanvas-bg: #fff;
  --bs-offcanvas-border-width: 1px;
  --bs-offcanvas-border-color: var(--bs-border-color-translucent);
  --bs-offcanvas-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

@media (max-width: 575.98px) {
  .offcanvas-sm {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: transform 0.3s ease-in-out;
  }
}
@media (max-width: 575.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-sm {
    transition: none;
  }
}
@media (max-width: 575.98px) {
  .offcanvas-sm.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-sm.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-sm.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-sm.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-sm.showing, .offcanvas-sm.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-sm.showing, .offcanvas-sm.hiding, .offcanvas-sm.show {
    visibility: visible;
  }
}
@media (min-width: 576px) {
  .offcanvas-sm {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-sm .offcanvas-header {
    display: none;
  }
  .offcanvas-sm .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 767.98px) {
  .offcanvas-md {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: transform 0.3s ease-in-out;
  }
}
@media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-md {
    transition: none;
  }
}
@media (max-width: 767.98px) {
  .offcanvas-md.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-md.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-md.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-md.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-md.showing, .offcanvas-md.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-md.showing, .offcanvas-md.hiding, .offcanvas-md.show {
    visibility: visible;
  }
}
@media (min-width: 768px) {
  .offcanvas-md {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-md .offcanvas-header {
    display: none;
  }
  .offcanvas-md .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 991.98px) {
  .offcanvas-lg {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: transform 0.3s ease-in-out;
  }
}
@media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-lg {
    transition: none;
  }
}
@media (max-width: 991.98px) {
  .offcanvas-lg.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-lg.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-lg.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-lg.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-lg.showing, .offcanvas-lg.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-lg.showing, .offcanvas-lg.hiding, .offcanvas-lg.show {
    visibility: visible;
  }
}
@media (min-width: 992px) {
  .offcanvas-lg {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-lg .offcanvas-header {
    display: none;
  }
  .offcanvas-lg .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 1199.98px) {
  .offcanvas-xl {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: transform 0.3s ease-in-out;
  }
}
@media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-xl {
    transition: none;
  }
}
@media (max-width: 1199.98px) {
  .offcanvas-xl.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-xl.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-xl.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-xl.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-xl.showing, .offcanvas-xl.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-xl.showing, .offcanvas-xl.hiding, .offcanvas-xl.show {
    visibility: visible;
  }
}
@media (min-width: 1200px) {
  .offcanvas-xl {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-xl .offcanvas-header {
    display: none;
  }
  .offcanvas-xl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 1399.98px) {
  .offcanvas-xxl {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: transform 0.3s ease-in-out;
  }
}
@media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-xxl {
    transition: none;
  }
}
@media (max-width: 1399.98px) {
  .offcanvas-xxl.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-xxl.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-xxl.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-xxl.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-xxl.showing, .offcanvas-xxl.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-xxl.showing, .offcanvas-xxl.hiding, .offcanvas-xxl.show {
    visibility: visible;
  }
}
@media (min-width: 1400px) {
  .offcanvas-xxl {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-xxl .offcanvas-header {
    display: none;
  }
  .offcanvas-xxl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: var(--bs-offcanvas-zindex);
  display: flex;
  flex-direction: column;
  max-width: 100%;
  color: var(--bs-offcanvas-color);
  visibility: hidden;
  background-color: var(--bs-offcanvas-bg);
  background-clip: padding-box;
  outline: 0;
  transition: transform 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .offcanvas {
    transition: none;
  }
}
.offcanvas.offcanvas-start {
  top: 0;
  left: 0;
  width: var(--bs-offcanvas-width);
  border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateX(-100%);
}
.offcanvas.offcanvas-end {
  top: 0;
  right: 0;
  width: var(--bs-offcanvas-width);
  border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateX(100%);
}
.offcanvas.offcanvas-top {
  top: 0;
  right: 0;
  left: 0;
  height: var(--bs-offcanvas-height);
  max-height: 100%;
  border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateY(-100%);
}
.offcanvas.offcanvas-bottom {
  right: 0;
  left: 0;
  height: var(--bs-offcanvas-height);
  max-height: 100%;
  border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateY(100%);
}
.offcanvas.showing, .offcanvas.show:not(.hiding) {
  transform: none;
}
.offcanvas.showing, .offcanvas.hiding, .offcanvas.show {
  visibility: visible;
}

.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.offcanvas-backdrop.fade {
  opacity: 0;
}
.offcanvas-backdrop.show {
  opacity: 0.5;
}

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
}
.offcanvas-header .btn-close {
  padding: calc(var(--bs-offcanvas-padding-y) * 0.5) calc(var(--bs-offcanvas-padding-x) * 0.5);
  margin-top: calc(-0.5 * var(--bs-offcanvas-padding-y));
  margin-right: calc(-0.5 * var(--bs-offcanvas-padding-x));
  margin-bottom: calc(-0.5 * var(--bs-offcanvas-padding-y));
}

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

.offcanvas-body {
  flex-grow: 1;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  overflow-y: auto;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.text-bg-primary {
  color: #fff !important;
  background-color: RGBA(28, 28, 27, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-secondary {
  color: #000 !important;
  background-color: RGBA(139, 150, 158, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-success {
  color: #000 !important;
  background-color: RGBA(103, 194, 58, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-info {
  color: #000 !important;
  background-color: RGBA(144, 147, 153, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-warning {
  color: #000 !important;
  background-color: RGBA(230, 162, 60, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-danger {
  color: #000 !important;
  background-color: RGBA(245, 108, 108, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-light {
  color: #000 !important;
  background-color: RGBA(247, 247, 247, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-dark {
  color: #fff !important;
  background-color: RGBA(30, 26, 52, var(--bs-bg-opacity, 1)) !important;
}

.link-primary {
  color: #1C1C1B !important;
}
.link-primary:hover, .link-primary:focus {
  color: #161616 !important;
}

.link-secondary {
  color: #8B969E !important;
}
.link-secondary:hover, .link-secondary:focus {
  color: #a2abb1 !important;
}

.link-success {
  color: #67C23A !important;
}
.link-success:hover, .link-success:focus {
  color: #85ce61 !important;
}

.link-info {
  color: #909399 !important;
}
.link-info:hover, .link-info:focus {
  color: #a6a9ad !important;
}

.link-warning {
  color: #E6A23C !important;
}
.link-warning:hover, .link-warning:focus {
  color: #ebb563 !important;
}

.link-danger {
  color: #F56C6C !important;
}
.link-danger:hover, .link-danger:focus {
  color: #f78989 !important;
}

.link-light {
  color: #F7F7F7 !important;
}
.link-light:hover, .link-light:focus {
  color: #f9f9f9 !important;
}

.link-dark {
  color: #1E1A34 !important;
}
.link-dark:hover, .link-dark:focus {
  color: #18152a !important;
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.sticky-bottom {
  position: sticky;
  bottom: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-sm-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-md-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-lg-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xxl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}

.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}

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

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vr {
  display: inline-block;
  align-self: stretch;
  width: 1px;
  min-height: 1em;
  background-color: currentcolor;
  opacity: 0.25;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-end {
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-start {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

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

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

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

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

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

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

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

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

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

.border-1 {
  --bs-border-width: 1px;
}

.border-2 {
  --bs-border-width: 2px;
}

.border-3 {
  --bs-border-width: 3px;
}

.border-4 {
  --bs-border-width: 4px;
}

.border-5 {
  --bs-border-width: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mx-5 {
  margin-right: 6rem !important;
  margin-left: 6rem !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.5rem !important;
  margin-bottom: 0.5rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fs-4 {
  font-size: 1.125rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rounded-5 {
  border-radius: var(--bs-border-radius-2xl) !important;
}

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

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

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

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

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

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

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: 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.5rem !important;
  }
  .m-sm-2 {
    margin: 1rem !important;
  }
  .m-sm-3 {
    margin: 2rem !important;
  }
  .m-sm-4 {
    margin: 3rem !important;
  }
  .m-sm-5 {
    margin: 6rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-2 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-3 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-sm-4 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-5 {
    margin-right: 6rem !important;
    margin-left: 6rem !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.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-3 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-sm-4 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-5 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !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.5rem !important;
  }
  .mt-sm-2 {
    margin-top: 1rem !important;
  }
  .mt-sm-3 {
    margin-top: 2rem !important;
  }
  .mt-sm-4 {
    margin-top: 3rem !important;
  }
  .mt-sm-5 {
    margin-top: 6rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.5rem !important;
  }
  .me-sm-2 {
    margin-right: 1rem !important;
  }
  .me-sm-3 {
    margin-right: 2rem !important;
  }
  .me-sm-4 {
    margin-right: 3rem !important;
  }
  .me-sm-5 {
    margin-right: 6rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 2rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 6rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-2 {
    margin-left: 1rem !important;
  }
  .ms-sm-3 {
    margin-left: 2rem !important;
  }
  .ms-sm-4 {
    margin-left: 3rem !important;
  }
  .ms-sm-5 {
    margin-left: 6rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.5rem !important;
  }
  .p-sm-2 {
    padding: 1rem !important;
  }
  .p-sm-3 {
    padding: 2rem !important;
  }
  .p-sm-4 {
    padding: 3rem !important;
  }
  .p-sm-5 {
    padding: 6rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-2 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-3 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-sm-4 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-sm-5 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-3 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-sm-4 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-sm-5 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-2 {
    padding-top: 1rem !important;
  }
  .pt-sm-3 {
    padding-top: 2rem !important;
  }
  .pt-sm-4 {
    padding-top: 3rem !important;
  }
  .pt-sm-5 {
    padding-top: 6rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-2 {
    padding-right: 1rem !important;
  }
  .pe-sm-3 {
    padding-right: 2rem !important;
  }
  .pe-sm-4 {
    padding-right: 3rem !important;
  }
  .pe-sm-5 {
    padding-right: 6rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 2rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 3rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 6rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-2 {
    padding-left: 1rem !important;
  }
  .ps-sm-3 {
    padding-left: 2rem !important;
  }
  .ps-sm-4 {
    padding-left: 3rem !important;
  }
  .ps-sm-5 {
    padding-left: 6rem !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.5rem !important;
  }
  .gap-sm-2 {
    gap: 1rem !important;
  }
  .gap-sm-3 {
    gap: 2rem !important;
  }
  .gap-sm-4 {
    gap: 3rem !important;
  }
  .gap-sm-5 {
    gap: 6rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: 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.5rem !important;
  }
  .m-md-2 {
    margin: 1rem !important;
  }
  .m-md-3 {
    margin: 2rem !important;
  }
  .m-md-4 {
    margin: 3rem !important;
  }
  .m-md-5 {
    margin: 6rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-2 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-3 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-md-4 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-5 {
    margin-right: 6rem !important;
    margin-left: 6rem !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.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-3 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-md-4 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-5 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !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.5rem !important;
  }
  .mt-md-2 {
    margin-top: 1rem !important;
  }
  .mt-md-3 {
    margin-top: 2rem !important;
  }
  .mt-md-4 {
    margin-top: 3rem !important;
  }
  .mt-md-5 {
    margin-top: 6rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.5rem !important;
  }
  .me-md-2 {
    margin-right: 1rem !important;
  }
  .me-md-3 {
    margin-right: 2rem !important;
  }
  .me-md-4 {
    margin-right: 3rem !important;
  }
  .me-md-5 {
    margin-right: 6rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-2 {
    margin-bottom: 1rem !important;
  }
  .mb-md-3 {
    margin-bottom: 2rem !important;
  }
  .mb-md-4 {
    margin-bottom: 3rem !important;
  }
  .mb-md-5 {
    margin-bottom: 6rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.5rem !important;
  }
  .ms-md-2 {
    margin-left: 1rem !important;
  }
  .ms-md-3 {
    margin-left: 2rem !important;
  }
  .ms-md-4 {
    margin-left: 3rem !important;
  }
  .ms-md-5 {
    margin-left: 6rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.5rem !important;
  }
  .p-md-2 {
    padding: 1rem !important;
  }
  .p-md-3 {
    padding: 2rem !important;
  }
  .p-md-4 {
    padding: 3rem !important;
  }
  .p-md-5 {
    padding: 6rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-2 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-3 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-md-4 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-md-5 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-3 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-md-4 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-md-5 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.5rem !important;
  }
  .pt-md-2 {
    padding-top: 1rem !important;
  }
  .pt-md-3 {
    padding-top: 2rem !important;
  }
  .pt-md-4 {
    padding-top: 3rem !important;
  }
  .pt-md-5 {
    padding-top: 6rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.5rem !important;
  }
  .pe-md-2 {
    padding-right: 1rem !important;
  }
  .pe-md-3 {
    padding-right: 2rem !important;
  }
  .pe-md-4 {
    padding-right: 3rem !important;
  }
  .pe-md-5 {
    padding-right: 6rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-2 {
    padding-bottom: 1rem !important;
  }
  .pb-md-3 {
    padding-bottom: 2rem !important;
  }
  .pb-md-4 {
    padding-bottom: 3rem !important;
  }
  .pb-md-5 {
    padding-bottom: 6rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.5rem !important;
  }
  .ps-md-2 {
    padding-left: 1rem !important;
  }
  .ps-md-3 {
    padding-left: 2rem !important;
  }
  .ps-md-4 {
    padding-left: 3rem !important;
  }
  .ps-md-5 {
    padding-left: 6rem !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.5rem !important;
  }
  .gap-md-2 {
    gap: 1rem !important;
  }
  .gap-md-3 {
    gap: 2rem !important;
  }
  .gap-md-4 {
    gap: 3rem !important;
  }
  .gap-md-5 {
    gap: 6rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: 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.5rem !important;
  }
  .m-lg-2 {
    margin: 1rem !important;
  }
  .m-lg-3 {
    margin: 2rem !important;
  }
  .m-lg-4 {
    margin: 3rem !important;
  }
  .m-lg-5 {
    margin: 6rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-2 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-3 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-lg-4 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-5 {
    margin-right: 6rem !important;
    margin-left: 6rem !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.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-3 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-lg-4 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-5 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !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.5rem !important;
  }
  .mt-lg-2 {
    margin-top: 1rem !important;
  }
  .mt-lg-3 {
    margin-top: 2rem !important;
  }
  .mt-lg-4 {
    margin-top: 3rem !important;
  }
  .mt-lg-5 {
    margin-top: 6rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.5rem !important;
  }
  .me-lg-2 {
    margin-right: 1rem !important;
  }
  .me-lg-3 {
    margin-right: 2rem !important;
  }
  .me-lg-4 {
    margin-right: 3rem !important;
  }
  .me-lg-5 {
    margin-right: 6rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 2rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 6rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-2 {
    margin-left: 1rem !important;
  }
  .ms-lg-3 {
    margin-left: 2rem !important;
  }
  .ms-lg-4 {
    margin-left: 3rem !important;
  }
  .ms-lg-5 {
    margin-left: 6rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.5rem !important;
  }
  .p-lg-2 {
    padding: 1rem !important;
  }
  .p-lg-3 {
    padding: 2rem !important;
  }
  .p-lg-4 {
    padding: 3rem !important;
  }
  .p-lg-5 {
    padding: 6rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-2 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-3 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-lg-4 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-lg-5 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-3 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-lg-4 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-lg-5 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-2 {
    padding-top: 1rem !important;
  }
  .pt-lg-3 {
    padding-top: 2rem !important;
  }
  .pt-lg-4 {
    padding-top: 3rem !important;
  }
  .pt-lg-5 {
    padding-top: 6rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-2 {
    padding-right: 1rem !important;
  }
  .pe-lg-3 {
    padding-right: 2rem !important;
  }
  .pe-lg-4 {
    padding-right: 3rem !important;
  }
  .pe-lg-5 {
    padding-right: 6rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 2rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 3rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 6rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-2 {
    padding-left: 1rem !important;
  }
  .ps-lg-3 {
    padding-left: 2rem !important;
  }
  .ps-lg-4 {
    padding-left: 3rem !important;
  }
  .ps-lg-5 {
    padding-left: 6rem !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.5rem !important;
  }
  .gap-lg-2 {
    gap: 1rem !important;
  }
  .gap-lg-3 {
    gap: 2rem !important;
  }
  .gap-lg-4 {
    gap: 3rem !important;
  }
  .gap-lg-5 {
    gap: 6rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: 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.5rem !important;
  }
  .m-xl-2 {
    margin: 1rem !important;
  }
  .m-xl-3 {
    margin: 2rem !important;
  }
  .m-xl-4 {
    margin: 3rem !important;
  }
  .m-xl-5 {
    margin: 6rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-2 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-3 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xl-4 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-5 {
    margin-right: 6rem !important;
    margin-left: 6rem !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.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-3 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xl-4 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-5 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !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.5rem !important;
  }
  .mt-xl-2 {
    margin-top: 1rem !important;
  }
  .mt-xl-3 {
    margin-top: 2rem !important;
  }
  .mt-xl-4 {
    margin-top: 3rem !important;
  }
  .mt-xl-5 {
    margin-top: 6rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.5rem !important;
  }
  .me-xl-2 {
    margin-right: 1rem !important;
  }
  .me-xl-3 {
    margin-right: 2rem !important;
  }
  .me-xl-4 {
    margin-right: 3rem !important;
  }
  .me-xl-5 {
    margin-right: 6rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 2rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 6rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-2 {
    margin-left: 1rem !important;
  }
  .ms-xl-3 {
    margin-left: 2rem !important;
  }
  .ms-xl-4 {
    margin-left: 3rem !important;
  }
  .ms-xl-5 {
    margin-left: 6rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.5rem !important;
  }
  .p-xl-2 {
    padding: 1rem !important;
  }
  .p-xl-3 {
    padding: 2rem !important;
  }
  .p-xl-4 {
    padding: 3rem !important;
  }
  .p-xl-5 {
    padding: 6rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-2 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-3 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xl-4 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xl-5 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-3 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xl-4 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xl-5 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-2 {
    padding-top: 1rem !important;
  }
  .pt-xl-3 {
    padding-top: 2rem !important;
  }
  .pt-xl-4 {
    padding-top: 3rem !important;
  }
  .pt-xl-5 {
    padding-top: 6rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-2 {
    padding-right: 1rem !important;
  }
  .pe-xl-3 {
    padding-right: 2rem !important;
  }
  .pe-xl-4 {
    padding-right: 3rem !important;
  }
  .pe-xl-5 {
    padding-right: 6rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 2rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 3rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 6rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-2 {
    padding-left: 1rem !important;
  }
  .ps-xl-3 {
    padding-left: 2rem !important;
  }
  .ps-xl-4 {
    padding-left: 3rem !important;
  }
  .ps-xl-5 {
    padding-left: 6rem !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.5rem !important;
  }
  .gap-xl-2 {
    gap: 1rem !important;
  }
  .gap-xl-3 {
    gap: 2rem !important;
  }
  .gap-xl-4 {
    gap: 3rem !important;
  }
  .gap-xl-5 {
    gap: 6rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: 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.5rem !important;
  }
  .m-xxl-2 {
    margin: 1rem !important;
  }
  .m-xxl-3 {
    margin: 2rem !important;
  }
  .m-xxl-4 {
    margin: 3rem !important;
  }
  .m-xxl-5 {
    margin: 6rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-2 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-3 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xxl-4 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-5 {
    margin-right: 6rem !important;
    margin-left: 6rem !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.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-3 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xxl-4 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-5 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !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.5rem !important;
  }
  .mt-xxl-2 {
    margin-top: 1rem !important;
  }
  .mt-xxl-3 {
    margin-top: 2rem !important;
  }
  .mt-xxl-4 {
    margin-top: 3rem !important;
  }
  .mt-xxl-5 {
    margin-top: 6rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-2 {
    margin-right: 1rem !important;
  }
  .me-xxl-3 {
    margin-right: 2rem !important;
  }
  .me-xxl-4 {
    margin-right: 3rem !important;
  }
  .me-xxl-5 {
    margin-right: 6rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 2rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 6rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-2 {
    margin-left: 1rem !important;
  }
  .ms-xxl-3 {
    margin-left: 2rem !important;
  }
  .ms-xxl-4 {
    margin-left: 3rem !important;
  }
  .ms-xxl-5 {
    margin-left: 6rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.5rem !important;
  }
  .p-xxl-2 {
    padding: 1rem !important;
  }
  .p-xxl-3 {
    padding: 2rem !important;
  }
  .p-xxl-4 {
    padding: 3rem !important;
  }
  .p-xxl-5 {
    padding: 6rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-2 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-3 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xxl-4 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xxl-5 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-3 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xxl-4 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xxl-5 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-2 {
    padding-top: 1rem !important;
  }
  .pt-xxl-3 {
    padding-top: 2rem !important;
  }
  .pt-xxl-4 {
    padding-top: 3rem !important;
  }
  .pt-xxl-5 {
    padding-top: 6rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-2 {
    padding-right: 1rem !important;
  }
  .pe-xxl-3 {
    padding-right: 2rem !important;
  }
  .pe-xxl-4 {
    padding-right: 3rem !important;
  }
  .pe-xxl-5 {
    padding-right: 6rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 2rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 3rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 6rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-2 {
    padding-left: 1rem !important;
  }
  .ps-xxl-3 {
    padding-left: 2rem !important;
  }
  .ps-xxl-4 {
    padding-left: 3rem !important;
  }
  .ps-xxl-5 {
    padding-left: 6rem !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 0.5rem !important;
  }
  .gap-xxl-2 {
    gap: 1rem !important;
  }
  .gap-xxl-3 {
    gap: 2rem !important;
  }
  .gap-xxl-4 {
    gap: 3rem !important;
  }
  .gap-xxl-5 {
    gap: 6rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 1.875rem !important;
  }
  .fs-2 {
    font-size: 1.5rem !important;
  }
  .fs-3 {
    font-size: 1.3125rem !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;
  }
}
/*
https://github.com/ttskch/select2-bootstrap4-theme
*/
.select2-container--bootstrap4 .select2-selection--single {
  height: calc(2.5em + 0.5rem + 2px) !important;
}
.select2-container--bootstrap4 .select2-selection--single .select2-selection__placeholder {
  color: #757575;
  line-height: calc(calc(2.5em + 0.5rem) + 1rem);
}
.select2-container--bootstrap4 .select2-selection--single .select2-selection__arrow {
  position: absolute;
  top: 50%;
  right: 3px;
  width: 20px;
}
.select2-container--bootstrap4 .select2-selection--single .select2-selection__arrow b {
  top: 60%;
  border-color: #1E1A34 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  width: 0;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
}
.select2-container--bootstrap4 .select2-selection--single .select2-selection__rendered {
  line-height: calc(calc(2.5em + 0.5rem) + 1rem);
  padding-left: 1rem;
  color: #495057;
}

.select2-search--dropdown .select2-search__field {
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.select2-results__message {
  color: #8B969E;
}

.select2-container--bootstrap4 .select2-selection--multiple {
  min-height: calc(2.5em + 0.5rem + 2px) !important;
}
.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 8px;
  width: 100%;
}
.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__rendered .select2-search__field {
  width: 100% !important;
}
.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice {
  color: #1E1A34;
  border: 1px solid #c4c4c4;
  border-radius: 0.25rem;
  padding: 0;
  padding-right: 5px;
  cursor: pointer;
  float: left;
  margin-top: 0.3em;
  margin-right: 5px;
}
.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice__remove {
  color: #c4c4c4;
  font-weight: bold;
  margin-left: 3px;
  margin-right: 1px;
  padding-right: 3px;
  padding-left: 3px;
  float: left;
}
.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #1E1A34;
}
.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__clear {
  float: none;
  margin-right: 0;
  position: absolute !important;
  top: 0;
  right: 0.7em;
}

.select2-container {
  display: block;
}
.select2-container *:focus {
  outline: 0;
}

.select2-container--open {
  z-index: 1060;
}
.select2-container--open + label {
  z-index: 1070;
}

.input-group .select2-container--bootstrap4 {
  flex-grow: 1;
}

.input-group-prepend ~ .select2-container--bootstrap4 .select2-selection {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group > .select2-container--bootstrap4:not(:last-child) .select2-selection {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--bootstrap4 .select2-selection {
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  width: 100%;
}
@media (prefers-reduced-motion: reduce) {
  .select2-container--bootstrap4 .select2-selection {
    transition: none;
  }
}
.select2-container--bootstrap4.select2-container--focus .select2-selection {
  border-color: #ced4da;
}
.select2-container--bootstrap4.select2-container--focus.select2-container--open .select2-selection {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--bootstrap4.select2-container--disabled .select2-selection, .select2-container--bootstrap4.select2-container--disabled.select2-container--focus .select2-selection {
  background-color: #F2F2F2;
  cursor: not-allowed;
  border-color: #ced4da;
  box-shadow: none;
}
.select2-container--bootstrap4.select2-container--disabled .select2-search__field, .select2-container--bootstrap4.select2-container--disabled.select2-container--focus .select2-search__field {
  background-color: transparent;
}
select.is-invalid ~ .select2-container--bootstrap4 .select2-selection, form.was-validated select:invalid ~ .select2-container--bootstrap4 .select2-selection {
  border-color: #F56C6C;
}
select.is-valid ~ .select2-container--bootstrap4 .select2-selection, form.was-validated select:valid ~ .select2-container--bootstrap4 .select2-selection {
  border-color: #67C23A;
}
.select2-container--bootstrap4 .select2-dropdown {
  border-color: #ced4da;
  border-radius: 0;
}
.select2-container--bootstrap4 .select2-dropdown.select2-dropdown--below {
  border-top: 1px solid #ced4da;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.select2-container--bootstrap4 .select2-dropdown.select2-dropdown--above {
  border-top: 1px solid #ced4da;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.select2-container--bootstrap4 .select2-dropdown .select2-results__option[aria-selected=true] {
  background-color: #eaeaea;
}
.select2-container--bootstrap4 .select2-results__option--highlighted,
.select2-container--bootstrap4 .select2-results__option--highlighted.select2-results__option[aria-selected=true] {
  background-color: #1C1C1B;
  color: #F7F7F7;
}
.select2-container--bootstrap4 .select2-results__option[role=group] {
  padding: 0;
}
.select2-container--bootstrap4 .select2-results__option[role=group] .select2-results__options--nested .select2-results__option {
  padding-left: 1em;
}
.select2-container--bootstrap4 .select2-results > .select2-results__options {
  max-height: 15em;
  overflow-y: auto;
}
.select2-container--bootstrap4 .select2-results__group {
  padding: 6px;
  display: list-item;
  color: #8B969E;
}
.select2-container--bootstrap4 .select2-selection__clear {
  width: 0.9em;
  height: 0.9em;
  line-height: 0.75em;
  padding-left: 0.15em;
  margin-top: 0.7em;
  border-radius: 100%;
  background-color: #c8c8c8;
  color: #F7F7F7;
  float: right;
  margin-right: 0.3em;
}
.select2-container--bootstrap4 .select2-selection__clear:hover {
  background-color: #afafaf;
}

.btn-lg, .btn-group-lg > .btn {
  min-width: 9rem;
  font-size: 16px;
}

@media (min-width: 992px) {
  .service-note {
    font-size: 14px;
    line-height: 18px;
  }
}

.btn.btn-service, .btn.btn-address {
  min-height: 5.2rem;
  color: #212529;
  border-color: #ced4da;
  border-radius: 0.25rem;
}
.btn.btn-service .title, .btn.btn-address .title {
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
}
.btn.btn-service .title strong, .btn.btn-address .title strong {
  font-weight: 600;
}
@media (min-width: 992px) {
  .btn.btn-service .title, .btn.btn-address .title {
    font-size: 16px;
    line-height: 20px;
  }
}
.btn.btn-service .subtitle, .btn.btn-address .subtitle {
  color: #395357;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}
@media (min-width: 992px) {
  .btn.btn-service .subtitle, .btn.btn-address .subtitle {
    font-size: 16px;
    line-height: 20px;
  }
}
.btn.btn-service .service-name, .btn.btn-address .service-name {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
}
@media (min-width: 992px) {
  .btn.btn-service .service-name, .btn.btn-address .service-name {
    font-size: 18px;
    line-height: 22px;
  }
}
.btn.btn-service .service-price, .btn.btn-address .service-price {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
}
@media (min-width: 992px) {
  .btn.btn-service .service-price, .btn.btn-address .service-price {
    font-size: 16px;
    line-height: 20px;
  }
}
.btn.btn-service .service-note, .btn.btn-address .service-note {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}
@media (min-width: 992px) {
  .btn.btn-service .service-note, .btn.btn-address .service-note {
    font-size: 14px;
    line-height: 18px;
  }
}
.btn.btn-service:hover, .btn.btn-address:hover {
  border-color: #94a1ae;
  color: #212529;
  background-color: #fff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.btn.btn-service:focus, .btn.btn-address:focus {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.btn.btn-service:active, .btn.btn-address:active {
  background-color: #fff !important;
  color: #212529 !important;
}
.btn.btn-service.selected, .btn.btn-address.selected {
  border-color: #1C1C1B;
  border-width: 2px;
}
.btn.btn-service.blur, .btn.btn-address.blur {
  filter: blur(5px);
  transition: 0.5s filter linear;
}

#editor-accordion .accordion-button {
  border: none;
  box-shadow: none;
  background-color: #fff;
}

.btn-primary:disabled,
.btn-secondary:disabled,
.btn-outline-primary:disabled,
.btn-outline-secondary:disabled {
  color: #000 !important;
  border-color: rgba(204, 204, 204, 0.8);
  background-color: rgba(204, 204, 204, 0.8);
}
.btn-primary:disabled i,
.btn-secondary:disabled i,
.btn-outline-primary:disabled i,
.btn-outline-secondary:disabled i {
  color: #000 !important;
}

.btn-primary.disabled,
.btn-secondary.disabled,
.btn-outline-primary.disabled,
.btn-outline-secondary.disabled {
  color: #000 !important;
  border-color: rgba(204, 204, 204, 0.8);
  background-color: rgba(204, 204, 204, 0.8);
}
.btn-primary.disabled i,
.btn-secondary.disabled i,
.btn-outline-primary.disabled i,
.btn-outline-secondary.disabled i {
  color: #000 !important;
}

.bg-primary-darken-10 {
  background-color: #020202;
}

.bg-primary-lighten-10 {
  background-color: #363634;
}

.bg-secondary-darken-10 {
  background-color: #707d86;
}

.bg-secondary-lighten-10 {
  background-color: #a7afb5;
}

.bg-success-darken-10 {
  background-color: #529b2e;
}

.bg-success-lighten-10 {
  background-color: #85cf60;
}

.bg-info-darken-10 {
  background-color: #767980;
}

.bg-info-lighten-10 {
  background-color: #abadb1;
}

.bg-warning-darken-10 {
  background-color: #d48a1b;
}

.bg-warning-lighten-10 {
  background-color: #ecb869;
}

.bg-danger-darken-10 {
  background-color: #f23c3c;
}

.bg-danger-lighten-10 {
  background-color: #f89c9c;
}

.bg-light-darken-10 {
  background-color: #dedede;
}

.bg-light-lighten-10 {
  background-color: white;
}

.bg-dark-darken-10 {
  background-color: #0a0912;
}

.bg-dark-lighten-10 {
  background-color: #322b56;
}

.bg-primary-darken-11 {
  background-color: black;
}

.bg-primary-lighten-11 {
  background-color: #393937;
}

.bg-secondary-darken-11 {
  background-color: #6e7a83;
}

.bg-secondary-lighten-11 {
  background-color: #aab2b8;
}

.bg-success-darken-11 {
  background-color: #50972d;
}

.bg-success-lighten-11 {
  background-color: #88d164;
}

.bg-info-darken-11 {
  background-color: #73777e;
}

.bg-info-lighten-11 {
  background-color: #adafb4;
}

.bg-warning-darken-11 {
  background-color: #cf871b;
}

.bg-warning-lighten-11 {
  background-color: #ecba6e;
}

.bg-danger-darken-11 {
  background-color: #f13737;
}

.bg-danger-lighten-11 {
  background-color: #f9a1a1;
}

.bg-light-darken-11 {
  background-color: #dbdbdb;
}

.bg-light-lighten-11 {
  background-color: white;
}

.bg-dark-darken-11 {
  background-color: #08070f;
}

.bg-dark-lighten-11 {
  background-color: #342d59;
}

.bg-primary-darken-12 {
  background-color: black;
}

.bg-primary-lighten-12 {
  background-color: #3b3b39;
}

.bg-secondary-darken-12 {
  background-color: #6b7880;
}

.bg-secondary-lighten-12 {
  background-color: #acb4ba;
}

.bg-success-darken-12 {
  background-color: #4e932c;
}

.bg-success-lighten-12 {
  background-color: #8bd267;
}

.bg-info-darken-12 {
  background-color: #71747b;
}

.bg-info-lighten-12 {
  background-color: #b0b2b6;
}

.bg-warning-darken-12 {
  background-color: #cb841a;
}

.bg-warning-lighten-12 {
  background-color: #edbc72;
}

.bg-danger-darken-12 {
  background-color: #f13333;
}

.bg-danger-lighten-12 {
  background-color: #f9a5a5;
}

.bg-light-darken-12 {
  background-color: #d8d8d8;
}

.bg-light-lighten-12 {
  background-color: white;
}

.bg-dark-darken-12 {
  background-color: #06060b;
}

.bg-dark-lighten-12 {
  background-color: #362e5d;
}

.bg-primary-darken-13 {
  background-color: black;
}

.bg-primary-lighten-13 {
  background-color: #3e3e3c;
}

.bg-secondary-darken-13 {
  background-color: #69757e;
}

.bg-secondary-lighten-13 {
  background-color: #afb7bc;
}

.bg-success-darken-13 {
  background-color: #4c8f2b;
}

.bg-success-lighten-13 {
  background-color: #8ed36b;
}

.bg-info-darken-13 {
  background-color: #6e7278;
}

.bg-info-lighten-13 {
  background-color: #b3b5b9;
}

.bg-warning-darken-13 {
  background-color: #c68119;
}

.bg-warning-lighten-13 {
  background-color: #eebe77;
}

.bg-danger-darken-13 {
  background-color: #f12e2e;
}

.bg-danger-lighten-13 {
  background-color: #f9aaaa;
}

.bg-light-darken-13 {
  background-color: #d6d6d6;
}

.bg-light-lighten-13 {
  background-color: white;
}

.bg-dark-darken-13 {
  background-color: #050408;
}

.bg-dark-lighten-13 {
  background-color: #383060;
}

.bg-primary-darken-14 {
  background-color: black;
}

.bg-primary-lighten-14 {
  background-color: #40403e;
}

.bg-secondary-darken-14 {
  background-color: #67727b;
}

.bg-secondary-lighten-14 {
  background-color: #b2b9bf;
}

.bg-success-darken-14 {
  background-color: #4a8b2a;
}

.bg-success-lighten-14 {
  background-color: #91d46f;
}

.bg-info-darken-14 {
  background-color: #6c6f76;
}

.bg-info-lighten-14 {
  background-color: #b5b7bb;
}

.bg-warning-darken-14 {
  background-color: #c27e19;
}

.bg-warning-lighten-14 {
  background-color: #eec07b;
}

.bg-danger-darken-14 {
  background-color: #f02929;
}

.bg-danger-lighten-14 {
  background-color: #faafaf;
}

.bg-light-darken-14 {
  background-color: lightgray;
}

.bg-light-lighten-14 {
  background-color: white;
}

.bg-dark-darken-14 {
  background-color: #030204;
}

.bg-dark-lighten-14 {
  background-color: #393264;
}

.bg-primary-darken-15 {
  background-color: black;
}

.bg-primary-lighten-15 {
  background-color: #434341;
}

.bg-secondary-darken-15 {
  background-color: #647078;
}

.bg-secondary-lighten-15 {
  background-color: #b5bcc1;
}

.bg-success-darken-15 {
  background-color: #488728;
}

.bg-success-lighten-15 {
  background-color: #94d573;
}

.bg-info-darken-15 {
  background-color: #6a6d73;
}

.bg-info-lighten-15 {
  background-color: #b8babe;
}

.bg-warning-darken-15 {
  background-color: #bd7b18;
}

.bg-warning-lighten-15 {
  background-color: #efc280;
}

.bg-danger-darken-15 {
  background-color: #f02424;
}

.bg-danger-lighten-15 {
  background-color: #fab4b4;
}

.bg-light-darken-15 {
  background-color: #d1d1d1;
}

.bg-light-lighten-15 {
  background-color: white;
}

.bg-dark-darken-15 {
  background-color: #010101;
}

.bg-dark-lighten-15 {
  background-color: #3b3467;
}

.bg-primary-darken-16 {
  background-color: black;
}

.bg-primary-lighten-16 {
  background-color: #464643;
}

.bg-secondary-darken-16 {
  background-color: #626d75;
}

.bg-secondary-lighten-16 {
  background-color: #b7bec3;
}

.bg-success-darken-16 {
  background-color: #468327;
}

.bg-success-lighten-16 {
  background-color: #97d677;
}

.bg-info-darken-16 {
  background-color: #676a70;
}

.bg-info-lighten-16 {
  background-color: #bbbcc0;
}

.bg-warning-darken-16 {
  background-color: #b97818;
}

.bg-warning-lighten-16 {
  background-color: #efc484;
}

.bg-danger-darken-16 {
  background-color: #f02020;
}

.bg-danger-lighten-16 {
  background-color: #fab8b8;
}

.bg-light-darken-16 {
  background-color: #cecece;
}

.bg-light-lighten-16 {
  background-color: white;
}

.bg-dark-darken-16 {
  background-color: black;
}

.bg-dark-lighten-16 {
  background-color: #3d356a;
}

.bg-primary-darken-17 {
  background-color: black;
}

.bg-primary-lighten-17 {
  background-color: #484846;
}

.bg-secondary-darken-17 {
  background-color: #606b73;
}

.bg-secondary-lighten-17 {
  background-color: #bac1c5;
}

.bg-success-darken-17 {
  background-color: #447f26;
}

.bg-success-lighten-17 {
  background-color: #9ad87b;
}

.bg-info-darken-17 {
  background-color: #65686e;
}

.bg-info-lighten-17 {
  background-color: #bdbfc3;
}

.bg-warning-darken-17 {
  background-color: #b47517;
}

.bg-warning-lighten-17 {
  background-color: #f0c789;
}

.bg-danger-darken-17 {
  background-color: #ef1b1b;
}

.bg-danger-lighten-17 {
  background-color: #fbbdbd;
}

.bg-light-darken-17 {
  background-color: #cccccc;
}

.bg-light-lighten-17 {
  background-color: white;
}

.bg-dark-darken-17 {
  background-color: black;
}

.bg-dark-lighten-17 {
  background-color: #3f376e;
}

.bg-primary-darken-18 {
  background-color: black;
}

.bg-primary-lighten-18 {
  background-color: #4b4b48;
}

.bg-secondary-darken-18 {
  background-color: #5d6870;
}

.bg-secondary-lighten-18 {
  background-color: #bdc3c8;
}

.bg-success-darken-18 {
  background-color: #417b25;
}

.bg-success-lighten-18 {
  background-color: #9dd97f;
}

.bg-info-darken-18 {
  background-color: #62656b;
}

.bg-info-lighten-18 {
  background-color: #c0c2c5;
}

.bg-warning-darken-18 {
  background-color: #b07217;
}

.bg-warning-lighten-18 {
  background-color: #f0c98d;
}

.bg-danger-darken-18 {
  background-color: #ef1616;
}

.bg-danger-lighten-18 {
  background-color: #fbc2c2;
}

.bg-light-darken-18 {
  background-color: #c9c9c9;
}

.bg-light-lighten-18 {
  background-color: white;
}

.bg-dark-darken-18 {
  background-color: black;
}

.bg-dark-lighten-18 {
  background-color: #413971;
}

.bg-primary-darken-19 {
  background-color: black;
}

.bg-primary-lighten-19 {
  background-color: #4d4d4b;
}

.bg-secondary-darken-19 {
  background-color: #5b656d;
}

.bg-secondary-lighten-19 {
  background-color: #c0c6ca;
}

.bg-success-darken-19 {
  background-color: #3f7724;
}

.bg-success-lighten-19 {
  background-color: #a0da83;
}

.bg-info-darken-19 {
  background-color: #606368;
}

.bg-info-lighten-19 {
  background-color: #c2c4c7;
}

.bg-warning-darken-19 {
  background-color: #ab6f16;
}

.bg-warning-lighten-19 {
  background-color: #f1cb92;
}

.bg-danger-darken-19 {
  background-color: #ef1111;
}

.bg-danger-lighten-19 {
  background-color: #fbc7c7;
}

.bg-light-darken-19 {
  background-color: #c7c7c7;
}

.bg-light-lighten-19 {
  background-color: white;
}

.bg-dark-darken-19 {
  background-color: black;
}

.bg-dark-lighten-19 {
  background-color: #433a75;
}

.bg-primary-darken-20 {
  background-color: black;
}

.bg-primary-lighten-20 {
  background-color: #50504d;
}

.bg-secondary-darken-20 {
  background-color: #59636a;
}

.bg-secondary-lighten-20 {
  background-color: #c3c8cc;
}

.bg-success-darken-20 {
  background-color: #3d7323;
}

.bg-success-lighten-20 {
  background-color: #a3db87;
}

.bg-info-darken-20 {
  background-color: #5d6066;
}

.bg-info-lighten-20 {
  background-color: #c5c7ca;
}

.bg-warning-darken-20 {
  background-color: #a76d15;
}

.bg-warning-lighten-20 {
  background-color: #f2cd96;
}

.bg-danger-darken-20 {
  background-color: #eb1010;
}

.bg-danger-lighten-20 {
  background-color: #fbcccc;
}

.bg-light-darken-20 {
  background-color: #c4c4c4;
}

.bg-light-lighten-20 {
  background-color: white;
}

.bg-dark-darken-20 {
  background-color: black;
}

.bg-dark-lighten-20 {
  background-color: #453c78;
}

.bg-primary-darken-21 {
  background-color: black;
}

.bg-primary-lighten-21 {
  background-color: #535350;
}

.bg-secondary-darken-21 {
  background-color: #566067;
}

.bg-secondary-lighten-21 {
  background-color: #c5cbcf;
}

.bg-success-darken-21 {
  background-color: #3b7021;
}

.bg-success-lighten-21 {
  background-color: #a6dc8b;
}

.bg-info-darken-21 {
  background-color: #5b5e63;
}

.bg-info-lighten-21 {
  background-color: #c8c9cc;
}

.bg-warning-darken-21 {
  background-color: #a26a15;
}

.bg-warning-lighten-21 {
  background-color: #f2cf9b;
}

.bg-danger-darken-21 {
  background-color: #e61010;
}

.bg-danger-lighten-21 {
  background-color: #fcd0d0;
}

.bg-light-darken-21 {
  background-color: #c1c1c1;
}

.bg-light-lighten-21 {
  background-color: white;
}

.bg-dark-darken-21 {
  background-color: black;
}

.bg-dark-lighten-21 {
  background-color: #473e7b;
}

.bg-primary-darken-22 {
  background-color: black;
}

.bg-primary-lighten-22 {
  background-color: #555552;
}

.bg-secondary-darken-22 {
  background-color: #545e65;
}

.bg-secondary-lighten-22 {
  background-color: #c8cdd1;
}

.bg-success-darken-22 {
  background-color: #396c20;
}

.bg-success-lighten-22 {
  background-color: #a9dd8f;
}

.bg-info-darken-22 {
  background-color: #585b60;
}

.bg-info-lighten-22 {
  background-color: #cacccf;
}

.bg-warning-darken-22 {
  background-color: #9e6714;
}

.bg-warning-lighten-22 {
  background-color: #f3d19f;
}

.bg-danger-darken-22 {
  background-color: #e10f0f;
}

.bg-danger-lighten-22 {
  background-color: #fcd5d5;
}

.bg-light-darken-22 {
  background-color: #bfbfbf;
}

.bg-light-lighten-22 {
  background-color: white;
}

.bg-dark-darken-22 {
  background-color: black;
}

.bg-dark-lighten-22 {
  background-color: #493f7f;
}

.bg-primary-darken-23 {
  background-color: black;
}

.bg-primary-lighten-23 {
  background-color: #585855;
}

.bg-secondary-darken-23 {
  background-color: #525b62;
}

.bg-secondary-lighten-23 {
  background-color: #cbd0d3;
}

.bg-success-darken-23 {
  background-color: #37681f;
}

.bg-success-lighten-23 {
  background-color: #acdf93;
}

.bg-info-darken-23 {
  background-color: #56595e;
}

.bg-info-lighten-23 {
  background-color: #cdced1;
}

.bg-warning-darken-23 {
  background-color: #996414;
}

.bg-warning-lighten-23 {
  background-color: #f3d4a4;
}

.bg-danger-darken-23 {
  background-color: #dd0f0f;
}

.bg-danger-lighten-23 {
  background-color: #fcdada;
}

.bg-light-darken-23 {
  background-color: #bcbcbc;
}

.bg-light-lighten-23 {
  background-color: white;
}

.bg-dark-darken-23 {
  background-color: black;
}

.bg-dark-lighten-23 {
  background-color: #4b4182;
}

.bg-primary-darken-24 {
  background-color: black;
}

.bg-primary-lighten-24 {
  background-color: #5a5a57;
}

.bg-secondary-darken-24 {
  background-color: #50595f;
}

.bg-secondary-lighten-24 {
  background-color: #ced2d6;
}

.bg-success-darken-24 {
  background-color: #35641e;
}

.bg-success-lighten-24 {
  background-color: #afe097;
}

.bg-info-darken-24 {
  background-color: #54565b;
}

.bg-info-lighten-24 {
  background-color: #d0d1d4;
}

.bg-warning-darken-24 {
  background-color: #956113;
}

.bg-warning-lighten-24 {
  background-color: #f4d6a8;
}

.bg-danger-darken-24 {
  background-color: #d80f0f;
}

.bg-danger-lighten-24 {
  background-color: #fddfdf;
}

.bg-light-darken-24 {
  background-color: #bababa;
}

.bg-light-lighten-24 {
  background-color: white;
}

.bg-dark-darken-24 {
  background-color: black;
}

.bg-dark-lighten-24 {
  background-color: #4d4386;
}

.bg-primary-darken-25 {
  background-color: black;
}

.bg-primary-lighten-25 {
  background-color: #5d5d5a;
}

.bg-secondary-darken-25 {
  background-color: #4d565c;
}

.bg-secondary-lighten-25 {
  background-color: #d0d5d8;
}

.bg-success-darken-25 {
  background-color: #33601d;
}

.bg-success-lighten-25 {
  background-color: #b2e19b;
}

.bg-info-darken-25 {
  background-color: #515458;
}

.bg-info-lighten-25 {
  background-color: #d2d4d6;
}

.bg-warning-darken-25 {
  background-color: #905e12;
}

.bg-warning-lighten-25 {
  background-color: #f4d8ad;
}

.bg-danger-darken-25 {
  background-color: #d30e0e;
}

.bg-danger-lighten-25 {
  background-color: #fde3e3;
}

.bg-light-darken-25 {
  background-color: #b7b7b7;
}

.bg-light-lighten-25 {
  background-color: white;
}

.bg-dark-darken-25 {
  background-color: black;
}

.bg-dark-lighten-25 {
  background-color: #4f4589;
}

.bg-primary-darken-26 {
  background-color: black;
}

.bg-primary-lighten-26 {
  background-color: #60605c;
}

.bg-secondary-darken-26 {
  background-color: #4b535a;
}

.bg-secondary-lighten-26 {
  background-color: #d3d7da;
}

.bg-success-darken-26 {
  background-color: #315c1b;
}

.bg-success-lighten-26 {
  background-color: #b5e29e;
}

.bg-info-darken-26 {
  background-color: #4f5156;
}

.bg-info-lighten-26 {
  background-color: #d5d6d8;
}

.bg-warning-darken-26 {
  background-color: #8c5b12;
}

.bg-warning-lighten-26 {
  background-color: #f5dab2;
}

.bg-danger-darken-26 {
  background-color: #ce0e0e;
}

.bg-danger-lighten-26 {
  background-color: #fde8e8;
}

.bg-light-darken-26 {
  background-color: #b5b5b5;
}

.bg-light-lighten-26 {
  background-color: white;
}

.bg-dark-darken-26 {
  background-color: black;
}

.bg-dark-lighten-26 {
  background-color: #51468c;
}

.bg-primary-darken-27 {
  background-color: black;
}

.bg-primary-lighten-27 {
  background-color: #62625f;
}

.bg-secondary-darken-27 {
  background-color: #495157;
}

.bg-secondary-lighten-27 {
  background-color: #d6dadd;
}

.bg-success-darken-27 {
  background-color: #2f581a;
}

.bg-success-lighten-27 {
  background-color: #b8e3a2;
}

.bg-info-darken-27 {
  background-color: #4c4f53;
}

.bg-info-lighten-27 {
  background-color: #d8d9db;
}

.bg-warning-darken-27 {
  background-color: #875811;
}

.bg-warning-lighten-27 {
  background-color: #f6dcb6;
}

.bg-danger-darken-27 {
  background-color: #ca0e0e;
}

.bg-danger-lighten-27 {
  background-color: #feeded;
}

.bg-light-darken-27 {
  background-color: #b2b2b2;
}

.bg-light-lighten-27 {
  background-color: white;
}

.bg-dark-darken-27 {
  background-color: black;
}

.bg-dark-lighten-27 {
  background-color: #534890;
}

.bg-primary-darken-28 {
  background-color: black;
}

.bg-primary-lighten-28 {
  background-color: #656561;
}

.bg-secondary-darken-28 {
  background-color: #464e54;
}

.bg-secondary-lighten-28 {
  background-color: #d9dcdf;
}

.bg-success-darken-28 {
  background-color: #2d5419;
}

.bg-success-lighten-28 {
  background-color: #bbe4a6;
}

.bg-info-darken-28 {
  background-color: #4a4c50;
}

.bg-info-lighten-28 {
  background-color: #dadbdd;
}

.bg-warning-darken-28 {
  background-color: #825511;
}

.bg-warning-lighten-28 {
  background-color: #f6debb;
}

.bg-danger-darken-28 {
  background-color: #c50d0d;
}

.bg-danger-lighten-28 {
  background-color: #fef2f2;
}

.bg-light-darken-28 {
  background-color: #b0b0b0;
}

.bg-light-lighten-28 {
  background-color: white;
}

.bg-dark-darken-28 {
  background-color: black;
}

.bg-dark-lighten-28 {
  background-color: #554a93;
}

.bg-primary-darken-29 {
  background-color: black;
}

.bg-primary-lighten-29 {
  background-color: #676764;
}

.bg-secondary-darken-29 {
  background-color: #444c51;
}

.bg-secondary-lighten-29 {
  background-color: #dcdfe1;
}

.bg-success-darken-29 {
  background-color: #2b5018;
}

.bg-success-lighten-29 {
  background-color: #bee6aa;
}

.bg-info-darken-29 {
  background-color: #474a4e;
}

.bg-info-lighten-29 {
  background-color: #dddee0;
}

.bg-warning-darken-29 {
  background-color: #7e5210;
}

.bg-warning-lighten-29 {
  background-color: #f7e1bf;
}

.bg-danger-darken-29 {
  background-color: #c00d0d;
}

.bg-danger-lighten-29 {
  background-color: #fef6f6;
}

.bg-light-darken-29 {
  background-color: #adadad;
}

.bg-light-lighten-29 {
  background-color: white;
}

.bg-dark-darken-29 {
  background-color: black;
}

.bg-dark-lighten-29 {
  background-color: #574b97;
}

.bg-primary-darken-30 {
  background-color: black;
}

.bg-primary-lighten-30 {
  background-color: #6a6a66;
}

.bg-secondary-darken-30 {
  background-color: #42494e;
}

.bg-secondary-lighten-30 {
  background-color: #dee1e4;
}

.bg-success-darken-30 {
  background-color: #284c17;
}

.bg-success-lighten-30 {
  background-color: #c1e7ae;
}

.bg-info-darken-30 {
  background-color: #45474b;
}

.bg-info-lighten-30 {
  background-color: #e0e1e2;
}

.bg-warning-darken-30 {
  background-color: #794f10;
}

.bg-warning-lighten-30 {
  background-color: #f7e3c4;
}

.bg-danger-darken-30 {
  background-color: #bb0d0d;
}

.bg-danger-lighten-30 {
  background-color: #fffbfb;
}

.bg-light-darken-30 {
  background-color: #ababab;
}

.bg-light-lighten-30 {
  background-color: white;
}

.bg-dark-darken-30 {
  background-color: black;
}

.bg-dark-lighten-30 {
  background-color: #594d9a;
}

.bg-primary-darken-31 {
  background-color: black;
}

.bg-primary-lighten-31 {
  background-color: #6c6c69;
}

.bg-secondary-darken-31 {
  background-color: #3f464c;
}

.bg-secondary-lighten-31 {
  background-color: #e1e4e6;
}

.bg-success-darken-31 {
  background-color: #264816;
}

.bg-success-lighten-31 {
  background-color: #c4e8b2;
}

.bg-info-darken-31 {
  background-color: #434448;
}

.bg-info-lighten-31 {
  background-color: #e2e3e5;
}

.bg-warning-darken-31 {
  background-color: #754c0f;
}

.bg-warning-lighten-31 {
  background-color: #f8e5c8;
}

.bg-danger-darken-31 {
  background-color: #b60c0c;
}

.bg-danger-lighten-31 {
  background-color: white;
}

.bg-light-darken-31 {
  background-color: #a8a8a8;
}

.bg-light-lighten-31 {
  background-color: white;
}

.bg-dark-darken-31 {
  background-color: black;
}

.bg-dark-lighten-31 {
  background-color: #5b4f9d;
}

.bg-primary-darken-32 {
  background-color: black;
}

.bg-primary-lighten-32 {
  background-color: #6f6f6b;
}

.bg-secondary-darken-32 {
  background-color: #3d4449;
}

.bg-secondary-lighten-32 {
  background-color: #e4e6e8;
}

.bg-success-darken-32 {
  background-color: #244414;
}

.bg-success-lighten-32 {
  background-color: #c7e9b6;
}

.bg-info-darken-32 {
  background-color: #404246;
}

.bg-info-lighten-32 {
  background-color: #e5e6e7;
}

.bg-warning-darken-32 {
  background-color: #70490e;
}

.bg-warning-lighten-32 {
  background-color: #f9e7cd;
}

.bg-danger-darken-32 {
  background-color: #b20c0c;
}

.bg-danger-lighten-32 {
  background-color: white;
}

.bg-light-darken-32 {
  background-color: #a5a5a5;
}

.bg-light-lighten-32 {
  background-color: white;
}

.bg-dark-darken-32 {
  background-color: black;
}

.bg-dark-lighten-32 {
  background-color: #5d50a1;
}

.bg-primary-darken-33 {
  background-color: black;
}

.bg-primary-lighten-33 {
  background-color: #72726e;
}

.bg-secondary-darken-33 {
  background-color: #3b4146;
}

.bg-secondary-lighten-33 {
  background-color: #e7e9eb;
}

.bg-success-darken-33 {
  background-color: #224013;
}

.bg-success-lighten-33 {
  background-color: #caeaba;
}

.bg-info-darken-33 {
  background-color: #3e3f43;
}

.bg-info-lighten-33 {
  background-color: #e8e8ea;
}

.bg-warning-darken-33 {
  background-color: #6c460e;
}

.bg-warning-lighten-33 {
  background-color: #f9e9d1;
}

.bg-danger-darken-33 {
  background-color: #ad0c0c;
}

.bg-danger-lighten-33 {
  background-color: white;
}

.bg-light-darken-33 {
  background-color: #a3a3a3;
}

.bg-light-lighten-33 {
  background-color: white;
}

.bg-dark-darken-33 {
  background-color: black;
}

.bg-dark-lighten-33 {
  background-color: #5f52a4;
}

.bg-primary-darken-34 {
  background-color: black;
}

.bg-primary-lighten-34 {
  background-color: #747470;
}

.bg-secondary-darken-34 {
  background-color: #383f43;
}

.bg-secondary-lighten-34 {
  background-color: #e9ebed;
}

.bg-success-darken-34 {
  background-color: #203d12;
}

.bg-success-lighten-34 {
  background-color: #cdecbe;
}

.bg-info-darken-34 {
  background-color: #3b3d40;
}

.bg-info-lighten-34 {
  background-color: #eaebec;
}

.bg-warning-darken-34 {
  background-color: #67430d;
}

.bg-warning-lighten-34 {
  background-color: #faebd6;
}

.bg-danger-darken-34 {
  background-color: #a80b0b;
}

.bg-danger-lighten-34 {
  background-color: white;
}

.bg-light-darken-34 {
  background-color: #a0a0a0;
}

.bg-light-lighten-34 {
  background-color: white;
}

.bg-dark-darken-34 {
  background-color: black;
}

.bg-dark-lighten-34 {
  background-color: #6154a8;
}

.bg-primary-darken-35 {
  background-color: black;
}

.bg-primary-lighten-35 {
  background-color: #777773;
}

.bg-secondary-darken-35 {
  background-color: #363c41;
}

.bg-secondary-lighten-35 {
  background-color: #eceeef;
}

.bg-success-darken-35 {
  background-color: #1e3911;
}

.bg-success-lighten-35 {
  background-color: #d0edc2;
}

.bg-info-darken-35 {
  background-color: #393a3e;
}

.bg-info-lighten-35 {
  background-color: #edeeee;
}

.bg-warning-darken-35 {
  background-color: #63400d;
}

.bg-warning-lighten-35 {
  background-color: #faedda;
}

.bg-danger-darken-35 {
  background-color: #a30b0b;
}

.bg-danger-lighten-35 {
  background-color: white;
}

.bg-light-darken-35 {
  background-color: #9e9e9e;
}

.bg-light-lighten-35 {
  background-color: white;
}

.bg-dark-darken-35 {
  background-color: black;
}

.bg-dark-lighten-35 {
  background-color: #6356ab;
}

.bg-primary-darken-36 {
  background-color: black;
}

.bg-primary-lighten-36 {
  background-color: #797975;
}

.bg-secondary-darken-36 {
  background-color: #34393e;
}

.bg-secondary-lighten-36 {
  background-color: #eff1f2;
}

.bg-success-darken-36 {
  background-color: #1c3510;
}

.bg-success-lighten-36 {
  background-color: #d3eec6;
}

.bg-info-darken-36 {
  background-color: #36383b;
}

.bg-info-lighten-36 {
  background-color: #f0f0f1;
}

.bg-warning-darken-36 {
  background-color: #5e3d0c;
}

.bg-warning-lighten-36 {
  background-color: #fbf0df;
}

.bg-danger-darken-36 {
  background-color: #9f0b0b;
}

.bg-danger-lighten-36 {
  background-color: white;
}

.bg-light-darken-36 {
  background-color: #9b9b9b;
}

.bg-light-lighten-36 {
  background-color: white;
}

.bg-dark-darken-36 {
  background-color: black;
}

.bg-dark-lighten-36 {
  background-color: #6659ac;
}

.bg-primary-darken-37 {
  background-color: black;
}

.bg-primary-lighten-37 {
  background-color: #7c7c78;
}

.bg-secondary-darken-37 {
  background-color: #31373b;
}

.bg-secondary-lighten-37 {
  background-color: #f2f3f4;
}

.bg-success-darken-37 {
  background-color: #1a310f;
}

.bg-success-lighten-37 {
  background-color: #d6efca;
}

.bg-info-darken-37 {
  background-color: #343538;
}

.bg-info-lighten-37 {
  background-color: #f2f3f3;
}

.bg-warning-darken-37 {
  background-color: #5a3a0c;
}

.bg-warning-lighten-37 {
  background-color: #fbf2e3;
}

.bg-danger-darken-37 {
  background-color: #9a0a0a;
}

.bg-danger-lighten-37 {
  background-color: white;
}

.bg-light-darken-37 {
  background-color: #999999;
}

.bg-light-lighten-37 {
  background-color: white;
}

.bg-dark-darken-37 {
  background-color: black;
}

.bg-dark-lighten-37 {
  background-color: #695dae;
}

.bg-primary-darken-38 {
  background-color: black;
}

.bg-primary-lighten-38 {
  background-color: #7f7f7a;
}

.bg-secondary-darken-38 {
  background-color: #2f3438;
}

.bg-secondary-lighten-38 {
  background-color: #f5f6f6;
}

.bg-success-darken-38 {
  background-color: #182d0d;
}

.bg-success-lighten-38 {
  background-color: #d9f0ce;
}

.bg-info-darken-38 {
  background-color: #313336;
}

.bg-info-lighten-38 {
  background-color: #f5f5f6;
}

.bg-warning-darken-38 {
  background-color: #55380b;
}

.bg-warning-lighten-38 {
  background-color: #fcf4e8;
}

.bg-danger-darken-38 {
  background-color: #950a0a;
}

.bg-danger-lighten-38 {
  background-color: white;
}

.bg-light-darken-38 {
  background-color: #969696;
}

.bg-light-lighten-38 {
  background-color: white;
}

.bg-dark-darken-38 {
  background-color: black;
}

.bg-dark-lighten-38 {
  background-color: #6c60b0;
}

.bg-primary-darken-39 {
  background-color: black;
}

.bg-primary-lighten-39 {
  background-color: #81817d;
}

.bg-secondary-darken-39 {
  background-color: #2d3235;
}

.bg-secondary-lighten-39 {
  background-color: #f7f8f9;
}

.bg-success-darken-39 {
  background-color: #16290c;
}

.bg-success-lighten-39 {
  background-color: #dcf1d2;
}

.bg-info-darken-39 {
  background-color: #2f3033;
}

.bg-info-lighten-39 {
  background-color: #f8f8f8;
}

.bg-warning-darken-39 {
  background-color: #51350a;
}

.bg-warning-lighten-39 {
  background-color: #fdf6ec;
}

.bg-danger-darken-39 {
  background-color: #900a0a;
}

.bg-danger-lighten-39 {
  background-color: white;
}

.bg-light-darken-39 {
  background-color: #949494;
}

.bg-light-lighten-39 {
  background-color: white;
}

.bg-dark-darken-39 {
  background-color: black;
}

.bg-dark-lighten-39 {
  background-color: #7064b1;
}

.bg-primary-darken-40 {
  background-color: black;
}

.bg-primary-lighten-40 {
  background-color: #84847f;
}

.bg-secondary-darken-40 {
  background-color: #2a2f33;
}

.bg-secondary-lighten-40 {
  background-color: #fafbfb;
}

.bg-success-darken-40 {
  background-color: #14250b;
}

.bg-success-lighten-40 {
  background-color: #dff3d5;
}

.bg-info-darken-40 {
  background-color: #2d2e30;
}

.bg-info-lighten-40 {
  background-color: #fafafb;
}

.bg-warning-darken-40 {
  background-color: #4c320a;
}

.bg-warning-lighten-40 {
  background-color: #fdf8f1;
}

.bg-danger-darken-40 {
  background-color: #8c0909;
}

.bg-danger-lighten-40 {
  background-color: white;
}

.bg-light-darken-40 {
  background-color: #919191;
}

.bg-light-lighten-40 {
  background-color: white;
}

.bg-dark-darken-40 {
  background-color: black;
}

.bg-dark-lighten-40 {
  background-color: #7367b3;
}

.bg-primary-darken-41 {
  background-color: black;
}

.bg-primary-lighten-41 {
  background-color: #868682;
}

.bg-secondary-darken-41 {
  background-color: #282d30;
}

.bg-secondary-lighten-41 {
  background-color: #fdfdfd;
}

.bg-success-darken-41 {
  background-color: #12210a;
}

.bg-success-lighten-41 {
  background-color: #e2f4d9;
}

.bg-info-darken-41 {
  background-color: #2a2b2e;
}

.bg-info-lighten-41 {
  background-color: #fdfdfd;
}

.bg-warning-darken-41 {
  background-color: #482f09;
}

.bg-warning-lighten-41 {
  background-color: #fefaf5;
}

.bg-danger-darken-41 {
  background-color: #870909;
}

.bg-danger-lighten-41 {
  background-color: white;
}

.bg-light-darken-41 {
  background-color: #8e8e8e;
}

.bg-light-lighten-41 {
  background-color: white;
}

.bg-dark-darken-41 {
  background-color: black;
}

.bg-dark-lighten-41 {
  background-color: #766ab5;
}

.bg-primary-darken-42 {
  background-color: black;
}

.bg-primary-lighten-42 {
  background-color: #898984;
}

.bg-secondary-darken-42 {
  background-color: #262a2d;
}

.bg-secondary-lighten-42 {
  background-color: white;
}

.bg-success-darken-42 {
  background-color: #0f1d09;
}

.bg-success-lighten-42 {
  background-color: #e5f5dd;
}

.bg-info-darken-42 {
  background-color: #28292b;
}

.bg-info-lighten-42 {
  background-color: white;
}

.bg-warning-darken-42 {
  background-color: #432c09;
}

.bg-warning-lighten-42 {
  background-color: #fefdfa;
}

.bg-danger-darken-42 {
  background-color: #820909;
}

.bg-danger-lighten-42 {
  background-color: white;
}

.bg-light-darken-42 {
  background-color: #8c8c8c;
}

.bg-light-lighten-42 {
  background-color: white;
}

.bg-dark-darken-42 {
  background-color: black;
}

.bg-dark-lighten-42 {
  background-color: #796eb6;
}

.bg-primary-darken-43 {
  background-color: black;
}

.bg-primary-lighten-43 {
  background-color: #8b8b87;
}

.bg-secondary-darken-43 {
  background-color: #23272a;
}

.bg-secondary-lighten-43 {
  background-color: white;
}

.bg-success-darken-43 {
  background-color: #0d1908;
}

.bg-success-lighten-43 {
  background-color: #e8f6e1;
}

.bg-info-darken-43 {
  background-color: #252628;
}

.bg-info-lighten-43 {
  background-color: white;
}

.bg-warning-darken-43 {
  background-color: #3f2908;
}

.bg-warning-lighten-43 {
  background-color: #fffffe;
}

.bg-danger-darken-43 {
  background-color: #7d0909;
}

.bg-danger-lighten-43 {
  background-color: white;
}

.bg-light-darken-43 {
  background-color: #898989;
}

.bg-light-lighten-43 {
  background-color: white;
}

.bg-dark-darken-43 {
  background-color: black;
}

.bg-dark-lighten-43 {
  background-color: #7c71b8;
}

.bg-primary-darken-44 {
  background-color: black;
}

.bg-primary-lighten-44 {
  background-color: #8e8e8a;
}

.bg-secondary-darken-44 {
  background-color: #212528;
}

.bg-secondary-lighten-44 {
  background-color: white;
}

.bg-success-darken-44 {
  background-color: #0b1506;
}

.bg-success-lighten-44 {
  background-color: #ebf7e5;
}

.bg-info-darken-44 {
  background-color: #232426;
}

.bg-info-lighten-44 {
  background-color: white;
}

.bg-warning-darken-44 {
  background-color: #3a2607;
}

.bg-warning-lighten-44 {
  background-color: white;
}

.bg-danger-darken-44 {
  background-color: #780808;
}

.bg-danger-lighten-44 {
  background-color: white;
}

.bg-light-darken-44 {
  background-color: #878787;
}

.bg-light-lighten-44 {
  background-color: white;
}

.bg-dark-darken-44 {
  background-color: black;
}

.bg-dark-lighten-44 {
  background-color: #7f75ba;
}

.bg-primary-darken-45 {
  background-color: black;
}

.bg-primary-lighten-45 {
  background-color: #90908c;
}

.bg-secondary-darken-45 {
  background-color: #1f2225;
}

.bg-secondary-lighten-45 {
  background-color: white;
}

.bg-success-darken-45 {
  background-color: #091105;
}

.bg-success-lighten-45 {
  background-color: #eef8e9;
}

.bg-info-darken-45 {
  background-color: #202123;
}

.bg-info-lighten-45 {
  background-color: white;
}

.bg-warning-darken-45 {
  background-color: #362307;
}

.bg-warning-lighten-45 {
  background-color: white;
}

.bg-danger-darken-45 {
  background-color: #740808;
}

.bg-danger-lighten-45 {
  background-color: white;
}

.bg-light-darken-45 {
  background-color: #848484;
}

.bg-light-lighten-45 {
  background-color: white;
}

.bg-dark-darken-45 {
  background-color: black;
}

.bg-dark-lighten-45 {
  background-color: #8278bc;
}

.bg-primary-darken-46 {
  background-color: black;
}

.bg-primary-lighten-46 {
  background-color: #93938f;
}

.bg-secondary-darken-46 {
  background-color: #1c2022;
}

.bg-secondary-lighten-46 {
  background-color: white;
}

.bg-success-darken-46 {
  background-color: #070d04;
}

.bg-success-lighten-46 {
  background-color: #f1faed;
}

.bg-info-darken-46 {
  background-color: #1e1f21;
}

.bg-info-lighten-46 {
  background-color: white;
}

.bg-warning-darken-46 {
  background-color: #312006;
}

.bg-warning-lighten-46 {
  background-color: white;
}

.bg-danger-darken-46 {
  background-color: #6f0808;
}

.bg-danger-lighten-46 {
  background-color: white;
}

.bg-light-darken-46 {
  background-color: #828282;
}

.bg-light-lighten-46 {
  background-color: white;
}

.bg-dark-darken-46 {
  background-color: black;
}

.bg-dark-lighten-46 {
  background-color: #867bbd;
}

.bg-primary-darken-47 {
  background-color: black;
}

.bg-primary-lighten-47 {
  background-color: #959591;
}

.bg-secondary-darken-47 {
  background-color: #1a1d1f;
}

.bg-secondary-lighten-47 {
  background-color: white;
}

.bg-success-darken-47 {
  background-color: #050903;
}

.bg-success-lighten-47 {
  background-color: #f4fbf1;
}

.bg-info-darken-47 {
  background-color: #1b1c1e;
}

.bg-info-lighten-47 {
  background-color: white;
}

.bg-warning-darken-47 {
  background-color: #2d1d06;
}

.bg-warning-lighten-47 {
  background-color: white;
}

.bg-danger-darken-47 {
  background-color: #6a0707;
}

.bg-danger-lighten-47 {
  background-color: white;
}

.bg-light-darken-47 {
  background-color: #7f7f7f;
}

.bg-light-lighten-47 {
  background-color: white;
}

.bg-dark-darken-47 {
  background-color: black;
}

.bg-dark-lighten-47 {
  background-color: #897fbf;
}

.bg-primary-darken-48 {
  background-color: black;
}

.bg-primary-lighten-48 {
  background-color: #989894;
}

.bg-secondary-darken-48 {
  background-color: #181a1c;
}

.bg-secondary-lighten-48 {
  background-color: white;
}

.bg-success-darken-48 {
  background-color: #030602;
}

.bg-success-lighten-48 {
  background-color: #f7fcf5;
}

.bg-info-darken-48 {
  background-color: #191a1b;
}

.bg-info-lighten-48 {
  background-color: white;
}

.bg-warning-darken-48 {
  background-color: #281a05;
}

.bg-warning-lighten-48 {
  background-color: white;
}

.bg-danger-darken-48 {
  background-color: #650707;
}

.bg-danger-lighten-48 {
  background-color: white;
}

.bg-light-darken-48 {
  background-color: #7d7d7d;
}

.bg-light-lighten-48 {
  background-color: white;
}

.bg-dark-darken-48 {
  background-color: black;
}

.bg-dark-lighten-48 {
  background-color: #8c82c1;
}

.bg-primary-darken-49 {
  background-color: black;
}

.bg-primary-lighten-49 {
  background-color: #9a9a97;
}

.bg-secondary-darken-49 {
  background-color: #15181a;
}

.bg-secondary-lighten-49 {
  background-color: white;
}

.bg-success-darken-49 {
  background-color: #010200;
}

.bg-success-lighten-49 {
  background-color: #fafdf9;
}

.bg-info-darken-49 {
  background-color: #171719;
}

.bg-info-lighten-49 {
  background-color: white;
}

.bg-warning-darken-49 {
  background-color: #241705;
}

.bg-warning-lighten-49 {
  background-color: white;
}

.bg-danger-darken-49 {
  background-color: #610707;
}

.bg-danger-lighten-49 {
  background-color: white;
}

.bg-light-darken-49 {
  background-color: #7a7a7a;
}

.bg-light-lighten-49 {
  background-color: white;
}

.bg-dark-darken-49 {
  background-color: black;
}

.bg-dark-lighten-49 {
  background-color: #8f86c2;
}

.bg-primary-darken-50 {
  background-color: black;
}

.bg-primary-lighten-50 {
  background-color: #9d9d99;
}

.bg-secondary-darken-50 {
  background-color: #131517;
}

.bg-secondary-lighten-50 {
  background-color: white;
}

.bg-success-darken-50 {
  background-color: black;
}

.bg-success-lighten-50 {
  background-color: #fdfefd;
}

.bg-info-darken-50 {
  background-color: #141516;
}

.bg-info-lighten-50 {
  background-color: white;
}

.bg-warning-darken-50 {
  background-color: #1f1404;
}

.bg-warning-lighten-50 {
  background-color: white;
}

.bg-danger-darken-50 {
  background-color: #5c0606;
}

.bg-danger-lighten-50 {
  background-color: white;
}

.bg-light-darken-50 {
  background-color: #787878;
}

.bg-light-lighten-50 {
  background-color: white;
}

.bg-dark-darken-50 {
  background-color: black;
}

.bg-dark-lighten-50 {
  background-color: #9289c4;
}

.bg-primary-darken-51 {
  background-color: black;
}

.bg-primary-lighten-51 {
  background-color: #9f9f9c;
}

.bg-secondary-darken-51 {
  background-color: #111314;
}

.bg-secondary-lighten-51 {
  background-color: white;
}

.bg-success-darken-51 {
  background-color: black;
}

.bg-success-lighten-51 {
  background-color: white;
}

.bg-info-darken-51 {
  background-color: #121213;
}

.bg-info-lighten-51 {
  background-color: white;
}

.bg-warning-darken-51 {
  background-color: #1b1103;
}

.bg-warning-lighten-51 {
  background-color: white;
}

.bg-danger-darken-51 {
  background-color: #570606;
}

.bg-danger-lighten-51 {
  background-color: white;
}

.bg-light-darken-51 {
  background-color: #757575;
}

.bg-light-lighten-51 {
  background-color: white;
}

.bg-dark-darken-51 {
  background-color: black;
}

.bg-dark-lighten-51 {
  background-color: #958cc6;
}

.bg-primary-darken-52 {
  background-color: black;
}

.bg-primary-lighten-52 {
  background-color: #a2a29e;
}

.bg-secondary-darken-52 {
  background-color: #0e1011;
}

.bg-secondary-lighten-52 {
  background-color: white;
}

.bg-success-darken-52 {
  background-color: black;
}

.bg-success-lighten-52 {
  background-color: white;
}

.bg-info-darken-52 {
  background-color: #0f1011;
}

.bg-info-lighten-52 {
  background-color: white;
}

.bg-warning-darken-52 {
  background-color: #160e03;
}

.bg-warning-lighten-52 {
  background-color: white;
}

.bg-danger-darken-52 {
  background-color: #520606;
}

.bg-danger-lighten-52 {
  background-color: white;
}

.bg-light-darken-52 {
  background-color: #727272;
}

.bg-light-lighten-52 {
  background-color: white;
}

.bg-dark-darken-52 {
  background-color: black;
}

.bg-dark-lighten-52 {
  background-color: #9890c7;
}

.bg-primary-darken-53 {
  background-color: black;
}

.bg-primary-lighten-53 {
  background-color: #a4a4a1;
}

.bg-secondary-darken-53 {
  background-color: #0c0e0f;
}

.bg-secondary-lighten-53 {
  background-color: white;
}

.bg-success-darken-53 {
  background-color: black;
}

.bg-success-lighten-53 {
  background-color: white;
}

.bg-info-darken-53 {
  background-color: #0d0d0e;
}

.bg-info-lighten-53 {
  background-color: white;
}

.bg-warning-darken-53 {
  background-color: #110b02;
}

.bg-warning-lighten-53 {
  background-color: white;
}

.bg-danger-darken-53 {
  background-color: #4d0505;
}

.bg-danger-lighten-53 {
  background-color: white;
}

.bg-light-darken-53 {
  background-color: #707070;
}

.bg-light-lighten-53 {
  background-color: white;
}

.bg-dark-darken-53 {
  background-color: black;
}

.bg-dark-lighten-53 {
  background-color: #9b93c9;
}

.bg-primary-darken-54 {
  background-color: black;
}

.bg-primary-lighten-54 {
  background-color: #a7a7a4;
}

.bg-secondary-darken-54 {
  background-color: #0a0b0c;
}

.bg-secondary-lighten-54 {
  background-color: white;
}

.bg-success-darken-54 {
  background-color: black;
}

.bg-success-lighten-54 {
  background-color: white;
}

.bg-info-darken-54 {
  background-color: #0a0b0b;
}

.bg-info-lighten-54 {
  background-color: white;
}

.bg-warning-darken-54 {
  background-color: #0d0802;
}

.bg-warning-lighten-54 {
  background-color: white;
}

.bg-danger-darken-54 {
  background-color: #490505;
}

.bg-danger-lighten-54 {
  background-color: white;
}

.bg-light-darken-54 {
  background-color: #6d6d6d;
}

.bg-light-lighten-54 {
  background-color: white;
}

.bg-dark-darken-54 {
  background-color: black;
}

.bg-dark-lighten-54 {
  background-color: #9f97cb;
}

.bg-primary-darken-55 {
  background-color: black;
}

.bg-primary-lighten-55 {
  background-color: #a9a9a6;
}

.bg-secondary-darken-55 {
  background-color: #080809;
}

.bg-secondary-lighten-55 {
  background-color: white;
}

.bg-success-darken-55 {
  background-color: black;
}

.bg-success-lighten-55 {
  background-color: white;
}

.bg-info-darken-55 {
  background-color: #080809;
}

.bg-info-lighten-55 {
  background-color: white;
}

.bg-warning-darken-55 {
  background-color: #080501;
}

.bg-warning-lighten-55 {
  background-color: white;
}

.bg-danger-darken-55 {
  background-color: #440505;
}

.bg-danger-lighten-55 {
  background-color: white;
}

.bg-light-darken-55 {
  background-color: #6b6b6b;
}

.bg-light-lighten-55 {
  background-color: white;
}

.bg-dark-darken-55 {
  background-color: black;
}

.bg-dark-lighten-55 {
  background-color: #a29acd;
}

.bg-primary-darken-56 {
  background-color: black;
}

.bg-primary-lighten-56 {
  background-color: #acaca9;
}

.bg-secondary-darken-56 {
  background-color: #050606;
}

.bg-secondary-lighten-56 {
  background-color: white;
}

.bg-success-darken-56 {
  background-color: black;
}

.bg-success-lighten-56 {
  background-color: white;
}

.bg-info-darken-56 {
  background-color: #050606;
}

.bg-info-lighten-56 {
  background-color: white;
}

.bg-warning-darken-56 {
  background-color: #040301;
}

.bg-warning-lighten-56 {
  background-color: white;
}

.bg-danger-darken-56 {
  background-color: #3f0404;
}

.bg-danger-lighten-56 {
  background-color: white;
}

.bg-light-darken-56 {
  background-color: #686868;
}

.bg-light-lighten-56 {
  background-color: white;
}

.bg-dark-darken-56 {
  background-color: black;
}

.bg-dark-lighten-56 {
  background-color: #a59dce;
}

.bg-primary-darken-57 {
  background-color: black;
}

.bg-primary-lighten-57 {
  background-color: #aeaeab;
}

.bg-secondary-darken-57 {
  background-color: #030303;
}

.bg-secondary-lighten-57 {
  background-color: white;
}

.bg-success-darken-57 {
  background-color: black;
}

.bg-success-lighten-57 {
  background-color: white;
}

.bg-info-darken-57 {
  background-color: #030303;
}

.bg-info-lighten-57 {
  background-color: white;
}

.bg-warning-darken-57 {
  background-color: black;
}

.bg-warning-lighten-57 {
  background-color: white;
}

.bg-danger-darken-57 {
  background-color: #3a0404;
}

.bg-danger-lighten-57 {
  background-color: white;
}

.bg-light-darken-57 {
  background-color: #666666;
}

.bg-light-lighten-57 {
  background-color: white;
}

.bg-dark-darken-57 {
  background-color: black;
}

.bg-dark-lighten-57 {
  background-color: #a8a1d0;
}

.bg-primary-darken-58 {
  background-color: black;
}

.bg-primary-lighten-58 {
  background-color: #b1b1ae;
}

.bg-secondary-darken-58 {
  background-color: #010101;
}

.bg-secondary-lighten-58 {
  background-color: white;
}

.bg-success-darken-58 {
  background-color: black;
}

.bg-success-lighten-58 {
  background-color: white;
}

.bg-info-darken-58 {
  background-color: #010101;
}

.bg-info-lighten-58 {
  background-color: white;
}

.bg-warning-darken-58 {
  background-color: black;
}

.bg-warning-lighten-58 {
  background-color: white;
}

.bg-danger-darken-58 {
  background-color: #360404;
}

.bg-danger-lighten-58 {
  background-color: white;
}

.bg-light-darken-58 {
  background-color: #636363;
}

.bg-light-lighten-58 {
  background-color: white;
}

.bg-dark-darken-58 {
  background-color: black;
}

.bg-dark-lighten-58 {
  background-color: #aba4d2;
}

.bg-primary-darken-59 {
  background-color: black;
}

.bg-primary-lighten-59 {
  background-color: #b3b3b1;
}

.bg-secondary-darken-59 {
  background-color: black;
}

.bg-secondary-lighten-59 {
  background-color: white;
}

.bg-success-darken-59 {
  background-color: black;
}

.bg-success-lighten-59 {
  background-color: white;
}

.bg-info-darken-59 {
  background-color: black;
}

.bg-info-lighten-59 {
  background-color: white;
}

.bg-warning-darken-59 {
  background-color: black;
}

.bg-warning-lighten-59 {
  background-color: white;
}

.bg-danger-darken-59 {
  background-color: #310303;
}

.bg-danger-lighten-59 {
  background-color: white;
}

.bg-light-darken-59 {
  background-color: #616161;
}

.bg-light-lighten-59 {
  background-color: white;
}

.bg-dark-darken-59 {
  background-color: black;
}

.bg-dark-lighten-59 {
  background-color: #aea8d3;
}

.bg-primary-darken-60 {
  background-color: black;
}

.bg-primary-lighten-60 {
  background-color: #b6b6b3;
}

.bg-secondary-darken-60 {
  background-color: black;
}

.bg-secondary-lighten-60 {
  background-color: white;
}

.bg-success-darken-60 {
  background-color: black;
}

.bg-success-lighten-60 {
  background-color: white;
}

.bg-info-darken-60 {
  background-color: black;
}

.bg-info-lighten-60 {
  background-color: white;
}

.bg-warning-darken-60 {
  background-color: black;
}

.bg-warning-lighten-60 {
  background-color: white;
}

.bg-danger-darken-60 {
  background-color: #2c0303;
}

.bg-danger-lighten-60 {
  background-color: white;
}

.bg-light-darken-60 {
  background-color: #5e5e5e;
}

.bg-light-lighten-60 {
  background-color: white;
}

.bg-dark-darken-60 {
  background-color: black;
}

.bg-dark-lighten-60 {
  background-color: #b1abd5;
}

.bg-primary-darken-61 {
  background-color: black;
}

.bg-primary-lighten-61 {
  background-color: #b8b8b6;
}

.bg-secondary-darken-61 {
  background-color: black;
}

.bg-secondary-lighten-61 {
  background-color: white;
}

.bg-success-darken-61 {
  background-color: black;
}

.bg-success-lighten-61 {
  background-color: white;
}

.bg-info-darken-61 {
  background-color: black;
}

.bg-info-lighten-61 {
  background-color: white;
}

.bg-warning-darken-61 {
  background-color: black;
}

.bg-warning-lighten-61 {
  background-color: white;
}

.bg-danger-darken-61 {
  background-color: #270303;
}

.bg-danger-lighten-61 {
  background-color: white;
}

.bg-light-darken-61 {
  background-color: #5b5b5b;
}

.bg-light-lighten-61 {
  background-color: white;
}

.bg-dark-darken-61 {
  background-color: black;
}

.bg-dark-lighten-61 {
  background-color: #b5aed7;
}

.bg-primary-darken-62 {
  background-color: black;
}

.bg-primary-lighten-62 {
  background-color: #bbbbb8;
}

.bg-secondary-darken-62 {
  background-color: black;
}

.bg-secondary-lighten-62 {
  background-color: white;
}

.bg-success-darken-62 {
  background-color: black;
}

.bg-success-lighten-62 {
  background-color: white;
}

.bg-info-darken-62 {
  background-color: black;
}

.bg-info-lighten-62 {
  background-color: white;
}

.bg-warning-darken-62 {
  background-color: black;
}

.bg-warning-lighten-62 {
  background-color: white;
}

.bg-danger-darken-62 {
  background-color: #220202;
}

.bg-danger-lighten-62 {
  background-color: white;
}

.bg-light-darken-62 {
  background-color: #595959;
}

.bg-light-lighten-62 {
  background-color: white;
}

.bg-dark-darken-62 {
  background-color: black;
}

.bg-dark-lighten-62 {
  background-color: #b8b2d8;
}

.bg-primary-darken-63 {
  background-color: black;
}

.bg-primary-lighten-63 {
  background-color: #bdbdbb;
}

.bg-secondary-darken-63 {
  background-color: black;
}

.bg-secondary-lighten-63 {
  background-color: white;
}

.bg-success-darken-63 {
  background-color: black;
}

.bg-success-lighten-63 {
  background-color: white;
}

.bg-info-darken-63 {
  background-color: black;
}

.bg-info-lighten-63 {
  background-color: white;
}

.bg-warning-darken-63 {
  background-color: black;
}

.bg-warning-lighten-63 {
  background-color: white;
}

.bg-danger-darken-63 {
  background-color: #1e0202;
}

.bg-danger-lighten-63 {
  background-color: white;
}

.bg-light-darken-63 {
  background-color: #565656;
}

.bg-light-lighten-63 {
  background-color: white;
}

.bg-dark-darken-63 {
  background-color: black;
}

.bg-dark-lighten-63 {
  background-color: #bbb5da;
}

.bg-primary-darken-64 {
  background-color: black;
}

.bg-primary-lighten-64 {
  background-color: #c0c0be;
}

.bg-secondary-darken-64 {
  background-color: black;
}

.bg-secondary-lighten-64 {
  background-color: white;
}

.bg-success-darken-64 {
  background-color: black;
}

.bg-success-lighten-64 {
  background-color: white;
}

.bg-info-darken-64 {
  background-color: black;
}

.bg-info-lighten-64 {
  background-color: white;
}

.bg-warning-darken-64 {
  background-color: black;
}

.bg-warning-lighten-64 {
  background-color: white;
}

.bg-danger-darken-64 {
  background-color: #190202;
}

.bg-danger-lighten-64 {
  background-color: white;
}

.bg-light-darken-64 {
  background-color: #545454;
}

.bg-light-lighten-64 {
  background-color: white;
}

.bg-dark-darken-64 {
  background-color: black;
}

.bg-dark-lighten-64 {
  background-color: #beb9dc;
}

.bg-primary-darken-65 {
  background-color: black;
}

.bg-primary-lighten-65 {
  background-color: #c2c2c0;
}

.bg-secondary-darken-65 {
  background-color: black;
}

.bg-secondary-lighten-65 {
  background-color: white;
}

.bg-success-darken-65 {
  background-color: black;
}

.bg-success-lighten-65 {
  background-color: white;
}

.bg-info-darken-65 {
  background-color: black;
}

.bg-info-lighten-65 {
  background-color: white;
}

.bg-warning-darken-65 {
  background-color: black;
}

.bg-warning-lighten-65 {
  background-color: white;
}

.bg-danger-darken-65 {
  background-color: #140101;
}

.bg-danger-lighten-65 {
  background-color: white;
}

.bg-light-darken-65 {
  background-color: #515151;
}

.bg-light-lighten-65 {
  background-color: white;
}

.bg-dark-darken-65 {
  background-color: black;
}

.bg-dark-lighten-65 {
  background-color: #c1bcde;
}

.bg-primary-darken-66 {
  background-color: black;
}

.bg-primary-lighten-66 {
  background-color: #c5c5c3;
}

.bg-secondary-darken-66 {
  background-color: black;
}

.bg-secondary-lighten-66 {
  background-color: white;
}

.bg-success-darken-66 {
  background-color: black;
}

.bg-success-lighten-66 {
  background-color: white;
}

.bg-info-darken-66 {
  background-color: black;
}

.bg-info-lighten-66 {
  background-color: white;
}

.bg-warning-darken-66 {
  background-color: black;
}

.bg-warning-lighten-66 {
  background-color: white;
}

.bg-danger-darken-66 {
  background-color: #0f0101;
}

.bg-danger-lighten-66 {
  background-color: white;
}

.bg-light-darken-66 {
  background-color: #4f4f4f;
}

.bg-light-lighten-66 {
  background-color: white;
}

.bg-dark-darken-66 {
  background-color: black;
}

.bg-dark-lighten-66 {
  background-color: #c4bfdf;
}

.bg-primary-darken-67 {
  background-color: black;
}

.bg-primary-lighten-67 {
  background-color: #c7c7c5;
}

.bg-secondary-darken-67 {
  background-color: black;
}

.bg-secondary-lighten-67 {
  background-color: white;
}

.bg-success-darken-67 {
  background-color: black;
}

.bg-success-lighten-67 {
  background-color: white;
}

.bg-info-darken-67 {
  background-color: black;
}

.bg-info-lighten-67 {
  background-color: white;
}

.bg-warning-darken-67 {
  background-color: black;
}

.bg-warning-lighten-67 {
  background-color: white;
}

.bg-danger-darken-67 {
  background-color: #0b0101;
}

.bg-danger-lighten-67 {
  background-color: white;
}

.bg-light-darken-67 {
  background-color: #4c4c4c;
}

.bg-light-lighten-67 {
  background-color: white;
}

.bg-dark-darken-67 {
  background-color: black;
}

.bg-dark-lighten-67 {
  background-color: #c7c3e1;
}

.bg-primary-darken-68 {
  background-color: black;
}

.bg-primary-lighten-68 {
  background-color: #cacac8;
}

.bg-secondary-darken-68 {
  background-color: black;
}

.bg-secondary-lighten-68 {
  background-color: white;
}

.bg-success-darken-68 {
  background-color: black;
}

.bg-success-lighten-68 {
  background-color: white;
}

.bg-info-darken-68 {
  background-color: black;
}

.bg-info-lighten-68 {
  background-color: white;
}

.bg-warning-darken-68 {
  background-color: black;
}

.bg-warning-lighten-68 {
  background-color: white;
}

.bg-danger-darken-68 {
  background-color: #060000;
}

.bg-danger-lighten-68 {
  background-color: white;
}

.bg-light-darken-68 {
  background-color: #4a4a4a;
}

.bg-light-lighten-68 {
  background-color: white;
}

.bg-dark-darken-68 {
  background-color: black;
}

.bg-dark-lighten-68 {
  background-color: #cbc6e3;
}

.bg-primary-darken-69 {
  background-color: black;
}

.bg-primary-lighten-69 {
  background-color: #cccccb;
}

.bg-secondary-darken-69 {
  background-color: black;
}

.bg-secondary-lighten-69 {
  background-color: white;
}

.bg-success-darken-69 {
  background-color: black;
}

.bg-success-lighten-69 {
  background-color: white;
}

.bg-info-darken-69 {
  background-color: black;
}

.bg-info-lighten-69 {
  background-color: white;
}

.bg-warning-darken-69 {
  background-color: black;
}

.bg-warning-lighten-69 {
  background-color: white;
}

.bg-danger-darken-69 {
  background-color: #010000;
}

.bg-danger-lighten-69 {
  background-color: white;
}

.bg-light-darken-69 {
  background-color: #474747;
}

.bg-light-lighten-69 {
  background-color: white;
}

.bg-dark-darken-69 {
  background-color: black;
}

.bg-dark-lighten-69 {
  background-color: #cecae4;
}

.bg-primary-darken-70 {
  background-color: black;
}

.bg-primary-lighten-70 {
  background-color: #cfcfcd;
}

.bg-secondary-darken-70 {
  background-color: black;
}

.bg-secondary-lighten-70 {
  background-color: white;
}

.bg-success-darken-70 {
  background-color: black;
}

.bg-success-lighten-70 {
  background-color: white;
}

.bg-info-darken-70 {
  background-color: black;
}

.bg-info-lighten-70 {
  background-color: white;
}

.bg-warning-darken-70 {
  background-color: black;
}

.bg-warning-lighten-70 {
  background-color: white;
}

.bg-danger-darken-70 {
  background-color: black;
}

.bg-danger-lighten-70 {
  background-color: white;
}

.bg-light-darken-70 {
  background-color: #454545;
}

.bg-light-lighten-70 {
  background-color: white;
}

.bg-dark-darken-70 {
  background-color: black;
}

.bg-dark-lighten-70 {
  background-color: #d1cde6;
}

.bg-primary-darken-71 {
  background-color: black;
}

.bg-primary-lighten-71 {
  background-color: #d1d1d0;
}

.bg-secondary-darken-71 {
  background-color: black;
}

.bg-secondary-lighten-71 {
  background-color: white;
}

.bg-success-darken-71 {
  background-color: black;
}

.bg-success-lighten-71 {
  background-color: white;
}

.bg-info-darken-71 {
  background-color: black;
}

.bg-info-lighten-71 {
  background-color: white;
}

.bg-warning-darken-71 {
  background-color: black;
}

.bg-warning-lighten-71 {
  background-color: white;
}

.bg-danger-darken-71 {
  background-color: black;
}

.bg-danger-lighten-71 {
  background-color: white;
}

.bg-light-darken-71 {
  background-color: #424242;
}

.bg-light-lighten-71 {
  background-color: white;
}

.bg-dark-darken-71 {
  background-color: black;
}

.bg-dark-lighten-71 {
  background-color: #d4d0e8;
}

.bg-primary-darken-72 {
  background-color: black;
}

.bg-primary-lighten-72 {
  background-color: #d4d4d2;
}

.bg-secondary-darken-72 {
  background-color: black;
}

.bg-secondary-lighten-72 {
  background-color: white;
}

.bg-success-darken-72 {
  background-color: black;
}

.bg-success-lighten-72 {
  background-color: white;
}

.bg-info-darken-72 {
  background-color: black;
}

.bg-info-lighten-72 {
  background-color: white;
}

.bg-warning-darken-72 {
  background-color: black;
}

.bg-warning-lighten-72 {
  background-color: white;
}

.bg-danger-darken-72 {
  background-color: black;
}

.bg-danger-lighten-72 {
  background-color: white;
}

.bg-light-darken-72 {
  background-color: #3f3f3f;
}

.bg-light-lighten-72 {
  background-color: white;
}

.bg-dark-darken-72 {
  background-color: black;
}

.bg-dark-lighten-72 {
  background-color: #d7d4e9;
}

.bg-primary-darken-73 {
  background-color: black;
}

.bg-primary-lighten-73 {
  background-color: #d6d6d5;
}

.bg-secondary-darken-73 {
  background-color: black;
}

.bg-secondary-lighten-73 {
  background-color: white;
}

.bg-success-darken-73 {
  background-color: black;
}

.bg-success-lighten-73 {
  background-color: white;
}

.bg-info-darken-73 {
  background-color: black;
}

.bg-info-lighten-73 {
  background-color: white;
}

.bg-warning-darken-73 {
  background-color: black;
}

.bg-warning-lighten-73 {
  background-color: white;
}

.bg-danger-darken-73 {
  background-color: black;
}

.bg-danger-lighten-73 {
  background-color: white;
}

.bg-light-darken-73 {
  background-color: #3d3d3d;
}

.bg-light-lighten-73 {
  background-color: white;
}

.bg-dark-darken-73 {
  background-color: black;
}

.bg-dark-lighten-73 {
  background-color: #dad7eb;
}

.bg-primary-darken-74 {
  background-color: black;
}

.bg-primary-lighten-74 {
  background-color: #d9d9d7;
}

.bg-secondary-darken-74 {
  background-color: black;
}

.bg-secondary-lighten-74 {
  background-color: white;
}

.bg-success-darken-74 {
  background-color: black;
}

.bg-success-lighten-74 {
  background-color: white;
}

.bg-info-darken-74 {
  background-color: black;
}

.bg-info-lighten-74 {
  background-color: white;
}

.bg-warning-darken-74 {
  background-color: black;
}

.bg-warning-lighten-74 {
  background-color: white;
}

.bg-danger-darken-74 {
  background-color: black;
}

.bg-danger-lighten-74 {
  background-color: white;
}

.bg-light-darken-74 {
  background-color: #3a3a3a;
}

.bg-light-lighten-74 {
  background-color: white;
}

.bg-dark-darken-74 {
  background-color: black;
}

.bg-dark-lighten-74 {
  background-color: #dddbed;
}

.bg-primary-darken-75 {
  background-color: black;
}

.bg-primary-lighten-75 {
  background-color: #dbdbda;
}

.bg-secondary-darken-75 {
  background-color: black;
}

.bg-secondary-lighten-75 {
  background-color: white;
}

.bg-success-darken-75 {
  background-color: black;
}

.bg-success-lighten-75 {
  background-color: white;
}

.bg-info-darken-75 {
  background-color: black;
}

.bg-info-lighten-75 {
  background-color: white;
}

.bg-warning-darken-75 {
  background-color: black;
}

.bg-warning-lighten-75 {
  background-color: white;
}

.bg-danger-darken-75 {
  background-color: black;
}

.bg-danger-lighten-75 {
  background-color: white;
}

.bg-light-darken-75 {
  background-color: #383838;
}

.bg-light-lighten-75 {
  background-color: white;
}

.bg-dark-darken-75 {
  background-color: black;
}

.bg-dark-lighten-75 {
  background-color: #e1deef;
}

.bg-primary-darken-76 {
  background-color: black;
}

.bg-primary-lighten-76 {
  background-color: #dededd;
}

.bg-secondary-darken-76 {
  background-color: black;
}

.bg-secondary-lighten-76 {
  background-color: white;
}

.bg-success-darken-76 {
  background-color: black;
}

.bg-success-lighten-76 {
  background-color: white;
}

.bg-info-darken-76 {
  background-color: black;
}

.bg-info-lighten-76 {
  background-color: white;
}

.bg-warning-darken-76 {
  background-color: black;
}

.bg-warning-lighten-76 {
  background-color: white;
}

.bg-danger-darken-76 {
  background-color: black;
}

.bg-danger-lighten-76 {
  background-color: white;
}

.bg-light-darken-76 {
  background-color: #353535;
}

.bg-light-lighten-76 {
  background-color: white;
}

.bg-dark-darken-76 {
  background-color: black;
}

.bg-dark-lighten-76 {
  background-color: #e4e1f0;
}

.bg-primary-darken-77 {
  background-color: black;
}

.bg-primary-lighten-77 {
  background-color: #e0e0df;
}

.bg-secondary-darken-77 {
  background-color: black;
}

.bg-secondary-lighten-77 {
  background-color: white;
}

.bg-success-darken-77 {
  background-color: black;
}

.bg-success-lighten-77 {
  background-color: white;
}

.bg-info-darken-77 {
  background-color: black;
}

.bg-info-lighten-77 {
  background-color: white;
}

.bg-warning-darken-77 {
  background-color: black;
}

.bg-warning-lighten-77 {
  background-color: white;
}

.bg-danger-darken-77 {
  background-color: black;
}

.bg-danger-lighten-77 {
  background-color: white;
}

.bg-light-darken-77 {
  background-color: #333333;
}

.bg-light-lighten-77 {
  background-color: white;
}

.bg-dark-darken-77 {
  background-color: black;
}

.bg-dark-lighten-77 {
  background-color: #e7e5f2;
}

.bg-primary-darken-78 {
  background-color: black;
}

.bg-primary-lighten-78 {
  background-color: #e3e3e2;
}

.bg-secondary-darken-78 {
  background-color: black;
}

.bg-secondary-lighten-78 {
  background-color: white;
}

.bg-success-darken-78 {
  background-color: black;
}

.bg-success-lighten-78 {
  background-color: white;
}

.bg-info-darken-78 {
  background-color: black;
}

.bg-info-lighten-78 {
  background-color: white;
}

.bg-warning-darken-78 {
  background-color: black;
}

.bg-warning-lighten-78 {
  background-color: white;
}

.bg-danger-darken-78 {
  background-color: black;
}

.bg-danger-lighten-78 {
  background-color: white;
}

.bg-light-darken-78 {
  background-color: #303030;
}

.bg-light-lighten-78 {
  background-color: white;
}

.bg-dark-darken-78 {
  background-color: black;
}

.bg-dark-lighten-78 {
  background-color: #eae8f4;
}

.bg-primary-darken-79 {
  background-color: black;
}

.bg-primary-lighten-79 {
  background-color: #e5e5e4;
}

.bg-secondary-darken-79 {
  background-color: black;
}

.bg-secondary-lighten-79 {
  background-color: white;
}

.bg-success-darken-79 {
  background-color: black;
}

.bg-success-lighten-79 {
  background-color: white;
}

.bg-info-darken-79 {
  background-color: black;
}

.bg-info-lighten-79 {
  background-color: white;
}

.bg-warning-darken-79 {
  background-color: black;
}

.bg-warning-lighten-79 {
  background-color: white;
}

.bg-danger-darken-79 {
  background-color: black;
}

.bg-danger-lighten-79 {
  background-color: white;
}

.bg-light-darken-79 {
  background-color: #2e2e2e;
}

.bg-light-lighten-79 {
  background-color: white;
}

.bg-dark-darken-79 {
  background-color: black;
}

.bg-dark-lighten-79 {
  background-color: #edecf5;
}

.bg-primary-darken-80 {
  background-color: black;
}

.bg-primary-lighten-80 {
  background-color: #e8e8e7;
}

.bg-secondary-darken-80 {
  background-color: black;
}

.bg-secondary-lighten-80 {
  background-color: white;
}

.bg-success-darken-80 {
  background-color: black;
}

.bg-success-lighten-80 {
  background-color: white;
}

.bg-info-darken-80 {
  background-color: black;
}

.bg-info-lighten-80 {
  background-color: white;
}

.bg-warning-darken-80 {
  background-color: black;
}

.bg-warning-lighten-80 {
  background-color: white;
}

.bg-danger-darken-80 {
  background-color: black;
}

.bg-danger-lighten-80 {
  background-color: white;
}

.bg-light-darken-80 {
  background-color: #2b2b2b;
}

.bg-light-lighten-80 {
  background-color: white;
}

.bg-dark-darken-80 {
  background-color: black;
}

.bg-dark-lighten-80 {
  background-color: #f0eff7;
}

.bg-primary-darken-81 {
  background-color: black;
}

.bg-primary-lighten-81 {
  background-color: #eaeaea;
}

.bg-secondary-darken-81 {
  background-color: black;
}

.bg-secondary-lighten-81 {
  background-color: white;
}

.bg-success-darken-81 {
  background-color: black;
}

.bg-success-lighten-81 {
  background-color: white;
}

.bg-info-darken-81 {
  background-color: black;
}

.bg-info-lighten-81 {
  background-color: white;
}

.bg-warning-darken-81 {
  background-color: black;
}

.bg-warning-lighten-81 {
  background-color: white;
}

.bg-danger-darken-81 {
  background-color: black;
}

.bg-danger-lighten-81 {
  background-color: white;
}

.bg-light-darken-81 {
  background-color: #282828;
}

.bg-light-lighten-81 {
  background-color: white;
}

.bg-dark-darken-81 {
  background-color: black;
}

.bg-dark-lighten-81 {
  background-color: #f3f2f9;
}

.bg-primary-darken-82 {
  background-color: black;
}

.bg-primary-lighten-82 {
  background-color: #ededec;
}

.bg-secondary-darken-82 {
  background-color: black;
}

.bg-secondary-lighten-82 {
  background-color: white;
}

.bg-success-darken-82 {
  background-color: black;
}

.bg-success-lighten-82 {
  background-color: white;
}

.bg-info-darken-82 {
  background-color: black;
}

.bg-info-lighten-82 {
  background-color: white;
}

.bg-warning-darken-82 {
  background-color: black;
}

.bg-warning-lighten-82 {
  background-color: white;
}

.bg-danger-darken-82 {
  background-color: black;
}

.bg-danger-lighten-82 {
  background-color: white;
}

.bg-light-darken-82 {
  background-color: #262626;
}

.bg-light-lighten-82 {
  background-color: white;
}

.bg-dark-darken-82 {
  background-color: black;
}

.bg-dark-lighten-82 {
  background-color: #f7f6fa;
}

.bg-primary-darken-83 {
  background-color: black;
}

.bg-primary-lighten-83 {
  background-color: #efefef;
}

.bg-secondary-darken-83 {
  background-color: black;
}

.bg-secondary-lighten-83 {
  background-color: white;
}

.bg-success-darken-83 {
  background-color: black;
}

.bg-success-lighten-83 {
  background-color: white;
}

.bg-info-darken-83 {
  background-color: black;
}

.bg-info-lighten-83 {
  background-color: white;
}

.bg-warning-darken-83 {
  background-color: black;
}

.bg-warning-lighten-83 {
  background-color: white;
}

.bg-danger-darken-83 {
  background-color: black;
}

.bg-danger-lighten-83 {
  background-color: white;
}

.bg-light-darken-83 {
  background-color: #232323;
}

.bg-light-lighten-83 {
  background-color: white;
}

.bg-dark-darken-83 {
  background-color: black;
}

.bg-dark-lighten-83 {
  background-color: #faf9fc;
}

.bg-primary-darken-84 {
  background-color: black;
}

.bg-primary-lighten-84 {
  background-color: #f2f2f1;
}

.bg-secondary-darken-84 {
  background-color: black;
}

.bg-secondary-lighten-84 {
  background-color: white;
}

.bg-success-darken-84 {
  background-color: black;
}

.bg-success-lighten-84 {
  background-color: white;
}

.bg-info-darken-84 {
  background-color: black;
}

.bg-info-lighten-84 {
  background-color: white;
}

.bg-warning-darken-84 {
  background-color: black;
}

.bg-warning-lighten-84 {
  background-color: white;
}

.bg-danger-darken-84 {
  background-color: black;
}

.bg-danger-lighten-84 {
  background-color: white;
}

.bg-light-darken-84 {
  background-color: #212121;
}

.bg-light-lighten-84 {
  background-color: white;
}

.bg-dark-darken-84 {
  background-color: black;
}

.bg-dark-lighten-84 {
  background-color: #fdfdfe;
}

.bg-primary-darken-85 {
  background-color: black;
}

.bg-primary-lighten-85 {
  background-color: #f4f4f4;
}

.bg-secondary-darken-85 {
  background-color: black;
}

.bg-secondary-lighten-85 {
  background-color: white;
}

.bg-success-darken-85 {
  background-color: black;
}

.bg-success-lighten-85 {
  background-color: white;
}

.bg-info-darken-85 {
  background-color: black;
}

.bg-info-lighten-85 {
  background-color: white;
}

.bg-warning-darken-85 {
  background-color: black;
}

.bg-warning-lighten-85 {
  background-color: white;
}

.bg-danger-darken-85 {
  background-color: black;
}

.bg-danger-lighten-85 {
  background-color: white;
}

.bg-light-darken-85 {
  background-color: #1e1e1e;
}

.bg-light-lighten-85 {
  background-color: white;
}

.bg-dark-darken-85 {
  background-color: black;
}

.bg-dark-lighten-85 {
  background-color: white;
}

.bg-primary-darken-86 {
  background-color: black;
}

.bg-primary-lighten-86 {
  background-color: #f7f7f7;
}

.bg-secondary-darken-86 {
  background-color: black;
}

.bg-secondary-lighten-86 {
  background-color: white;
}

.bg-success-darken-86 {
  background-color: black;
}

.bg-success-lighten-86 {
  background-color: white;
}

.bg-info-darken-86 {
  background-color: black;
}

.bg-info-lighten-86 {
  background-color: white;
}

.bg-warning-darken-86 {
  background-color: black;
}

.bg-warning-lighten-86 {
  background-color: white;
}

.bg-danger-darken-86 {
  background-color: black;
}

.bg-danger-lighten-86 {
  background-color: white;
}

.bg-light-darken-86 {
  background-color: #1c1c1c;
}

.bg-light-lighten-86 {
  background-color: white;
}

.bg-dark-darken-86 {
  background-color: black;
}

.bg-dark-lighten-86 {
  background-color: white;
}

.bg-primary-darken-87 {
  background-color: black;
}

.bg-primary-lighten-87 {
  background-color: #f9f9f9;
}

.bg-secondary-darken-87 {
  background-color: black;
}

.bg-secondary-lighten-87 {
  background-color: white;
}

.bg-success-darken-87 {
  background-color: black;
}

.bg-success-lighten-87 {
  background-color: white;
}

.bg-info-darken-87 {
  background-color: black;
}

.bg-info-lighten-87 {
  background-color: white;
}

.bg-warning-darken-87 {
  background-color: black;
}

.bg-warning-lighten-87 {
  background-color: white;
}

.bg-danger-darken-87 {
  background-color: black;
}

.bg-danger-lighten-87 {
  background-color: white;
}

.bg-light-darken-87 {
  background-color: #191919;
}

.bg-light-lighten-87 {
  background-color: white;
}

.bg-dark-darken-87 {
  background-color: black;
}

.bg-dark-lighten-87 {
  background-color: white;
}

.bg-primary-darken-88 {
  background-color: black;
}

.bg-primary-lighten-88 {
  background-color: #fcfcfc;
}

.bg-secondary-darken-88 {
  background-color: black;
}

.bg-secondary-lighten-88 {
  background-color: white;
}

.bg-success-darken-88 {
  background-color: black;
}

.bg-success-lighten-88 {
  background-color: white;
}

.bg-info-darken-88 {
  background-color: black;
}

.bg-info-lighten-88 {
  background-color: white;
}

.bg-warning-darken-88 {
  background-color: black;
}

.bg-warning-lighten-88 {
  background-color: white;
}

.bg-danger-darken-88 {
  background-color: black;
}

.bg-danger-lighten-88 {
  background-color: white;
}

.bg-light-darken-88 {
  background-color: #171717;
}

.bg-light-lighten-88 {
  background-color: white;
}

.bg-dark-darken-88 {
  background-color: black;
}

.bg-dark-lighten-88 {
  background-color: white;
}

.bg-primary-darken-89 {
  background-color: black;
}

.bg-primary-lighten-89 {
  background-color: #fefefe;
}

.bg-secondary-darken-89 {
  background-color: black;
}

.bg-secondary-lighten-89 {
  background-color: white;
}

.bg-success-darken-89 {
  background-color: black;
}

.bg-success-lighten-89 {
  background-color: white;
}

.bg-info-darken-89 {
  background-color: black;
}

.bg-info-lighten-89 {
  background-color: white;
}

.bg-warning-darken-89 {
  background-color: black;
}

.bg-warning-lighten-89 {
  background-color: white;
}

.bg-danger-darken-89 {
  background-color: black;
}

.bg-danger-lighten-89 {
  background-color: white;
}

.bg-light-darken-89 {
  background-color: #141414;
}

.bg-light-lighten-89 {
  background-color: white;
}

.bg-dark-darken-89 {
  background-color: black;
}

.bg-dark-lighten-89 {
  background-color: white;
}

.bg-primary-darken-90 {
  background-color: black;
}

.bg-primary-lighten-90 {
  background-color: white;
}

.bg-secondary-darken-90 {
  background-color: black;
}

.bg-secondary-lighten-90 {
  background-color: white;
}

.bg-success-darken-90 {
  background-color: black;
}

.bg-success-lighten-90 {
  background-color: white;
}

.bg-info-darken-90 {
  background-color: black;
}

.bg-info-lighten-90 {
  background-color: white;
}

.bg-warning-darken-90 {
  background-color: black;
}

.bg-warning-lighten-90 {
  background-color: white;
}

.bg-danger-darken-90 {
  background-color: black;
}

.bg-danger-lighten-90 {
  background-color: white;
}

.bg-light-darken-90 {
  background-color: #121212;
}

.bg-light-lighten-90 {
  background-color: white;
}

.bg-dark-darken-90 {
  background-color: black;
}

.bg-dark-lighten-90 {
  background-color: white;
}

.bg-primary-darken-91 {
  background-color: black;
}

.bg-primary-lighten-91 {
  background-color: white;
}

.bg-secondary-darken-91 {
  background-color: black;
}

.bg-secondary-lighten-91 {
  background-color: white;
}

.bg-success-darken-91 {
  background-color: black;
}

.bg-success-lighten-91 {
  background-color: white;
}

.bg-info-darken-91 {
  background-color: black;
}

.bg-info-lighten-91 {
  background-color: white;
}

.bg-warning-darken-91 {
  background-color: black;
}

.bg-warning-lighten-91 {
  background-color: white;
}

.bg-danger-darken-91 {
  background-color: black;
}

.bg-danger-lighten-91 {
  background-color: white;
}

.bg-light-darken-91 {
  background-color: #0f0f0f;
}

.bg-light-lighten-91 {
  background-color: white;
}

.bg-dark-darken-91 {
  background-color: black;
}

.bg-dark-lighten-91 {
  background-color: white;
}

.bg-primary-darken-92 {
  background-color: black;
}

.bg-primary-lighten-92 {
  background-color: white;
}

.bg-secondary-darken-92 {
  background-color: black;
}

.bg-secondary-lighten-92 {
  background-color: white;
}

.bg-success-darken-92 {
  background-color: black;
}

.bg-success-lighten-92 {
  background-color: white;
}

.bg-info-darken-92 {
  background-color: black;
}

.bg-info-lighten-92 {
  background-color: white;
}

.bg-warning-darken-92 {
  background-color: black;
}

.bg-warning-lighten-92 {
  background-color: white;
}

.bg-danger-darken-92 {
  background-color: black;
}

.bg-danger-lighten-92 {
  background-color: white;
}

.bg-light-darken-92 {
  background-color: #0c0c0c;
}

.bg-light-lighten-92 {
  background-color: white;
}

.bg-dark-darken-92 {
  background-color: black;
}

.bg-dark-lighten-92 {
  background-color: white;
}

.bg-primary-darken-93 {
  background-color: black;
}

.bg-primary-lighten-93 {
  background-color: white;
}

.bg-secondary-darken-93 {
  background-color: black;
}

.bg-secondary-lighten-93 {
  background-color: white;
}

.bg-success-darken-93 {
  background-color: black;
}

.bg-success-lighten-93 {
  background-color: white;
}

.bg-info-darken-93 {
  background-color: black;
}

.bg-info-lighten-93 {
  background-color: white;
}

.bg-warning-darken-93 {
  background-color: black;
}

.bg-warning-lighten-93 {
  background-color: white;
}

.bg-danger-darken-93 {
  background-color: black;
}

.bg-danger-lighten-93 {
  background-color: white;
}

.bg-light-darken-93 {
  background-color: #0a0a0a;
}

.bg-light-lighten-93 {
  background-color: white;
}

.bg-dark-darken-93 {
  background-color: black;
}

.bg-dark-lighten-93 {
  background-color: white;
}

.bg-primary-darken-94 {
  background-color: black;
}

.bg-primary-lighten-94 {
  background-color: white;
}

.bg-secondary-darken-94 {
  background-color: black;
}

.bg-secondary-lighten-94 {
  background-color: white;
}

.bg-success-darken-94 {
  background-color: black;
}

.bg-success-lighten-94 {
  background-color: white;
}

.bg-info-darken-94 {
  background-color: black;
}

.bg-info-lighten-94 {
  background-color: white;
}

.bg-warning-darken-94 {
  background-color: black;
}

.bg-warning-lighten-94 {
  background-color: white;
}

.bg-danger-darken-94 {
  background-color: black;
}

.bg-danger-lighten-94 {
  background-color: white;
}

.bg-light-darken-94 {
  background-color: #070707;
}

.bg-light-lighten-94 {
  background-color: white;
}

.bg-dark-darken-94 {
  background-color: black;
}

.bg-dark-lighten-94 {
  background-color: white;
}

.bg-primary-darken-95 {
  background-color: black;
}

.bg-primary-lighten-95 {
  background-color: white;
}

.bg-secondary-darken-95 {
  background-color: black;
}

.bg-secondary-lighten-95 {
  background-color: white;
}

.bg-success-darken-95 {
  background-color: black;
}

.bg-success-lighten-95 {
  background-color: white;
}

.bg-info-darken-95 {
  background-color: black;
}

.bg-info-lighten-95 {
  background-color: white;
}

.bg-warning-darken-95 {
  background-color: black;
}

.bg-warning-lighten-95 {
  background-color: white;
}

.bg-danger-darken-95 {
  background-color: black;
}

.bg-danger-lighten-95 {
  background-color: white;
}

.bg-light-darken-95 {
  background-color: #050505;
}

.bg-light-lighten-95 {
  background-color: white;
}

.bg-dark-darken-95 {
  background-color: black;
}

.bg-dark-lighten-95 {
  background-color: white;
}

.bg-primary-darken-96 {
  background-color: black;
}

.bg-primary-lighten-96 {
  background-color: white;
}

.bg-secondary-darken-96 {
  background-color: black;
}

.bg-secondary-lighten-96 {
  background-color: white;
}

.bg-success-darken-96 {
  background-color: black;
}

.bg-success-lighten-96 {
  background-color: white;
}

.bg-info-darken-96 {
  background-color: black;
}

.bg-info-lighten-96 {
  background-color: white;
}

.bg-warning-darken-96 {
  background-color: black;
}

.bg-warning-lighten-96 {
  background-color: white;
}

.bg-danger-darken-96 {
  background-color: black;
}

.bg-danger-lighten-96 {
  background-color: white;
}

.bg-light-darken-96 {
  background-color: #020202;
}

.bg-light-lighten-96 {
  background-color: white;
}

.bg-dark-darken-96 {
  background-color: black;
}

.bg-dark-lighten-96 {
  background-color: white;
}

.bg-primary-darken-97 {
  background-color: black;
}

.bg-primary-lighten-97 {
  background-color: white;
}

.bg-secondary-darken-97 {
  background-color: black;
}

.bg-secondary-lighten-97 {
  background-color: white;
}

.bg-success-darken-97 {
  background-color: black;
}

.bg-success-lighten-97 {
  background-color: white;
}

.bg-info-darken-97 {
  background-color: black;
}

.bg-info-lighten-97 {
  background-color: white;
}

.bg-warning-darken-97 {
  background-color: black;
}

.bg-warning-lighten-97 {
  background-color: white;
}

.bg-danger-darken-97 {
  background-color: black;
}

.bg-danger-lighten-97 {
  background-color: white;
}

.bg-light-darken-97 {
  background-color: black;
}

.bg-light-lighten-97 {
  background-color: white;
}

.bg-dark-darken-97 {
  background-color: black;
}

.bg-dark-lighten-97 {
  background-color: white;
}

.bg-primary-darken-98 {
  background-color: black;
}

.bg-primary-lighten-98 {
  background-color: white;
}

.bg-secondary-darken-98 {
  background-color: black;
}

.bg-secondary-lighten-98 {
  background-color: white;
}

.bg-success-darken-98 {
  background-color: black;
}

.bg-success-lighten-98 {
  background-color: white;
}

.bg-info-darken-98 {
  background-color: black;
}

.bg-info-lighten-98 {
  background-color: white;
}

.bg-warning-darken-98 {
  background-color: black;
}

.bg-warning-lighten-98 {
  background-color: white;
}

.bg-danger-darken-98 {
  background-color: black;
}

.bg-danger-lighten-98 {
  background-color: white;
}

.bg-light-darken-98 {
  background-color: black;
}

.bg-light-lighten-98 {
  background-color: white;
}

.bg-dark-darken-98 {
  background-color: black;
}

.bg-dark-lighten-98 {
  background-color: white;
}

.bg-primary-darken-99 {
  background-color: black;
}

.bg-primary-lighten-99 {
  background-color: white;
}

.bg-secondary-darken-99 {
  background-color: black;
}

.bg-secondary-lighten-99 {
  background-color: white;
}

.bg-success-darken-99 {
  background-color: black;
}

.bg-success-lighten-99 {
  background-color: white;
}

.bg-info-darken-99 {
  background-color: black;
}

.bg-info-lighten-99 {
  background-color: white;
}

.bg-warning-darken-99 {
  background-color: black;
}

.bg-warning-lighten-99 {
  background-color: white;
}

.bg-danger-darken-99 {
  background-color: black;
}

.bg-danger-lighten-99 {
  background-color: white;
}

.bg-light-darken-99 {
  background-color: black;
}

.bg-light-lighten-99 {
  background-color: white;
}

.bg-dark-darken-99 {
  background-color: black;
}

.bg-dark-lighten-99 {
  background-color: white;
}

.bg-primary-darken-100 {
  background-color: black;
}

.bg-primary-lighten-100 {
  background-color: white;
}

.bg-secondary-darken-100 {
  background-color: black;
}

.bg-secondary-lighten-100 {
  background-color: white;
}

.bg-success-darken-100 {
  background-color: black;
}

.bg-success-lighten-100 {
  background-color: white;
}

.bg-info-darken-100 {
  background-color: black;
}

.bg-info-lighten-100 {
  background-color: white;
}

.bg-warning-darken-100 {
  background-color: black;
}

.bg-warning-lighten-100 {
  background-color: white;
}

.bg-danger-darken-100 {
  background-color: black;
}

.bg-danger-lighten-100 {
  background-color: white;
}

.bg-light-darken-100 {
  background-color: black;
}

.bg-light-lighten-100 {
  background-color: white;
}

.bg-dark-darken-100 {
  background-color: black;
}

.bg-dark-lighten-100 {
  background-color: white;
}

.bg-black {
  background-color: #000;
}

.carousel-main .carousel-cell {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel.is-fullscreen .carousel-cell {
  height: 100%;
}
.carousel.is-fullscreen .carousel-cell img {
  max-height: 100%;
  max-width: 100%;
}

.carousel-nav .carousel-cell {
  width: 5rem;
  height: 5rem;
  margin-right: 1rem;
}
.carousel-nav .carousel-cell img {
  width: 5rem;
  height: 5rem;
}

.carousel-content .carousel-cell {
  width: 100%;
}

.carousel-catalog-list .carousel-cell .card {
  width: 18rem;
}
.carousel-catalog-list .carousel-cell .card img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 18rem;
}

.carousel-product-list .carousel-cell .card {
  width: 18rem;
}
.carousel-product-list .carousel-cell .card img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 18rem;
}

.flickity-enabled.is-fullscreen {
  z-index: 1021;
}

.flickity-prev-next-button:disabled {
  display: none;
}

.carousel-catalog {
  height: 13rem;
}
@media (min-width: 576px) {
  .carousel-catalog {
    height: 25rem;
  }
}
@media (min-width: 1200px) {
  .carousel-catalog {
    height: 30rem;
  }
}
.carousel-catalog img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 13rem;
}
@media (min-width: 576px) {
  .carousel-catalog img {
    height: 25rem;
  }
}
@media (min-width: 1200px) {
  .carousel-catalog img {
    height: 30rem;
  }
}

/*-----------------
SLIDER CONTENT
------------------*/
.slider-content {
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  z-index: 999;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
}
.slider-content__text {
  width: 51%;
}
.slider-content__text__item {
  min-width: 35rem;
  color: #1E1A34;
}
.slider-content__text__item h2, .slider-content__text__item .h2 {
  font-size: 2.5rem;
}
.slider-content__text__item p {
  font-size: 1.5rem;
  font-weight: 300;
}
@media (max-width: 992px) {
  .slider-content {
    position: relative;
    margin: 3rem 0;
    justify-content: center;
  }
  .slider-content__text {
    width: 100%;
    left: 0;
  }
  .slider-content__text__item {
    min-width: auto;
    text-align: center;
  }
  .slider-content__text__item h2, .slider-content__text__item .h2 {
    font-size: 2rem;
  }
  .slider-content__text__item p {
    font-size: 1rem;
    font-weight: 400;
  }
}
@media (max-width: 767px) {
  .slider-content {
    margin: 1rem 0;
    max-width: 100%;
  }
  .slider-content__text__item {
    padding: 1rem;
  }
  .slider-content__text__item h2, .slider-content__text__item .h2 {
    font-size: 1.5rem;
  }
}
.slider-content .btn {
  min-height: 3rem;
  padding: 0.5rem 2rem;
}
@media (max-width: 767px) {
  .slider-content .btn {
    min-height: auto;
    padding: 0.25rem 0.75rem;
    margin-bottom: 0.5rem;
  }
}

/*---------------------
COVER
-----------------------*/
.cover {
  height: 30rem;
}
@media (max-width: 991.98px) {
  .cover .carousel-cell {
    background-color: #FAFAFA;
  }
}
.cover .flickity-prev-next-button.next {
  right: 15px;
}
@media (max-width: 991.98px) {
  .cover .flickity-prev-next-button.next {
    display: block;
  }
}
.cover .flickity-prev-next-button.previous {
  left: 15px;
}
@media (max-width: 991.98px) {
  .cover .flickity-prev-next-button.previous {
    display: block;
  }
}
.cover img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 30rem;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 991.98px) {
  .cover {
    height: auto;
    margin-top: 0;
  }
  .cover img {
    height: 25rem;
  }
  .cover .flickity-prev-next-button {
    top: 25%;
  }
}
.cover .flickity-page-dots {
  display: none;
}
@media (max-width: 767.98px) {
  .cover {
    height: auto;
    margin-top: 0;
  }
  .cover img {
    height: 15rem;
  }
  .cover .flickity-prev-next-button.next {
    display: none;
  }
  .cover .flickity-prev-next-button.previous {
    display: none;
  }
}
.cover .flickity-page-dots {
  display: none;
}
@media (max-width: 991.98px) {
  .cover--page {
    height: auto;
  }
}
@media (max-width: 991.98px) {
  .cover .carousel {
    background-color: #FAFAFA;
  }
}
.cover a {
  color: #fff;
}

.flickity-page-dots .flickity-page-dot {
  margin: 0 10px;
}

.invalid-feedback {
  margin-top: 0;
}

.form-label-group {
  position: relative;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.form-label-group label {
  position: absolute;
  top: 0;
  left: 1rem;
  display: block;
  max-width: 100%;
  margin-bottom: 0;
  line-height: 3;
  color: #495057;
  pointer-events: none;
  cursor: text;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: all 0.1s ease-in-out;
}
.form-label-group input::-moz-placeholder, .form-label-group select::-moz-placeholder, .form-label-group textarea::-moz-placeholder {
  color: transparent;
}
.form-label-group input::placeholder, .form-label-group select::placeholder, .form-label-group textarea::placeholder {
  color: transparent;
}
.form-label-group input:required ~ label:after, .form-label-group select:required ~ label:after, .form-label-group textarea:required ~ label:after {
  content: " *";
}
.form-label-group input:not(:-moz-placeholder-shown), .form-label-group select:not(:-moz-placeholder-shown), .form-label-group textarea:not(:-moz-placeholder-shown) {
  padding-top: 0.5rem;
  padding-bottom: 0;
  padding-left: 0.9rem;
}
.form-label-group input:not(:placeholder-shown), .form-label-group input:focus, .form-label-group select:not(:placeholder-shown), .form-label-group select:focus, .form-label-group textarea:not(:placeholder-shown), .form-label-group textarea:focus {
  padding-top: 0.5rem;
  padding-bottom: 0;
  padding-left: 0.9rem;
}
.form-label-group input:not(:-moz-placeholder-shown) ~ label, .form-label-group select:not(:-moz-placeholder-shown) ~ label, .form-label-group textarea:not(:-moz-placeholder-shown) ~ label {
  padding-top: 0.25rem;
  font-size: 12px;
  color: #777;
  line-height: 1.5;
}
.form-label-group input:not(:placeholder-shown) ~ label, .form-label-group input:focus ~ label, .form-label-group select:not(:placeholder-shown) ~ label, .form-label-group select:focus ~ label, .form-label-group textarea:not(:placeholder-shown) ~ label, .form-label-group textarea:focus ~ label {
  padding-top: 0.25rem;
  font-size: 12px;
  color: #777;
  line-height: 1.5;
}

.form-check-input.is-invalid ~ .form-check-label a {
  color: #F56C6C;
}

.ql-align-center {
  text-align: center;
}

.ql-align-justify {
  text-align: justify;
}

.ql-align-right {
  text-align: right;
}

.grid-item {
  float: left;
}

.grid-item img {
  display: block;
  max-width: 100%;
}

#sidebar {
  background: #fff;
  transition: all 0.3s;
  position: relative;
}
#sidebar h1, #sidebar .h1 {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 20px;
}
#sidebar ul.components {
  padding: 0;
}
#sidebar ul li > ul {
  margin-left: 10px;
}
#sidebar ul li > ul li {
  font-size: 14px;
}
#sidebar ul li a {
  display: block;
  color: #495057;
  border-bottom: 1px solid rgba(255, 255, 255, 0.125);
}
#sidebar ul li a:hover {
  color: #1C1C1B;
  text-decoration: none;
}
#sidebar ul li.active > a {
  color: #1C1C1B;
}
#sidebar ul li.active > a:hover {
  text-decoration: none;
}
#sidebar ul li.active-profile > a {
  color: #1C1C1B;
}
#sidebar #selectProfile {
  color: #1C1C1B;
}
#sidebar #selectProfile.collapsed {
  color: #495057;
}
#sidebar #selectProfile.active {
  color: #1C1C1B;
}
#sidebar .list-group-item.active {
  background-color: #fff;
  border-color: rgba(0, 0, 0, 0.125);
}
#sidebar .list-group-item:first-of-type {
  border-top: 1px solid #fff;
}

#content {
  width: 100%;
  padding: 0;
  min-height: auto;
  transition: all 0.3s;
}

/* The sidebar menu */
.sidebar-full {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1500;
  top: 0;
  right: 0;
  overflow-x: hidden;
  padding-top: 60px;
  transition: 0.2s;
  background-color: white;
  border-radius: 0.25rem;
}
.sidebar-full.open {
  width: 350px;
}
.sidebar-full #close-sidebar-button {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.user-profile__sidebar {
  border-right: 1px solid rgba(0, 0, 0, 0.125);
  min-height: calc(100vh - 25rem);
}
@media (max-width: 992px) {
  .user-profile__sidebar {
    min-height: auto;
    border-right: 0;
  }
}

#card-payment-address, .card-summary-address, #form-payment-address, .new-address {
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.history-list {
  list-style: none;
}
.history-list__item {
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.hidden {
  display: none;
}

#overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1100;
  cursor: pointer;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}

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

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

iframe {
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
}

[hidden] {
  display: block !important;
}

.w-33 {
  width: 33%;
}

.line-clamp {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.fa-1dot5x {
  font-size: 1.5em;
}

.fs-small {
  font-size: small;
}

.fs-smaller {
  font-size: smaller;
}

.fs-x-small {
  font-size: x-small;
}

.fs-xx-small {
  font-size: xx-small;
}

.klaro .cookie-notice {
  z-index: 1100;
}
.klaro .cookie-notice:not(.cookie-modal-notice) {
  z-index: 9999;
}

.klaro .cookie-modal {
  z-index: 1100;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.klaro .cookie-modal .cm-modal.cm-klaro {
  border-radius: 2rem;
}
.klaro .cookie-modal .cm-modal.cm-klaro .cm-header,
.klaro .cookie-modal .cm-modal.cm-klaro .cm-body,
.klaro .cookie-modal .cm-modal.cm-klaro .cm-footer {
  padding: 2rem;
}
.klaro .cookie-modal .cm-modal.cm-klaro .cm-footer .cm-btn {
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 50rem;
  padding: 0.5rem 1.5rem;
}

.banner-background {
  display: grid;
  width: 100%;
  height: 291px;
}
.banner-background .banner-background > * {
  grid-column: 1/1;
  grid-row: 1/1;
}
.banner-background img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

.alert-light {
  font-size: 15px;
  color: #395357;
  line-height: 1.5rem;
}

/*----------------------------------------------------------------------------------------------*/
/*---------------------------------- MANSORY GALLERY -------------------------------------------*/
/*----------------------------------------------------------------------------------------------*/
.mansory-gallery {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.mansory-gallery img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}
.mansory-gallery--2 {
  -moz-column-count: 2;
       column-count: 2;
}
.mansory-gallery--3 {
  -moz-column-count: 3;
       column-count: 3;
}
.mansory-gallery--4 {
  -moz-column-count: 4;
       column-count: 4;
}
.mansory-gallery--5 {
  -moz-column-count: 5;
       column-count: 5;
}
.mansory-gallery--6 {
  -moz-column-count: 6;
       column-count: 6;
}
@media (max-width: 991.98px) {
  .mansory-gallery {
    -moz-column-count: 1;
         column-count: 1;
  }
}

img.lazyload:not([src]) {
  visibility: hidden;
}

.text-bg-primary-light {
  background-color: rgba(68, 177, 166, 0.07);
}

.text-bg-secondary-light {
  background-color: #E5F2FF;
}

.text-bg-danger-light {
  background-color: #FDE4DD;
}

.text-bg-warning-light {
  background-color: #FFFAE2;
}

.text-bg-info-light {
  background-color: #E7F3FF;
}

.text-bg-bonus {
  background-color: #CB6060;
}

.is-disabled {
  pointer-events: none;
  opacity: 0.5;
}

.form-control:disabled.is-disabled {
  opacity: 0.5;
}

@media (min-width: 992px) {
  .container.container-xs-lg {
    max-width: unset;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

.border-info-light {
  border-color: #c2e0ff;
}

.carousel-catalog-list img,
.carousel-product-list img,
.catalog-list-items img,
.results__item__img__image img {
  height: auto;
}

.popover-body {
  padding: 0.5rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.popover-body .prodottiprint-serigrafiagrid-popover-taglia-colore-content {
  align-items: center !important;
}
.popover-body .prodottiprint-serigrafiagrid-popover-taglia-colore-content p {
  line-height: normal;
}
.popover-body .prodottiprint-serigrafiagrid-popover-taglia-colore-content > .px-2:first-child {
  padding-right: 0 !important;
}
.popover-body .prodottiprint-serigrafiagrid-popover-taglia-colore-content .title,
.popover-body .prodottiprint-serigrafiagrid-popover-taglia-colore-content .codice {
  font-size: 0.75rem !important;
}
.popover-body .prodottiprint-serigrafiagrid-popover-taglia-colore-content .codice,
.popover-body .prodottiprint-serigrafiagrid-popover-taglia-colore-content .disponibilita {
  line-height: 1rem;
}
.popover-body .prodottiprint-serigrafiagrid-popover-taglia-colore-content .disponibilita,
.popover-body .prodottiprint-serigrafiagrid-popover-taglia-colore-content .disp-futura {
  margin-top: 0.5rem !important;
}
.popover-body .prodottiprint-serigrafiagrid-popover-taglia-colore-content .disp-futura ul {
  padding-left: 1rem;
  padding-top: 0.25rem;
  margin: 0;
}
.popover-body .prodottiprint-serigrafiagrid-popover-taglia-colore-content .disp-futura ul li {
  line-height: 1.1rem;
}
.popover-body .prodottiprint-serigrafiagrid-popover-taglia-colore-content .img-popover {
  max-height: 250px;
  max-width: 100%;
  border-radius: 0.25rem;
}

/*---------------------
MODAL SEARCHBAR
-------------------*/
#searchModal .modal-dialog {
  max-width: 1090px;
}
#searchModal .modal-dialog .modal-header {
  border-bottom: 0;
}
#searchModal .modal-dialog .modal-header form {
  border-radius: 50px;
  width: 90%;
  height: 45px;
}
#searchModal .modal-dialog .modal-header form .form-control:focus {
  box-shadow: none;
}
#searchModal .modal-dialog .modal-header form button {
  color: black;
  font-size: 22px;
  border: 0;
  color: black;
  padding: 0 0 0 16px;
  border-radius: 50px 0 0 50px;
  background-color: #FAFAFA;
}
#searchModal .modal-dialog .modal-header form input {
  border: 0;
  background-color: #FAFAFA;
  border-radius: 0 50px 50px 0;
}
#searchModal .modal-dialog .modal-header .btn-close {
  background-color: #FAFAFA;
  border-radius: 50px;
  font-size: 13px;
  padding: 16px;
}
#searchModal .modal-dialog .modal-header .btn-close:focus {
  box-shadow: none;
}
#searchModal .modal-dialog .modal-content {
  border: 0px;
}
#searchModal .modal-dialog .modal-content .btn-close {
  margin: 0;
}
#searchModal .modal-dialog .modal-content .modal-boxed .results {
  border-bottom: 1px solid #dee2e6;
}
#searchModal .modal-dialog .modal-content .modal-boxed .results__item__img__image {
  height: 100%;
}
@media (max-width: 575.98px) {
  #searchModal .modal-dialog .modal-content .modal-boxed .results__item__img {
    padding-right: 0.25rem;
  }
}
#searchModal .modal-dialog .modal-content .modal-boxed .results__item__img img {
  border-radius: 0.25rem;
}
#searchModal .modal-dialog .modal-content .modal-boxed .results__item__text h3, #searchModal .modal-dialog .modal-content .modal-boxed .results__item__text .h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
#searchModal .modal-dialog .modal-content .modal-boxed .results__item__text p {
  font-size: 0.8rem;
}
@media (max-width: 575.98px) {
  #searchModal .modal-dialog .modal-content .modal-boxed .results__item__text .h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  #searchModal .modal-dialog .modal-content .modal-boxed .results__item__text .text-body {
    font-size: 14px;
    line-height: normal;
  }
}
#searchModal .modal-dialog .modal-content .modal-boxed .results__item--price p {
  font-size: 1rem;
  font-weight: bold;
}
#searchModal .modal-dialog .modal-content .modal-boxed .results__item--price span {
  font-size: 0.7rem;
  font-weight: normal;
}

.modal {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.modal-open {
  padding-right: 0 !important;
}

/*---------------------
BUTTON SEARCHBAR
-------------------*/
.search-button {
  font-size: 14px;
}
.search-button a {
  background-color: #FAFAFA;
  border-radius: 50px;
  color: #9F9F9F;
  width: 128px;
  height: 45px;
  display: flex;
  align-items: center;
  padding-left: 0.8rem;
}
.search-button i {
  font-size: 24px;
  color: black;
}

#search-autocomplete-spinner {
  position: absolute;
  z-index: 2;
  right: 3rem;
}

#search-autocomplete-icon {
  position: absolute;
  z-index: 2;
  right: 1.5rem;
}

.search-autocomplete {
  margin: 0;
  position: relative;
}
.search-autocomplete #suggestions {
  position: absolute !important;
  top: 100%;
  left: 0;
}

#searchModal .suggestion-results-modal .autocomplete-suggestions {
  border: none;
}
#searchModal nav {
  padding: 1rem 0;
}
#searchModal nav .pagination {
  justify-content: center;
  margin-bottom: 0;
}
#searchModal .search-input {
  width: calc(100% - 100px);
}
#searchModal .search-input .form-control {
  border-radius: 0.25rem 0 0 0.25rem;
}
#searchModal #search-button {
  width: 100px;
  height: 100%;
  min-height: 50px;
  border-radius: 0 0.25rem 0.25rem 0;
}

.product-basket-card .product-basket-card__job_name {
  color: #272727;
  font-size: 14px;
  margin-top: 0.5rem;
}
.product-basket-card .product-basket-card__title_text {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}
.product-basket-card .product-basket-card__actions {
  font-weight: 700;
}
.product-basket-card .product-basket-card__actions .btn {
  font-size: 24px;
  line-height: 16px;
  font-weight: 700;
  padding-top: 0;
  border: 0;
}
.product-basket-card .product-basket-card__actions .dropdown-menu {
  font-size: 12px;
  line-height: 16px;
}
@media (max-width: 575.98px) {
  .product-basket-card .product-basket-card__actions .dropdown-menu {
    padding: 0;
    font-size: 14px;
    border-radius: 0.5rem;
  }
  .product-basket-card .product-basket-card__actions .dropdown-menu li:first-child a {
    border-radius: 0.5rem 0.5rem 0 0;
  }
  .product-basket-card .product-basket-card__actions .dropdown-menu li:last-child a {
    border-radius: 0 0 0.5rem 0.5rem;
  }
  .product-basket-card .product-basket-card__actions .dropdown-menu li a {
    text-align: center;
    padding: 0.75rem;
  }
}
.product-basket-card .product-basket-card__quantity {
  font-size: 14px;
  line-height: 18px;
}
.product-basket-card .product-basket-card__quantity .quantity {
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
}
.product-basket-card .product-basket-card__price .sub-text-price {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}
.product-basket-card .product-basket-card__price .vat-price {
  margin: 0.5rem 0 !important;
}
.product-basket-card .product-basket-card__detail {
  font-size: 12px;
  line-height: 16px;
}
.product-basket-card .product-basket-card__detail .product-detail-link[aria-expanded=true] .show-more-button {
  display: none;
}
.product-basket-card .product-basket-card__detail .product-detail-link[aria-expanded=true] .show-less-button {
  display: inline-block;
}
.product-basket-card .product-basket-card__detail .product-detail-link[aria-expanded=false] .show-more-button {
  display: inline-block;
}
.product-basket-card .product-basket-card__detail .product-detail-link[aria-expanded=false] .show-less-button {
  display: none;
}
.product-basket-card .product-basket-card__detail .product-detail-link .badge {
  font-size: 14px;
  font-weight: 600 !important;
  line-height: normal;
  background: none;
  padding: 0;
  font-weight: normal;
  color: #272727;
}
.product-basket-card .product-basket-card__detail .product-basket-card__details_text {
  font-size: 14px;
  line-height: 1.35rem;
  margin-top: 0.5rem;
}
.product-basket-card .product-basket-card__detail .product-basket-card__details_text .print-data-name {
  font-weight: 600;
}
.product-basket-card .product-basket-card__files {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}
.product-basket-card .product-basket-card__files .upload-action {
  border: 1px solid #E6E6E6;
}
@media (max-width: 991.98px) {
  .product-basket-card .product-basket-card__files .upload-action .btn {
    width: 100%;
  }
}
.product-basket-card .product-basket-card__files .upload-action .upload-info a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.product-basket-card .product-basket-card__files .title {
  font-size: 12px;
  line-height: 16px;
}
.product-basket-card .product-basket-card__files small, .product-basket-card .product-basket-card__files .small {
  color: #395357;
  font-size: 14px;
  line-height: 16px;
}
.product-basket-card .product-basket-card__files .product-basket-card__files_status {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.product-basket-card .product-basket-card__files .product-basket-card__files_status .status {
  font-weight: 400;
  color: #adb5bd;
  margin-bottom: 0.25rem;
  letter-spacing: 0.5px;
}
.product-basket-card .product-basket-card__files .product-basket-card__files_status i {
  font-size: 0.625rem;
  vertical-align: middle;
  margin-bottom: 0.15rem;
  margin-right: 0.25rem;
}
.product-basket-card .product-basket-card__files .btn {
  font-size: 14px;
  font-weight: 400;
}

@media (min-width: 992px) {
  .product-basket-card {
    border-radius: 0;
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
    font-weight: 400;
  }
  .product-basket-card .product-basket-card__job_name {
    font-size: 16px;
    line-height: 20px;
  }
  .product-basket-card .product-basket-card__title_text {
    font-size: 20px;
    line-height: 24px;
  }
  .product-basket-card .product-basket-card__quantity {
    font-size: 16px;
    line-height: 16px;
  }
  .product-basket-card .product-basket-card__quantity .quantity {
    font-size: 20px;
    line-height: 24px;
  }
  .product-basket-card .product-basket-card__price .sub-text-price {
    font-size: 14px;
    line-height: 18px;
  }
  .product-basket-card .product-basket-card__actions-desktop .btn {
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    color: #272727;
  }
  .product-basket-card .product-basket-card__actions-desktop .btn:first-child {
    border-right: 1px solid #ced4da;
    border-radius: 0;
    margin-right: 0.75rem;
  }
  .product-basket-card .product-basket-card__actions-desktop .btn:hover {
    color: #1C1C1B;
  }
  .product-basket-card .product-basket-card__detail .product-detail-link .badge {
    font-size: 16px;
    font-weight: 600 !important;
    line-height: normal;
    background: none;
    padding: 0;
    font-weight: normal;
    color: #272727;
  }
  .product-basket-card .product-basket-card__detail .product-detail-link .badge i {
    font-size: 18px;
  }
  .product-basket-card .product-basket-card__detail .product-detail-link .show-less-button i {
    vertical-align: bottom;
  }
  .product-basket-card .product-basket-card__files .title {
    font-size: 14px;
    line-height: 18px;
  }
}
@media (min-width: 768px) {
  .img-product-basket {
    max-height: 290px;
  }
  .product-basket-card {
    min-height: 250px;
  }
}
label.label-carrello {
  display: none;
}

.menu-cart--desktop .quantity:before {
  content: "(";
}
.menu-cart--desktop .quantity:after {
  content: ")";
}

.step-wrapper {
  padding: 20px 0;
  display: none;
}
.step-wrapper.active {
  display: block;
}

.step-indicator {
  border-collapse: separate;
  display: table;
  margin-left: 0;
  position: relative;
  table-layout: fixed;
  text-align: center;
  vertical-align: middle;
  padding-left: 0;
  margin: 0 auto;
}
.step-indicator li {
  display: table-cell;
  position: relative;
  float: none;
  padding: 0;
  width: 3rem;
}
@media (min-width: 992px) {
  .step-indicator li {
    width: 8rem;
  }
}
.step-indicator li:after {
  background-color: #ced4da;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  width: 100%;
  top: 31px;
}
@media (max-width: 991.98px) {
  .step-indicator li:after {
    top: 20px;
  }
}
.step-indicator li:after {
  left: 50%;
}
.step-indicator li:last-child:after {
  display: none;
}
.step-indicator li.active .step {
  border: 4px solid #1C1C1B;
  color: #1C1C1B;
}
.step-indicator li.active .step i {
  color: #1C1C1B;
}
@media (max-width: 991.98px) {
  .step-indicator li.active .step {
    border-width: 3px;
  }
}
.step-indicator li.active .caption {
  color: #000;
}
.step-indicator li.complete:after {
  background-color: #ced4da;
}
.step-indicator li.complete .step {
  border-color: #ced4da;
  color: #ced4da;
}
.step-indicator li.complete .step i {
  color: #ced4da;
}
.step-indicator li.complete .caption {
  color: #ced4da;
}
@media (min-width: 992px) {
  .step-indicator li.upload i {
    font-size: 28px;
  }
}
@media (max-width: 991.98px) {
  .step-indicator li.upload i {
    font-size: 20px;
  }
}
.step-indicator .step {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid #ced4da;
  color: #ced4da;
  font-size: 20px;
  height: 62px;
  line-height: 56px;
  margin: 0 3rem;
  position: relative;
  width: 62px;
  z-index: 1;
  transition: margin 0.5s;
}
.step-indicator .step i {
  font-size: 24px;
}
.step-indicator .step .complete:hover,
.step-indicator .step .active:hover {
  cursor: pointer;
}
@media (max-width: 991.98px) {
  .step-indicator .step {
    height: 40px;
    line-height: 40px;
    width: 40px;
    font-size: 18px;
    margin: 0 0.75rem;
  }
  .step-indicator .step i {
    font-size: 16px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .step-indicator .step {
    margin: 0 2rem;
  }
}
.step-indicator .caption {
  color: #ced4da;
  padding: 11px 3px;
  font-size: 14px;
  font-weight: 400;
}

.shipping-box {
  background-color: rgba(68, 177, 166, 0.07);
  border: solid 1px #1C1C1B;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  color: #1C1C1B;
}
.shipping-box p {
  font-size: 14px;
  line-height: 16px;
}

.container-price-summary {
  padding-left: 0;
  padding-right: 0;
}

.price-summary {
  padding-right: 0;
  padding-left: 0;
  box-shadow: 0 -5px 3px -5px #395357;
}
.price-summary .price-summary-title {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}
.price-summary .price-summary-value {
  font-weight: 500;
  text-align: end;
  text-wrap: nowrap;
}
.price-summary .shipping-date-note {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
}
.price-summary .total-row {
  background-color: #395357;
  border: 1px solid #395357;
  font-size: 12px;
  line-height: 16px;
}
.price-summary .total-row .price-total-link {
  font-size: 16px;
  line-height: 20px;
}
.price-summary .total-row .price-total-link[aria-expanded=true] .show-more-button {
  display: none;
}
.price-summary .total-row .price-total-link[aria-expanded=true] .show-less-button {
  display: flex;
}
.price-summary .total-row .price-total-link[aria-expanded=false] .show-more-button {
  display: flex;
}
.price-summary .total-row .price-total-link[aria-expanded=false] .show-less-button {
  display: none;
}
.price-summary .total-row .price-total-price {
  font-size: 24px;
  line-height: 28px;
}
.price-summary .total-row .price-total-unit-price {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}
.price-summary .total-row .price-total-description {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  margin-bottom: 0.5rem;
}
.price-summary .total-row .btn.btn-primary.btn-lg, .price-summary .total-row .btn-group-lg > .btn.btn-primary {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  min-width: 0;
}
.price-summary .basket-standard-coupon {
  font-size: 12px;
  line-height: 16px;
}
.price-summary .basket-standard-coupon .form-control {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}
.price-summary .basket-standard-coupon .promo-apply {
  font-size: 12px;
  font-weight: 400;
}
@media (min-width: 992px) {
  .price-summary .basket-standard-coupon .form-control {
    font-size: 14px;
    line-height: 18px;
  }
  .price-summary .basket-standard-coupon .promo-apply {
    font-size: 16px;
  }
}
.price-summary .basket-standard-coupon a#form-coupon-accordion-link {
  font-weight: 500;
}
.price-summary .basket-standard-coupon a#form-coupon-accordion-link[aria-expanded=true] .show-more-button {
  display: none;
}
.price-summary .basket-standard-coupon a#form-coupon-accordion-link[aria-expanded=true] .show-less-button {
  display: flex;
}
.price-summary .basket-standard-coupon a#form-coupon-accordion-link[aria-expanded=false] .show-more-button {
  display: flex;
}
.price-summary .basket-standard-coupon a#form-coupon-accordion-link[aria-expanded=false] .show-less-button {
  display: none;
}
.price-summary .basket-standard-coupon .title {
  color: #395357;
}
.price-summary .basket-standard-coupon .title a {
  color: #395357;
}
.price-summary .basket-standard-coupon .title a .badge {
  color: #395357 !important;
  border-color: #395357 !important;
}
.price-summary .basket-standard-coupon .content .coupon-detail {
  padding: 0;
}
.price-summary .basket-standard-coupon .content .coupon-detail .badge {
  font-size: 14px;
  line-height: 18px;
}
.price-summary .basket-standard-coupon .content .coupon-detail .badge > .row {
  align-items: center;
}
.price-summary .basket-standard-coupon .content .coupon-detail .badge-coupon {
  padding: 0.5rem 1rem;
}
.price-summary .basket-standard-coupon .content .coupon-detail .badge-coupon .delete {
  width: 8.33333333%;
}
.price-summary .basket-standard-coupon .content .coupon-detail .badge-info {
  font-weight: 400;
  background-color: rgba(144, 147, 153, 0.2) !important;
}
.price-summary .basket-standard-coupon .content .coupon-detail .badge-info i {
  margin-right: 0.25rem;
}
.price-summary .basket-standard-coupon .form-label-group.b_coupon {
  margin-bottom: 0;
  margin-top: 0;
}

@media (min-width: 992px) {
  .price-summary {
    box-shadow: none;
  }
  .price-summary .price-summary-title {
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
  }
  .price-summary .total-row .price-total-link {
    font-size: 16px;
    line-height: 20px;
  }
  .price-summary .total-row .price-total-description {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
  }
  .price-summary .total-row .price-total-price {
    font-size: 36px;
    line-height: 40px;
  }
  .price-summary .total-row h1, .price-summary .total-row .h1 {
    margin-bottom: 0;
  }
}
.help-banner {
  background-color: #F7F7F7;
}
.help-banner > .row {
  padding: 1.5rem !important;
}
.help-banner > .row a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.help-banner h5, .help-banner .h5 {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 0.75rem;
}
.help-banner div.help-info-container {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
}
.help-banner div.help-info-container span.help-info {
  font-size: 18px;
  border-right: none;
  padding: 0.5rem 0;
  display: block;
}
.help-banner div.help-info-container span.help-info i {
  margin-right: 0.35rem;
  vertical-align: middle;
}
@media (max-width: 575.98px) {
  .help-banner {
    margin-bottom: 1rem;
  }
  .help-banner > .row {
    padding: 1rem !important;
  }
  .help-banner h5, .help-banner .h5 {
    font-size: 20px !important;
  }
}
@media (min-width: 992px) {
  .help-banner h5, .help-banner .h5 {
    font-size: 20px;
    line-height: 24px;
  }
  .help-banner div.help-info-container {
    font-size: 20px;
    line-height: 24px;
  }
  .help-banner div.help-info-container span.help-info {
    border-right: solid 1px #ced4da;
    padding: 0 1rem;
    display: inline;
  }
  .help-banner div.help-info-container span.help-info:last-child {
    border-right: none;
  }
  .help-banner div.help-info-container span.help-info:first-child {
    padding-left: 0;
  }
}

#checkout-auth .cart-account__login {
  padding: 1.5rem !important;
}
#checkout-auth .cart-account__login h4, #checkout-auth .cart-account__login .h4 {
  margin-bottom: 0.5rem;
}
#checkout-auth .cart-account__login form .order-lg-4 .btn {
  line-height: 0;
  padding: 0;
}
#checkout-auth .cart-account__login form .order-lg-4 .btn:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

#basket-form .col-lg-8 .container {
  padding: 0;
}
#basket-form .btn:disabled {
  color: #1C1C1B;
  opacity: 0.5;
}

@media (min-width: 992px) {
  #basket-form .container-lg {
    padding: 0 0.75rem;
  }
}
.card-img, .card-img-top {
  -o-object-fit: contain;
     object-fit: contain;
}

.catalog-list-items .col {
  padding-top: calc(var(--bs-gutter-x) / 2);
  padding-bottom: calc(var(--bs-gutter-x) / 2);
}
.catalog-list-items .item {
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  white-space: normal;
}

.catalog-list-items .item:hover {
  border-color: #1C1C1B;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1215686275);
  transition: 0.3s;
}
.catalog-list-items .card {
  border: 0;
  border-bottom: 2px solid #E6E6E6;
  transition: 0.3s;
  border-radius: 0;
}
.catalog-list-items .card .card-body {
  padding: 2rem 1rem;
}

label input {
  display: none;
}

.variante .btn-outline-secondary {
  color: #212529;
  border-color: #cdd4d9;
  background: #fff;
}

.variante .btn-outline-primary:hover,
.variante .btn-outline-primary.active {
  color: #ffffff;
  border-color: #1C1C1B;
  background: #1C1C1B;
}

.variante .btn-txt {
  padding: 0.75rem 0.75rem;
  line-height: 1;
}

.variante-sottotitolo {
  padding-bottom: 1rem;
  font-size: 18px;
}

.form-select,
.was-validated .form-control:valid, .form-control.is-valid {
  background-size: 30px 20px;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  position: absolute;
  right: 10px;
}

#prodottoForm .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  position: unset;
  right: unset;
}
#prodottoForm .input-group .input-group-append {
  position: absolute !important;
  right: 10px !important;
}

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

.variante a.collapsed {
  font-size: small;
}

.variante a.not-collapsed {
  font-size: small;
}

.editor-form .editor-form-label, .editor-form .variante-gruppo-nome {
  font-weight: 700;
}
.editor-form #editor_switch {
  cursor: pointer;
}

.widget-feedaty {
  z-index: 1;
}
.widget-feedaty .rate .fa-star, .widget-feedaty .rate .fa-star-half {
  color: #ffc107;
  font-size: 12px;
  padding-right: 0.25rem;
}
.widget-feedaty .based-on {
  margin-top: -0.55rem;
}
.widget-feedaty .py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.widget-feedaty .logo img {
  width: 1.5rem;
}

.card .card-img-main {
  display: block;
}
.card .card-img-hover {
  display: none;
}
.card:hover .card-img-main {
  display: none;
}
.card:hover .card-img-hover {
  display: block;
}

#attachments_card #attachments-istruction-card .card-img-top {
  background-color: #fdf0e7;
  height: 8rem;
}
#attachments_card #attachments-istruction-card i {
  margin-right: 0.25rem;
}
#attachments_card #attachments-template-card .card-img-top {
  background-color: #e7f6fa;
  height: 8rem;
}
#attachments_card #attachments-template-card i {
  margin-right: 0.25rem;
}
#attachments_card #video-card .card-img-top {
  background-color: #FFEFEF;
  height: 8rem;
}
#attachments_card #video-card i {
  margin-right: 0.25rem;
}
#attachments_card #attachments-others-card .card-img-top {
  background-color: #fff8e5;
  height: 8rem;
}
#attachments_card #attachments-others-card i {
  margin-right: 0.25rem;
}

.btn-product {
  background-color: #fff;
  border-color: #dee2e6;
  font-weight: normal;
  color: #212529;
  line-height: 1.25;
  font-size: 14px;
  padding: 0;
  transition: 0.3s;
}
.btn-product:hover {
  background-color: #fff;
  color: #212529;
  border-color: #1C1C1B;
  color: #1C1C1B;
  box-shadow: inset 0 0 0 1px #1C1C1B;
}
.btn-product.active {
  background-color: #fff;
  color: #212529;
  border-color: #1C1C1B;
  color: #1C1C1B;
  box-shadow: inset 0 0 0 1px #1C1C1B;
}
.btn-product.active .prodottiprint-buttonconsegna-weekday {
  background-color: #1C1C1B;
  color: #fff;
}
.btn-product.active:focus {
  box-shadow: none;
}
.btn-product.disabled {
  background-color: #fff;
  border-color: #ced4da;
  font-weight: normal;
  color: #212529;
}

#textHelpModal .modal-dialog {
  max-width: 50rem;
}

.repository-list-items .col {
  padding-top: calc(var(--bs-gutter-x) / 2);
  padding-bottom: calc(var(--bs-gutter-x) / 2);
}
.repository-list-items .col .card-img-top {
  height: 24vh;
}
.swiper-lazy-preloader {
  -webkit-animation: rotating 2s linear infinite;
}

.pagination-container .pagination {
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .pagination-container .pagination .page-item {
    margin-bottom: 0.5rem;
  }
}

.checkout-progress-bar .process:not(.active) {
  display: none;
}

.checkout-shipping-address-item {
  display: none;
}

.address-text {
  text-align: left;
  line-height: 2rem;
}

.checkout-delivery .form-check {
  margin-bottom: 0;
}

.checkout-payment .form-check {
  margin-bottom: 0;
}

.checkout-summary-promo .form-label-group {
  margin-top: 0;
  margin-bottom: 0;
}
.checkout-summary-promo .form-label-group .form-control {
  margin-bottom: 0;
}

.checkout-different-shipping {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
}
@media (min-width: 992px) {
  .checkout-different-shipping {
    font-size: 16px;
    line-height: 20px;
  }
}

#checkout-shipping-address-list .edit-address-link {
  color: #395357;
  font-size: 12px;
  line-height: 16px;
}
#checkout-shipping-address-list .icon-ship-to-another {
  color: #ced4da;
}

.ca_deliveryoption-null {
  padding-top: 1.5rem !important;
}

.sub-text-price {
  color: #6e6e73;
  font-size: 14px;
  line-height: 18px;
}

.checkout-standard-process {
  text-align: center;
}

.credit-card-help-text {
  line-height: 0.1em;
  margin-top: 2rem;
  margin-bottom: 2.8rem;
}
.credit-card-help-text span {
  background: #fff;
  padding-left: 1rem;
  padding-right: 1rem;
}

.checkout-credit-card-field-icon {
  position: absolute;
  right: 1.2rem;
  bottom: 0.6rem;
}

.process-payment\.expirymonth,
.process-payment\.expiryyear {
  text-align: left;
}

#checkout-sidebar-price.sidebar-full {
  border-radius: 10px 0 0 10px;
}
@media (max-width: 767.98px) {
  #checkout-sidebar-price.sidebar-full {
    border-radius: 0;
  }
}

#checkout-sidebar-price.sidebar-full.open {
  width: 650px;
}
#checkout-sidebar-price.sidebar-full.open .p-3 {
  padding: 1.5rem !important;
}
#checkout-sidebar-price.sidebar-full.open .products-total-quantity-row,
#checkout-sidebar-price.sidebar-full.open .products-subtotal-row,
#checkout-sidebar-price.sidebar-full.open .shipping-costs-row,
#checkout-sidebar-price.sidebar-full.open .payment-costs-row,
#checkout-sidebar-price.sidebar-full.open .total-vat-row {
  margin-bottom: 0.25rem;
}
#checkout-sidebar-price.sidebar-full.open .products-total-quantity-row div:first-child,
#checkout-sidebar-price.sidebar-full.open .products-subtotal-row div:first-child,
#checkout-sidebar-price.sidebar-full.open .shipping-costs-row div:first-child,
#checkout-sidebar-price.sidebar-full.open .payment-costs-row div:first-child,
#checkout-sidebar-price.sidebar-full.open .total-vat-row div:first-child {
  font-weight: 500;
}
@media (max-width: 767.98px) {
  #checkout-sidebar-price.sidebar-full.open {
    width: 100%;
  }
  #checkout-sidebar-price.sidebar-full.open .products-total-quantity-row,
  #checkout-sidebar-price.sidebar-full.open .products-subtotal-row,
  #checkout-sidebar-price.sidebar-full.open .shipping-costs-row,
  #checkout-sidebar-price.sidebar-full.open .payment-costs-row,
  #checkout-sidebar-price.sidebar-full.open .total-vat-row {
    margin-bottom: 0.5rem;
  }
  #checkout-sidebar-price.sidebar-full.open .shipping-costs-row,
  #checkout-sidebar-price.sidebar-full.open .payment-costs-row {
    display: block !important;
  }
}

@media (max-width: 991.98px) {
  .checkout-standard .container-lg {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 992px) {
  .checkout-standard .container.container-auth {
    padding-left: 0;
    padding-right: 0;
  }
}
.checkout-standard .cart-account .cart-account__login {
  background: #F2F2F2;
}
.checkout-standard .cart-account .cart-account__login .btn.btn-secondary.btn-lg, .checkout-standard .cart-account .cart-account__login .btn-group-lg > .btn.btn-secondary {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.checkout-standard .container-fluid, .checkout-standard .container-sm, .checkout-standard .container-md, .checkout-standard .container-lg, .checkout-standard .container-xl, .checkout-standard .container-xxl {
  padding: 0;
}
.checkout-standard .container-summary {
  padding-left: 0;
}
.checkout-standard .edit-billing-address {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
}
.checkout-standard .edit-billing-address .btn {
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
}
@media (min-width: 992px) {
  .checkout-standard .edit-billing-address {
    font-size: 16px;
    line-height: 20px;
  }
  .checkout-standard .edit-billing-address .btn {
    font-size: 16px;
    line-height: 20px;
  }
}
.checkout-standard .checkout-standard-summary .checkout-summary-payment .service-name,
.checkout-standard .checkout-standard-summary .checkout-summary-shipping .service-name {
  font-size: 14px;
  line-height: 18px;
}
.checkout-standard .checkout-standard-summary .checkout-summary-payment span[class*=address-text-],
.checkout-standard .checkout-standard-summary .checkout-summary-shipping span[class*=address-text-] {
  font-size: 14px;
  line-height: 18px;
}
.checkout-standard .checkout-standard-summary .checkout-summary-payment a,
.checkout-standard .checkout-standard-summary .checkout-summary-shipping a {
  font-size: 14px;
  line-height: 18px;
  color: #395357;
}
.checkout-standard .checkout-standard-summary .checkout-summary-terms {
  font-size: 14px;
  line-height: 18px;
}
.checkout-standard .checkout-standard-summary .checkout-summary-terms a {
  color: #395357;
}
@media (min-width: 992px) {
  .checkout-standard .checkout-standard-summary .checkout-summary-payment h6, .checkout-standard .checkout-standard-summary .checkout-summary-payment .h6,
  .checkout-standard .checkout-standard-summary .checkout-summary-shipping h6,
  .checkout-standard .checkout-standard-summary .checkout-summary-shipping .h6 {
    font-weight: 600;
  }
  .checkout-standard .checkout-standard-summary .checkout-summary-payment .service-name,
  .checkout-standard .checkout-standard-summary .checkout-summary-shipping .service-name {
    font-size: 16px;
    line-height: 20px;
  }
  .checkout-standard .checkout-standard-summary .checkout-summary-payment span[class*=address-text-],
  .checkout-standard .checkout-standard-summary .checkout-summary-shipping span[class*=address-text-] {
    font-size: 16px;
    line-height: 20px;
  }
  .checkout-standard .checkout-standard-summary .checkout-summary-payment a,
  .checkout-standard .checkout-standard-summary .checkout-summary-shipping a {
    font-size: 12px;
    line-height: 16px;
  }
}

.checkout-confirm .checkout-confirm-detail {
  display: inline;
  text-wrap: wrap;
}
.checkout-confirm .checkout-confirm-detail div {
  display: inline;
}
.checkout-confirm .icon-status {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}
@media (min-width: 992px) {
  .checkout-confirm .checkout-confirm-detail {
    display: block;
  }
  .checkout-confirm .checkout-confirm-detail div {
    display: block;
  }
}

.basket-standard h1,
.basket-standard .h1,
.checkout-standard h1,
.checkout-standard .h1,
.checkout-confirm h1,
.checkout-confirm .h1 {
  font-size: 24px;
  line-height: 28px;
}
.basket-standard h2,
.basket-standard .h2,
.checkout-standard h2,
.checkout-standard .h2,
.checkout-confirm h2,
.checkout-confirm .h2 {
  font-size: 20px;
  line-height: 24px;
}
.basket-standard h3 .title,
.basket-standard .h3 .title,
.checkout-standard h3 .title,
.checkout-standard .h3 .title,
.checkout-confirm h3 .title,
.checkout-confirm .h3 .title {
  font-weight: 600;
}
.basket-standard h3 .detail,
.basket-standard .h3 .detail,
.checkout-standard h3 .detail,
.checkout-standard .h3 .detail,
.checkout-confirm h3 .detail,
.checkout-confirm .h3 .detail {
  font-weight: 400;
}
.basket-standard h4,
.basket-standard .h4,
.checkout-standard h4,
.checkout-standard .h4,
.checkout-confirm h4,
.checkout-confirm .h4 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .basket-standard h4,
  .basket-standard .h4,
  .checkout-standard h4,
  .checkout-standard .h4,
  .checkout-confirm h4,
  .checkout-confirm .h4 {
    font-size: 18px;
  }
}
.basket-standard h5,
.basket-standard .h5,
.checkout-standard h5,
.checkout-standard .h5,
.checkout-confirm h5,
.checkout-confirm .h5 {
  font-weight: 600;
}
.basket-standard h6,
.basket-standard .h6,
.checkout-standard h6,
.checkout-standard .h6,
.checkout-confirm h6,
.checkout-confirm .h6 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
.basket-standard .checkout-button .btn.btn-primary,
.checkout-standard .checkout-button .btn.btn-primary,
.checkout-confirm .checkout-button .btn.btn-primary {
  font-weight: 500;
}
.basket-standard scalapay-widget,
.checkout-standard scalapay-widget,
.checkout-confirm scalapay-widget {
  font-size: 12px;
}
.basket-standard .checkout-confirm-message .btn,
.checkout-standard .checkout-confirm-message .btn,
.checkout-confirm .checkout-confirm-message .btn {
  padding: 0.65rem 1rem;
  line-height: normal;
}
.basket-standard .checkout-confirm-message .order-number a,
.checkout-standard .checkout-confirm-message .order-number a,
.checkout-confirm .checkout-confirm-message .order-number a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: 0.2s;
}
.basket-standard .checkout-confirm-message .order-number a:hover,
.checkout-standard .checkout-confirm-message .order-number a:hover,
.checkout-confirm .checkout-confirm-message .order-number a:hover {
  color: #1C1C1B;
}
.basket-standard .checkout-confirm-message .checkout-confirm-detail a,
.checkout-standard .checkout-confirm-message .checkout-confirm-detail a,
.checkout-confirm .checkout-confirm-message .checkout-confirm-detail a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.basket-standard .checkout-confirm-message .text-bg-primary-light,
.checkout-standard .checkout-confirm-message .text-bg-primary-light,
.checkout-confirm .checkout-confirm-message .text-bg-primary-light {
  background-color: rgba(28, 28, 27, 0.1);
}
@media (max-width: 991.98px) {
  .basket-standard .checkout-btn-link,
  .checkout-standard .checkout-btn-link,
  .checkout-confirm .checkout-btn-link {
    width: 100%;
  }
  .basket-standard .checkout-btn-link .btn,
  .checkout-standard .checkout-btn-link .btn,
  .checkout-confirm .checkout-btn-link .btn {
    width: 100%;
  }
  .basket-standard .checkout-btn-link .btn:not(:first-of-type),
  .checkout-standard .checkout-btn-link .btn:not(:first-of-type),
  .checkout-confirm .checkout-btn-link .btn:not(:first-of-type) {
    margin-top: 1rem;
  }
}
@media (max-width: 991.98px) {
  .basket-standard .checkout-confirm-message h3, .basket-standard .checkout-confirm-message .h3,
  .checkout-standard .checkout-confirm-message h3,
  .checkout-standard .checkout-confirm-message .h3,
  .checkout-confirm .checkout-confirm-message h3,
  .checkout-confirm .checkout-confirm-message .h3 {
    font-size: 20px;
  }
  .basket-standard .checkout-confirm-status .h5,
  .checkout-standard .checkout-confirm-status .h5,
  .checkout-confirm .checkout-confirm-status .h5 {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .basket-standard .checkout-confirm-status .icon i,
  .checkout-standard .checkout-confirm-status .icon i,
  .checkout-confirm .checkout-confirm-status .icon i {
    font-size: 20px;
    width: 20px;
  }
}

.checkout-standard .checkout-standard-summary h4,
.checkout-standard .checkout-standard-summary .h4 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
}
@media (min-width: 992px) {
  .checkout-standard .checkout-standard-summary h4,
  .checkout-standard .checkout-standard-summary .h4 {
    font-size: 20px;
    line-height: 24px;
  }
}

@media (min-width: 992px) {
  .price-summary .total-row {
    pointer-events: none;
  }
  .price-summary .total-row .price-total-unit-price button {
    pointer-events: auto;
  }
}

@media (min-width: 1200px) {
  .sidebar-submenu li {
    position: relative;
  }
  .sidebar-submenu li .submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: -7px;
    min-width: 240px;
  }
  [dir=rtl] .sidebar-submenu li .submenu {
    right: 100%;
    left: auto;
  }
  .sidebar-submenu li:hover {
    background: var(--bs-light);
  }
  .sidebar-submenu li:hover > .submenu {
    display: block;
  }
}
.sidebar-collapsible {
  border-radius: 0.25rem;
}
.sidebar-collapsible .menu-level-0.element-active > a.nav-link {
  background-color: #1C1C1B;
  color: #fff;
}
.sidebar-collapsible .element-active:not(.dropdown) > a.nav-link {
  background-color: #dedede;
  border-left: #1C1C1B;
  border-left-width: medium;
  border-left-style: solid;
}
.sidebar-collapsible .nav-item:not(.element-active):hover {
  background-color: #dedede;
}
.sidebar-collapsible .nav-item:not(.element-active) .nav-item:not(.element-active) {
  background-color: #F7F7F7;
}
.sidebar-collapsible .submenu > .nav-item:not(.element-active):hover {
  background-color: #dedede;
}
.sidebar-collapsible .nav-link:not(.collapsed) .caret-down-icon {
  transition: all 0.25s 0.25s;
  transform: rotate(180deg);
}
.sidebar-collapsible .nav-link.collapsed .caret-down-icon {
  transition: all 0.25s 0.25s;
  transform: rotate(0);
}

.menu-level-0 {
  font-weight: bold;
}

.menu-level-1 {
  font-weight: lighter;
}

ul.submenu {
  list-style: none;
  padding: 0;
}

@media (max-width: 1199.98px) {
  .navbar-toggler {
    display: none;
  }
  .navbar.navbar-toggleable-md.navbar-expand-lg {
    position: sticky;
  }
  .navbar-main {
    height: auto;
  }
  .nav-link {
    padding: 0.25rem 1rem;
  }
}
body.offcanvas-active {
  overflow: hidden;
}

.offcanvas-header {
  display: none;
}

.screen-darken {
  height: 100%;
  width: 0%;
  z-index: 30;
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(34, 34, 34, 0.6);
  transition: opacity 0.2s linear, visibility 0.2s, width 2s ease-in;
}

.screen-darken.active {
  z-index: 10;
  transition: opacity 0.3s ease, width 0s;
  opacity: 1;
  width: 100%;
  visibility: visible;
}

/* ============ mobile view ============ */
@media (max-width: 1199.98px) {
  .offcanvas-header {
    display: block;
  }
  .mobile-offcanvas {
    visibility: hidden;
    transform: translateX(-100%);
    border-radius: 0;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 1200;
    width: 80%;
    overflow-y: scroll;
    overflow-x: hidden;
    transition: visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
  }
  .mobile-offcanvas.show {
    visibility: visible;
    transform: translateX(0);
  }
  .mobile-offcanvas .container, .mobile-offcanvas .container-fluid, .mobile-offcanvas .container-sm, .mobile-offcanvas .container-md, .mobile-offcanvas .container-lg, .mobile-offcanvas .container-xl, .mobile-offcanvas .container-xxl {
    display: block;
  }
}
.navbar-nav.mobile-menu {
  flex-direction: inherit;
}

.quantity.badge {
  top: 0;
  right: -6px;
  font-size: 0.55rem;
}

.menu-cart--desktop {
  display: block;
}
@media (max-width: 992px) {
  .menu-cart--desktop {
    display: none;
  }
}
.menu-cart--mobile {
  display: none;
}
@media (max-width: 992px) {
  .menu-cart--mobile {
    display: block;
  }
}

.mobile-menu .fa-2x {
  font-size: 1.5rem;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  height: auto;
}

.navbar .megamenu {
  padding: 1rem;
}

@media (min-width: 1200px) {
  .navbar .has-megamenu {
    position: static !important;
  }
  .navbar .megamenu {
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 0;
  }
}
.col-megamenu h5.title, .col-megamenu .title.h5 {
  padding-top: 2rem;
}

.col-megamenu .link-dark:hover,
.col-megamenu .link-dark:focus {
  color: #1C1C1B;
}

.footer-icon .fa-inverse {
  color: #1E1A34;
}
.footer-icon .link-light {
  color: #E6E6E6;
}
.footer-icon .fa-stack {
  width: 2em;
}
.footer-icon .link-light:hover, .footer-icon .link-light:focus {
  color: #adb5bd;
}

@media (min-width: 776px) {
  .navbar-main .container {
    height: 5rem;
  }
  .navbar-main .container img {
    max-height: 5rem;
  }
}
@media (max-width: 776px) {
  .navbar-main .container img {
    max-width: 10rem;
  }
}
.minicart-dropdown {
  min-width: 20rem;
}

.minicart-dropdown,
ul.dropdown-menu {
  z-index: 1022;
}

.locale-select-currency {
  display: none;
}

.navbar .fa, .navbar .fas, .navbar .far, .navbar .fal, .navbar .fad, .navbar .fab {
  line-height: unset;
}

.logo-image .logo-image-main {
  display: block;
}
.logo-image .logo-image-hover {
  display: none;
}
.logo-image:hover .logo-image-main {
  display: none;
}
.logo-image:hover .logo-image-hover {
  display: block;
}

.navbar.sticky-top {
  z-index: 1021;
}

#search-autocomplete {
  min-width: 300px;
}

.autocomplete-suggestions {
  border: 1px solid #999;
  background: #FFF;
  overflow: auto;
}

.autocomplete-suggestion {
  padding: 2px 5px;
  white-space: nowrap;
  overflow: hidden;
}

.autocomplete-selected {
  background: #F0F0F0;
}

.autocomplete-suggestions strong {
  font-weight: normal;
  color: #3399FF;
}

.autocomplete-group {
  padding: 2px 5px;
}

.autocomplete-group strong {
  display: block;
  border-bottom: 1px solid #000;
}

.autocomplete-suggestions img {
  width: 40px;
  height: 40px;
}

.prodottiprint-button-carousel {
  display: block;
}

.prodottiprint-buttong-formgroup-carousel .flickity-prev-next-button {
  height: 1.5rem;
  background-color: transparent !important;
}
@media (max-width: 575.98px) {
  .prodottiprint-buttong-formgroup-carousel .flickity-prev-next-button {
    display: none;
  }
}
.prodottiprint-buttong-formgroup-carousel .flickity-prev-next-button.previous {
  left: -2rem;
}
.prodottiprint-buttong-formgroup-carousel .flickity-prev-next-button.next {
  right: -2rem;
}
.prodottiprint-buttong-formgroup-carousel .flickity-prev-next-button:focus {
  box-shadow: none;
}
.prodottiprint-buttong-formgroup-carousel .carousel-cell {
  width: 50%;
}
.prodottiprint-buttong-formgroup-carousel .prodottiprint-radiobutton input[type=radio] {
  display: none;
  pointer-events: none;
}

.prodottiprint-radiobutton-infobox {
  border-top: 1px solid #dee2e6;
  min-height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  display: none;
}

.prodottiprint-inputlabel-content-media {
  display: none;
}

.prodottiprint-inputlabel-aprichiudi ~ .prodottiprint-inputcontrol-content .prodottiprint-radiobutton-infobox {
  display: flex;
}
.prodottiprint-inputlabel-aprichiudi .prodottiprint-inputlabel-content-media {
  display: flex;
}

.prodottiprint-button-grid {
  display: grid;
  grid-gap: 1rem;
}
.prodottiprint-button-grid .prodottiprint-helptext-brokengrid-each-1-element,
.prodottiprint-button-grid .prodottiprint-helptext-brokengrid-each-2-element,
.prodottiprint-button-grid .prodottiprint-helptext-brokengrid-each-3-element,
.prodottiprint-button-grid .prodottiprint-helptext-brokengrid-each-4-element {
  display: none;
}
.prodottiprint-button-grid.prodottiprint-button-grid-6 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}
.prodottiprint-button-grid.prodottiprint-button-grid-5 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
.prodottiprint-button-grid.prodottiprint-button-grid-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.prodottiprint-button-grid.prodottiprint-button-grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.prodottiprint-button-grid.prodottiprint-button-grid-2 {
  grid-template-columns: 1fr 1fr;
}
.prodottiprint-button-grid.prodottiprint-button-grid-1 {
  grid-template-columns: 1fr;
}
.prodottiprint-button-grid.prodottiprint-button-grid-1 .prodottiprint-inputradiobutton {
  flex-direction: row;
  justify-content: space-between;
}
.prodottiprint-button-grid.prodottiprint-button-grid-1 .prodottiprint-inputradiobutton .prodottiprint-radiobutton-media {
  height: 50px;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.prodottiprint-button-grid.prodottiprint-button-grid-1 .prodottiprint-inputradiobutton .prodottiprint-radiobutton-text {
  justify-content: flex-start;
}
.prodottiprint-button-grid.prodottiprint-button-grid-1 .prodottiprint-inputradiobutton .prodottiprint-radiobutton-infobox {
  width: 50px;
  justify-content: center;
  border-top: 0;
  border-left: 1px solid #dee2e6;
}
@media (max-width: 575.98px) {
  .prodottiprint-button-grid.prodottiprint-button-grid-mobile-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .prodottiprint-button-grid.prodottiprint-button-grid-mobile-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .prodottiprint-button-grid.prodottiprint-button-grid-mobile-2 {
    grid-template-columns: 1fr 1fr;
  }
  .prodottiprint-button-grid.prodottiprint-button-grid-mobile-1 {
    grid-template-columns: 1fr;
  }
  .prodottiprint-button-grid.prodottiprint-button-grid-mobile-1 .prodottiprint-inputradiobutton {
    flex-direction: row;
    justify-content: space-between;
  }
  .prodottiprint-button-grid.prodottiprint-button-grid-mobile-1 .prodottiprint-inputradiobutton .prodottiprint-radiobutton-media {
    height: 50px;
    width: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .prodottiprint-button-grid.prodottiprint-button-grid-mobile-1 .prodottiprint-inputradiobutton .prodottiprint-radiobutton-text {
    justify-content: flex-start;
  }
  .prodottiprint-button-grid.prodottiprint-button-grid-mobile-1 .prodottiprint-inputradiobutton .prodottiprint-radiobutton-infobox {
    width: 3rem;
    justify-content: center;
    border-top: 0;
    border-left: 1px solid #dee2e6;
  }
  .prodottiprint-button-grid .prodottiprint-helptext-brokengrid-1,
  .prodottiprint-button-grid .prodottiprint-helptext-brokengrid-2,
  .prodottiprint-button-grid .prodottiprint-helptext-brokengrid-3,
  .prodottiprint-button-grid .prodottiprint-helptext-brokengrid-4,
  .prodottiprint-button-grid .prodottiprint-helptext-brokengrid-5,
  .prodottiprint-button-grid .prodottiprint-helptext-brokengrid-6 {
    grid-column: unset;
  }
  .prodottiprint-button-grid .prodottiprint-helptext-brokengrid-each-1-element {
    grid-column: unset;
  }
  .prodottiprint-button-grid .prodottiprint-helptext-brokengrid-each-2-element {
    grid-column: 1/3;
  }
  .prodottiprint-button-grid .prodottiprint-helptext-brokengrid-each-3-element {
    grid-column: 1/4;
  }
  .prodottiprint-button-grid .prodottiprint-helptext-brokengrid-each-4-element {
    grid-column: 1/5;
  }
  .prodottiprint-button-grid .prodottiprint-helptext-brokengrid-each-1-element,
  .prodottiprint-button-grid .prodottiprint-helptext-brokengrid-each-2-element,
  .prodottiprint-button-grid .prodottiprint-helptext-brokengrid-each-3-element,
  .prodottiprint-button-grid .prodottiprint-helptext-brokengrid-each-4-element {
    display: unset;
  }
  .prodottiprint-button-grid .prodottiprint-helptext-brokengrid-endrow {
    display: none;
  }
}

.prodottiprint-inputradiobutton,
.prodottiprint-inputcheckboxbutton {
  display: flex;
  min-height: 50px;
  flex-direction: column;
  flex: 1;
  align-items: center;
  border: 1px solid #1C1C1B;
  margin: 0;
  border-radius: 0.25rem !important;
  justify-content: center;
  background-color: #fff;
  border-color: #dee2e6;
  font-weight: normal;
  color: #212529;
  line-height: 1.25;
  font-size: 14px;
  padding: 0;
  transition: 0.3s;
}
.prodottiprint-inputradiobutton:hover,
.prodottiprint-inputcheckboxbutton:hover {
  background-color: #fff;
  color: #212529;
  border-color: #1C1C1B;
  color: #1C1C1B;
  box-shadow: inset 0 0 0 1px #1C1C1B;
}
.prodottiprint-inputradiobutton.active,
.prodottiprint-inputcheckboxbutton.active {
  background-color: #fff;
  color: #212529;
  border-color: #1C1C1B;
  color: #1C1C1B;
  box-shadow: inset 0 0 0 1px #1C1C1B;
}
.prodottiprint-inputradiobutton.active .prodottiprint-buttonconsegna-weekday,
.prodottiprint-inputcheckboxbutton.active .prodottiprint-buttonconsegna-weekday {
  background-color: #1C1C1B;
  color: #fff;
}
.prodottiprint-inputradiobutton.active:focus,
.prodottiprint-inputcheckboxbutton.active:focus {
  box-shadow: none;
}
.prodottiprint-inputradiobutton.disabled,
.prodottiprint-inputcheckboxbutton.disabled {
  background-color: #fff;
  border-color: #ced4da;
  font-weight: normal;
  color: #212529;
}
.prodottiprint-inputradiobutton > *,
.prodottiprint-inputcheckboxbutton > * {
  margin-right: 0 !important;
  width: 100%;
}
.prodottiprint-inputradiobutton > img,
.prodottiprint-inputcheckboxbutton > img {
  padding: 1px;
}
.prodottiprint-inputradiobutton:last-child,
.prodottiprint-inputcheckboxbutton:last-child {
  margin-right: unset;
}
.prodottiprint-inputradiobutton .prodottiprint-button-text,
.prodottiprint-inputradiobutton .prodottiprint-radiobutton-text,
.prodottiprint-inputcheckboxbutton .prodottiprint-button-text,
.prodottiprint-inputcheckboxbutton .prodottiprint-radiobutton-text {
  height: calc(100% - 1rem);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
}
.prodottiprint-inputradiobutton .prodottiprint-buttonconsegna-text,
.prodottiprint-inputcheckboxbutton .prodottiprint-buttonconsegna-text {
  height: calc(100% - 1rem);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
}

.prodottiprint-formgroup {
  border: unset;
  border-radius: unset;
  background-color: unset;
  padding: unset;
}

.prodottiprint-formgroup {
  border: unset;
  border-radius: unset;
  background-color: unset;
  padding: unset;
}

.prodottiprint-radiobutton {
  height: 100%;
}
.prodottiprint-radiobutton > * {
  height: 100%;
}
.prodottiprint-radiobutton .prodottiprint-radiobutton-infobox-btn {
  background: unset;
  border: unset;
  margin: unset;
  padding: unset;
}
.prodottiprint-radiobutton input[type=radio] {
  display: none !important;
  pointer-events: none;
}

/* *********************************************** BUTTON FORMATO ********************************************* */
.prodottiprint-buttonformato-orientamento {
  margin-top: 1rem;
}

.prodottiprint-buttonformato-btn-orientamento {
  display: flex;
  justify-content: space-between;
}

.prodottiprint-formato-Button,
.prodottiprint-formato-Select,
.prodottiprint-formato-Input {
  border-bottom: solid 1px #F7F7F7;
}

.prodottiprint-helptext {
  background-color: #e9ecef;
  padding: 1rem;
  border-radius: 0.25rem;
  margin: 0 0 1rem 0;
  display: flex;
}
.prodottiprint-helptext p:last-child {
  margin-bottom: 0;
}

.prodottiprint-helptext-sottovariante {
  background-color: #fff;
  border-radius: 0.25rem;
  border: 1px solid #dee2e6;
}
.prodottiprint-helptext-sottovariante .prodottiprint-helptext-preview-titolo {
  font-weight: bold;
}

.prodottiprint-helptext-modaltype {
  cursor: pointer;
}

.prodottiprint-helptext-media {
  flex: 1;
  margin-right: 1rem;
}

.prodottiprint-helptext-text {
  flex: 3;
}

.prodottiprint-helptext-text-modaltype {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.prodottiprint-button-grid label div {
  word-break: break-word;
}

.prodottiprint-helptext-text-modaltype p {
  display: contents;
}

.prodottiprint-helptext-text-modaltype p:after {
  content: "\a";
  white-space: pre;
}

.prodottiprint-helptext-text-modaltype-with-media {
  -webkit-line-clamp: 4;
}

.prodottiprint-helptext-text-modaltype-with-media-and-title {
  -webkit-line-clamp: 3;
}

.prodottiprint-helptextpopover {
  display: inline;
}

.prodottiprint-helptextpopover-btn {
  margin: 0;
  padding: 0;
  color: var(--primary);
  background-color: unset;
  border: unset;
}

#textHelpModal___BV_modal_content_ .prodottiprint-helptextmodal-btn-close {
  background-color: #FAFAFA;
  border-radius: 50px;
  font-size: 13px;
  padding: 16px;
  margin-right: 0;
}
#textHelpModal___BV_modal_content_ .prodottiprint-helptextmodal-btn-close:focus {
  box-shadow: none;
}
#textHelpModal___BV_modal_content_ .prodottiprint-helptextmodal-btn-close::after {
  content: "";
}
#textHelpModal___BV_modal_content_ .modal-header {
  padding-bottom: 0;
  border-bottom: 0;
}
#textHelpModal___BV_modal_content_ .prodottiprint-helptextmodal-text p:last-child {
  margin-bottom: 0;
}
#textHelpModal___BV_modal_content_ .prodottiprint-helptextmodal-title {
  margin-bottom: 0;
}

.prodottiprint-helptexticon-active {
  color: #0dcaf0;
}

/* *********************************************** AFFIANCA HELPTEXT ********************************************** */
.prodottiprint-inputcontrol-content-affiancahelptext {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
@media (max-width: 767.98px) {
  .prodottiprint-inputcontrol-content-affiancahelptext {
    grid-template-columns: 1fr !important;
  }
}
.prodottiprint-inputcontrol-content-affiancahelptext .prodottiprint-helptext-variante {
  margin: 0 1rem 1rem 0;
}
@media (max-width: 767.98px) {
  .prodottiprint-inputcontrol-content-affiancahelptext .prodottiprint-helptext-variante {
    margin: 1rem 0 !important;
  }
}
.prodottiprint-inputcontrol-content-affiancahelptext .prodottiprint-helptext-variante.prodottiprint-helptext {
  display: block;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .prodottiprint-inputcontrol-content-affiancahelptext .prodottiprint-helptext-variante.prodottiprint-helptext {
    display: flex;
  }
}
@media (min-width: 992px) {
  .prodottiprint-inputcontrol-content-affiancahelptext .prodottiprint-helptext-variante.prodottiprint-helptext .prodottiprint-helptext-media {
    display: block;
    margin-right: unset;
  }
}

/* *************************** HELPTEXT BROKENGRID PER VARIANTE A BOTTONI CON GRIGLIA  **************************** */
.prodottiprint-helptext-brokengrid-1,
.prodottiprint-helptext-brokengrid-2,
.prodottiprint-helptext-brokengrid-3,
.prodottiprint-helptext-brokengrid-4,
.prodottiprint-helptext-brokengrid-5,
.prodottiprint-helptext-brokengrid-6 {
  margin: 0;
}

.prodottiprint-helptext-brokengrid-1 {
  grid-column: 1/2;
}

.prodottiprint-helptext-brokengrid-2 {
  grid-column: 1/3;
}

.prodottiprint-helptext-brokengrid-3 {
  grid-column: 1/4;
}

.prodottiprint-helptext-brokengrid-4 {
  grid-column: 1/5;
}

.prodottiprint-helptext-brokengrid-5 {
  grid-column: 1/6;
}

.prodottiprint-helptext-brokengrid-6 {
  grid-column: 1/7;
}

.prodottiprint-inputcontrol {
  margin-bottom: 1rem;
  border-bottom: 1px solid #dee2e6;
}
.prodottiprint-inputcontrol .form-select,
.prodottiprint-inputcontrol .form-control {
  font-size: 14px;
  min-height: 50px;
  padding-right: 0.75rem !important;
}
.prodottiprint-inputcontrol .form-control.is-valid {
  background-image: none;
}
.prodottiprint-inputcontrol .form-control.is-invalid {
  background-position: right calc(2.5em + 0.125rem) center;
}
.prodottiprint-inputcontrol .form-select.is-valid:not([multiple]):not([size]) {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}
.prodottiprint-inputcontrol .form-control:disabled,
.prodottiprint-inputcontrol .form-control[readonly] {
  background-color: white;
  opacity: 1;
  color: #adb5bd;
}

.prodottiprint-inputlabel {
  display: flex;
  flex-flow: row;
  margin-bottom: 1rem;
}
.prodottiprint-inputlabel .prodottiprint-inputlabel-action-aprichiuditoggler-icon-transition i {
  transition: all 0.25s ease-in-out;
}

.prodottiprint-inputlabel-content {
  display: flex;
  flex-grow: 1;
}

.prodottiprint-inputlabel-content-text {
  display: flex;
  flex-flow: column;
  align-self: center;
}

.prodottiprint-inputlabel-content-color {
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
}

.prodottiprint-inputlabel-content-text-title-label {
  display: flex;
  margin: 0;
}

.prodottiprint-inputlabel-content-text-title-label > * {
  margin-right: 0.5rem;
}

.prodottiprint-inputlabel-content-text-title-label:last-child {
  margin-right: unset;
}

.prodottiprint-inputlabel-content-text-title-label-value {
  font-weight: 700;
}

.prodottiprint-inputlabelmedia {
  margin-right: 0.75rem;
}

.prodottiprint-inputcolordot {
  min-width: 1rem;
  min-height: 1rem;
  max-height: 1rem;
  max-width: 1rem;
  border-radius: 1rem;
}

.prodottiprint-inputlabel-action {
  display: flex;
  align-self: center;
}

.prodottiprint-inputcontrol-content-input {
  padding: 0.5rem 0 2rem 0;
}

.prodottiprint-inputlabel-action-aprichiuditoggler-icon-transition i {
  transition: all 0.25s ease-in-out;
}

.prodottiprint-multisubject-row {
  display: grid;
  grid-template-columns: 4fr 5fr 1rem 1rem;
  grid-column-gap: 1rem;
  margin-bottom: 1rem;
}
.prodottiprint-multisubject-row .prodottiprint-multisubject-qt {
  display: grid;
  grid-template-columns: auto 2fr auto;
  grid-column-gap: 0.5rem;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
.prodottiprint-multisubject-row .prodottiprint-multisubject-qt input {
  text-align: center;
}
.prodottiprint-multisubject-row .prodottiprint-multisubject-qt input::-webkit-outer-spin-button,
.prodottiprint-multisubject-row .prodottiprint-multisubject-qt input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.prodottiprint-multisubject-row .prodottiprint-multisubject-qt input[type=number] {
  -moz-appearance: textfield;
}
.prodottiprint-multisubject-row .prodottiprint-multisubject-addremove {
  background-color: transparent;
  border: 0;
  padding: 0;
  height: 50px;
}
.prodottiprint-multisubject-row .prodottiprint-multisubject-addremove:focus {
  box-shadow: none;
}
.prodottiprint-multisubject-row .prodottiprint-multisubject-addremove .fa-plus-circle {
  color: #28A745;
  font-size: 1.25rem;
}
.prodottiprint-multisubject-row .prodottiprint-multisubject-addremove .fa-minus-circle {
  color: #DC3545;
  font-size: 1.25rem;
}
.prodottiprint-multisubject-row .prodottiprint-multisubject-addremove .btn-secondary:hover .fa-plus-circle, .prodottiprint-multisubject-row .prodottiprint-multisubject-addremove .btn-secondary:focus .fa-plus-circle {
  color: #28A745;
}
.prodottiprint-multisubject-row .prodottiprint-multisubject-addremove .btn-secondary:hover .fa-minus-circle, .prodottiprint-multisubject-row .prodottiprint-multisubject-addremove .btn-secondary:focus .fa-minus-circle {
  color: #DC3545;
}
@media (max-width: 991.98px) {
  .prodottiprint-multisubject-row {
    grid-template-rows: 1fr 1fr;
    grid-row-gap: 0.5rem;
  }
  .prodottiprint-multisubject-row .prodottiprint-multisubject-qt {
    grid-column: 1/5;
    grid-row: 1/2;
    grid-column-gap: 1rem;
  }
  .prodottiprint-multisubject-row .prodottiprint-multisubject-name {
    grid-column: 1/3;
    grid-row: 2/2;
  }
  .prodottiprint-multisubject-row .prodottiprint-multisubject-remove {
    grid-column: 3/4;
    grid-row: 2/3;
  }
  .prodottiprint-multisubject-row .prodottiprint-multisubject-add {
    grid-row: 2/3;
  }
}
.prodottiprint-multisubject-row .prodottiprint-multisubject-qt .btn-secondary {
  font-size: 14px;
}
.prodottiprint-multisubject-row .prodottiprint-multisubject-qt .prodottiprint-multisubject-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F7F7F7;
  color: #000;
  border: unset;
  height: 50px;
  border: 1px solid #dee2e6;
}

.prodottiprint-multisubject-btn-text {
  display: none;
}

.prodottiprint-row-Button,
.prodottiprint-row-Select,
.prodottiprint-row-Input {
  border-bottom: 1px solid #dee2e6;
}

.prodottiprint-row-variant,
.prodottiprint-row-variant .prodottiprint-default-Button,
.prodottiprint-row-variant .prodottiprint-formato,
.prodottiprint-row-variant .prodottiprint-inputcontrol {
  height: 100%;
}

.prodottiprint-row-variant .prodottiprint-inputcontrol {
  border-bottom: unset;
}

@media (max-width: 575.98px) {
  .prodottiprint-row-col {
    flex-basis: unset;
  }
}

.prodottiprint-row-Button,
.prodottiprint-row-Select,
.prodottiprint-row-Input {
  border-bottom: solid 1px #F7F7F7;
}

.prodottiprint-row-variant .prodottiprint-inputlabelmedia {
  margin-right: unset;
}

/*
deleted classes:
prodottiprint-inputlabel-content-media => variante-immagine
prodottiprint-inputlabel-content-text-title-label-name => vue-variante-nome-opened
prodottiprint-inputlabel-content-text-title-label-value =>vue-variante-value-closed
vue-checkbox-buttons-form-group
*/
.prodottiprint-separatore-header {
  display: flex;
  margin-bottom: 1rem;
}

.prodottiprint-separatore-header > * {
  margin-right: 0.5rem;
}

.prodottiprint-separatore-header:last-child {
  margin-right: unset;
}

.prodottiprint-separatore-header-media {
  display: flex;
  justify-content: flex-end;
  flex: 1;
  margin-right: 0;
}

.prodottiprint-separatore-header-media > *:last-child {
  margin-right: 0 !important;
}

.prodottiprint-radiobuttonconsegna-weekday,
.prodottiprint-buttonconsegna-weekday {
  background-color: #F7F7F7;
  padding: 0.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.prodottiprint-radiobuttonconsegna-monthday,
.prodottiprint-buttonconsegna-monthday {
  padding-top: 0.5rem;
  font-size: x-large;
  font-weight: bold;
  font-size: 1.5rem;
}

.prodottiprint-radiobuttonconsegna-month,
.prodottiprint-buttonconsegna-month {
  font-weight: bold;
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.prodottiprint-radiobuttonconsegna-discount,
.prodottiprint-buttonconsegna-discount {
  font-size: medium;
  width: auto;
  border-radius: 0.25rem;
  background: #DC3545;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.5rem;
}

.prodottiprint-default-Select .input-group .custom-select {
  width: 100%;
}
.prodottiprint-default-Select .input-group .prodottiprint-helptext-sottovariante {
  width: 100%;
  position: relative !important;
  margin-left: 0 !important;
  right: 0 !important;
}

#variante-consegna .prodottiprint-inputradiobutton,
.prodottiprint-gridquantitaconsegna-header .prodottiprint-inputradiobutton {
  justify-content: flex-start;
}
#variante-consegna .prodottiprint-inputradiobutton div,
.prodottiprint-gridquantitaconsegna-header .prodottiprint-inputradiobutton div {
  height: auto;
}
#variante-consegna .prodottiprint-inputradiobutton.active, #variante-consegna .prodottiprint-inputradiobutton:hover,
.prodottiprint-gridquantitaconsegna-header .prodottiprint-inputradiobutton.active,
.prodottiprint-gridquantitaconsegna-header .prodottiprint-inputradiobutton:hover {
  color: #000;
}
#variante-consegna .prodottiprint-inputradiobutton.active .prodottiprint-radiobuttonconsegna-weekday,
#variante-consegna .prodottiprint-inputradiobutton.active .prodottiprint-buttonconsegna-weekday, #variante-consegna .prodottiprint-inputradiobutton:hover .prodottiprint-radiobuttonconsegna-weekday,
#variante-consegna .prodottiprint-inputradiobutton:hover .prodottiprint-buttonconsegna-weekday,
.prodottiprint-gridquantitaconsegna-header .prodottiprint-inputradiobutton.active .prodottiprint-radiobuttonconsegna-weekday,
.prodottiprint-gridquantitaconsegna-header .prodottiprint-inputradiobutton.active .prodottiprint-buttonconsegna-weekday,
.prodottiprint-gridquantitaconsegna-header .prodottiprint-inputradiobutton:hover .prodottiprint-radiobuttonconsegna-weekday,
.prodottiprint-gridquantitaconsegna-header .prodottiprint-inputradiobutton:hover .prodottiprint-buttonconsegna-weekday {
  background-color: #1C1C1B;
  color: #fff;
}
#variante-consegna .prodottiprint-button-grid-1,
.prodottiprint-gridquantitaconsegna-header .prodottiprint-button-grid-1 {
  grid-template-columns: 1fr;
}
#variante-consegna .prodottiprint-button-grid-1 .prodottiprint-inputradiobutton,
.prodottiprint-gridquantitaconsegna-header .prodottiprint-button-grid-1 .prodottiprint-inputradiobutton {
  flex-direction: column;
}

.prodottiprint-helptextpopover-btn.btn-secondary {
  padding: 0;
  line-height: 0;
  margin-left: 0.5rem;
  margin-bottom: 4px;
}
.prodottiprint-helptextpopover-btn.btn-secondary:hover, .prodottiprint-helptextpopover-btn.btn-secondary:focus {
  background-color: transparent;
  color: #8B969E;
}

.input-group-text {
  display: block;
  color: #1C1C1B;
  background-color: #fff;
  border: 0;
  margin-top: 1px;
}

.prodottiprint-quantitaconsegna .prodottiprint-gridquantitaconsegna {
  display: flex;
}
.prodottiprint-quantitaconsegna .prodottiprint-gridquantitaconsegna-container {
  overflow-y: hidden;
  overflow-x: visible;
  width: 100%;
}
.prodottiprint-quantitaconsegna .prodottiprint-gridquantitaconsegna-firstcolumn {
  width: calc(100px + 1rem);
  border-right: 1px solid var(--light);
  padding-right: 1rem;
  display: flex;
  align-items: flex-end;
}
.prodottiprint-quantitaconsegna .prodottiprint-gridquantitaconsegna-formgroup {
  margin-bottom: unset;
}
.prodottiprint-quantitaconsegna .prodottiprint-gridquantitaconsegna-formradiogroup {
  display: block;
}
.prodottiprint-quantitaconsegna .prodottiprint-gridquantitaconsegna-row {
  display: grid;
  grid-column-gap: 1rem;
  margin-bottom: 1rem;
  width: 100%;
}
.prodottiprint-quantitaconsegna .prodottiprint-gridquantitaconsegna-row > * {
  min-width: 100px;
}

.prodottiprint-formato .input-group,
.prodottiprint-formato .btn-group {
  margin-bottom: 1rem;
}
.prodottiprint-formato #min-max-base,
.prodottiprint-formato #min-max-altezza {
  background-color: #f8f9fa;
  color: #000;
  font-size: 14px;
  border: 1px solid #dee2e6;
  min-height: 51px;
  margin-top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 0.25rem 0.25rem 0;
  margin-left: -0.5rem;
}

.prodottiprint-formato-Button,
.prodottiprint-formato-Select,
.prodottiprint-formato-Input {
  border-bottom: 1px solid #dee2e6;
}

.prodottiprint-inputlabel-action-aprichiuditoggler-icon {
  display: none;
}
.prodottiprint-inputlabel-action-aprichiuditoggler-icon-i {
  transform: rotate(90deg);
}
.prodottiprint-inputlabel-action-aprichiuditoggler-icon-i.fa-rotate-90 {
  transform: rotate(-90deg);
}
@media (max-width: 991.98px) {
  .prodottiprint-inputlabel-action-aprichiuditoggler-icon {
    display: block;
  }
}

.prodottiprint-inputlabel-action-aprichiuditoggler-text {
  display: block;
}
@media (max-width: 991.98px) {
  .prodottiprint-inputlabel-action-aprichiuditoggler-text {
    display: none;
  }
}

.prodottiprint-inputlabel-aprichiudi ~ .prodottiprint-inputcontrol-content .prodottiprint-helptext {
  margin: 0 0 1rem 0;
}
.prodottiprint-inputlabel-aprichiudi ~ .prodottiprint-inputcontrol-content .prodottiprint-inputcontrol-content-input {
  padding-bottom: 1.5rem;
}

.prodottiprint-quantita .prodottiprint-inputlabel-aprichiudi ~ .prodottiprint-inputcontrol-content .prodottiprint-inputcontrol-content-input {
  padding-bottom: 2rem;
}

.prodottiprint-inputlabel-content-text-title-label {
  flex-wrap: wrap;
}
.prodottiprint-inputlabel-content-text-title-label-value {
  display: none;
}

.prodottiprint-inputlabel-aprichiudi .prodottiprint-inputlabel-content-text-title-label-value {
  display: block;
}

.prodottiprint-gridflyeralarm {
  display: flex;
}

.prodottiprint-gridflyeralarm-container {
  overflow-y: hidden;
  overflow-x: visible;
  width: 100%;
}

.prodottiprint-gridflyeralarm-firstcolumn {
  width: calc(100px + 1rem);
  margin-top: 70px;
  padding-right: 1rem;
}

.prodottiprint-gridflyeralarm-formgroup {
  margin-bottom: unset;
}

.prodottiprint-gridflyeralarm-formradiogroup {
  display: block;
}

.prodottiprint-gridflyeralarm-row {
  display: grid;
  grid-column-gap: 1rem;
  margin-bottom: 1rem;
  width: 100%;
}

.prodottiprint-gridflyeralarm-row > * {
  min-width: 100px;
}

.prodottiprint-modal-custom {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 500px;
  margin: auto;
  z-index: 1;
  border-radius: 1.25rem;
  height: -moz-fit-content;
  height: fit-content;
}
.prodottiprint-modal-custom .prodotti-print-confirm-title {
  font-weight: bold;
  font-size: 1.25rem;
}
.prodottiprint-modal-custom .prodotti-print-close-popup {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.prodottiprint-modal-custom.alert-success {
  background-color: rgba(233, 255, 230, 0.9);
  border: 1px solid #67C23A;
}

.prodottiprint-modal-custom.alert-edit {
  background-color: #fff;
  border: #E6E6E6;
}

.prodottiprint-modal-custom.alert-danger {
  background-color: rgba(246, 215, 217, 0.9);
  border: 1px solid #F56C6C;
}

.prodottiprint-singleposition {
  position: relative;
}
.prodottiprint-singleposition .prodotti-print-actions-footer {
  justify-content: end !important;
}
.prodottiprint-singleposition .prodotti-print-actions-footer .btn.delete {
  font-weight: 500;
  padding: 0 1.25rem;
  border: 1.5px solid #E6E6E6 !important;
  border-radius: 50rem;
}
.prodottiprint-singleposition .prodotti-print-actions-footer .btn.delete i {
  font-weight: 400;
  margin-right: 0.5rem !important;
}
.prodottiprint-singleposition .prodotti-print-actions-footer .btn.delete:active {
  color: #F56C6C;
  border: 1.5px solid #F56C6C !important;
}
.prodottiprint-singleposition .prodotti-print-actions-footer .btn.delete:hover {
  border: 1.5px solid #F56C6C !important;
}
.prodottiprint-singleposition .prodotti-print-actions-footer .btn.delete:focus-visible {
  box-shadow: none;
}
.prodottiprint-singleposition .prodottiprint-inputradiobutton.active {
  border: 1px solid #1C1C1B;
}
.prodottiprint-singleposition .delete {
  color: #F56C6C;
}
.prodottiprint-singleposition .btn-success {
  background-color: #67C23A;
  border-color: #67C23A;
}
.prodottiprint-singleposition .collapse .prodottiprint-radiobutton-media {
  display: none;
}
.prodottiprint-singleposition .collapse .carousel-cell {
  margin-bottom: 1.25rem;
}
.prodottiprint-singleposition .prodottiprint-radiobutton-media {
  max-height: 100%;
  width: auto;
  width: 100%;
  height: auto;
}
.prodottiprint-singleposition .col-12.mb-3 {
  margin-bottom: 1rem !important;
}

.prodottiprint-inputplusmin .serigrafia-button {
  border: 2px solid #F2F2F2;
  border-radius: 10px 0 0 10px;
  border-right: 0;
  background-color: #F2F2F2;
}
.prodottiprint-inputplusmin .serigrafia-button span {
  color: #000;
  font-size: 14px;
}
.prodottiprint-inputplusmin .serigrafia-button ::-moz-placeholder {
  color: #ced4da;
}
.prodottiprint-inputplusmin .serigrafia-button ::placeholder {
  color: #ced4da;
}
.prodottiprint-inputplusmin .serigrafia-button ::-ms-input-placeholder {
  color: #ced4da;
}
.prodottiprint-inputplusmin .serigrafia-button:nth-of-type(2) {
  border-right: 2px solid #F2F2F2;
  border-left: 0;
  border-radius: 0 10px 10px 0;
}
.prodottiprint-inputplusmin .prodottiprint-multisubject-qt {
  -webkit-appearance: none;
}
.prodottiprint-inputplusmin .prodottiprint-multisubject-qt .prodottiprint-multisubject-btn,
.prodottiprint-inputplusmin .prodottiprint-multisubject-qt .prodottiprint-multisubject-qt-input {
  height: 2rem;
}
.prodottiprint-inputplusmin .prodottiprint-multisubject-qt .prodottiprint-multisubject-qt-minus,
.prodottiprint-inputplusmin .prodottiprint-multisubject-qt .prodottiprint-multisubject-qt-plus {
  display: flex;
  align-items: center;
}
.prodottiprint-inputplusmin .prodottiprint-multisubject-qt .prodottiprint-multisubject-qt-minus:active,
.prodottiprint-inputplusmin .prodottiprint-multisubject-qt .prodottiprint-multisubject-qt-plus:active {
  background-color: #F2F2F2 !important;
  border: 2px solid #F2F2F2 !important;
}
.prodottiprint-inputplusmin .prodottiprint-multisubject-qt .prodottiprint-multisubject-qt-minus:focus-visible,
.prodottiprint-inputplusmin .prodottiprint-multisubject-qt .prodottiprint-multisubject-qt-plus:focus-visible {
  box-shadow: none;
}
.prodottiprint-inputplusmin .prodottiprint-multisubject-qt .prodottiprint-multisubject-qt-minus {
  border-right: 0;
}
.prodottiprint-inputplusmin .prodottiprint-multisubject-qt .prodottiprint-multisubject-qt-minus:active {
  border: 0 !important;
}
.prodottiprint-inputplusmin .prodottiprint-multisubject-qt .prodottiprint-multisubject-qt-plus {
  border-left: 0;
}
.prodottiprint-inputplusmin .prodottiprint-multisubject-qt .prodottiprint-multisubject-qt-plus:active {
  border: 0 !important;
}
.prodottiprint-inputplusmin .prodottiprint-multisubject-qt .prodottiprint-multisubject-qt-input {
  border: 2px solid #F2F2F2;
  border-radius: 0;
}
.prodottiprint-inputplusmin .prodottiprint-multisubject-qt .prodottiprint-multisubject-qt-input:focus-visible {
  outline: 0;
}
.prodottiprint-inputplusmin .prodottiprint-multisubject-qt .prodottiprint-multisubject-qt-input:focus {
  box-shadow: none;
}
.prodottiprint-inputplusmin .prodottiprint-multisubject-qt .serigrafia-button {
  border-radius: 50rem 0 0 50rem;
}
.prodottiprint-inputplusmin .prodottiprint-multisubject-qt .serigrafia-button:nth-of-type(2) {
  border-right: 2px solid #F2F2F2;
  border-left: 0;
  border-radius: 0 50rem 50rem 0;
}
.prodottiprint-inputplusmin .prodottiprint-multisubject-qt-input {
  width: 5rem;
  transition: none;
  width: 2.5rem;
}
.prodottiprint-inputplusmin .prodottiprint-multisubject-qt.selected {
  border: 1.5px solid #1C1C1B;
  border-radius: 50rem;
}
.prodottiprint-inputplusmin .prodottiprint-multisubject-qt.selected .serigrafia-button {
  border: 0;
}
.prodottiprint-inputplusmin .prodottiprint-multisubject-qt.selected .prodottiprint-multisubject-qt-input {
  border: 0;
}
.prodottiprint-inputplusmin .fake-input-box.selected {
  border: 2px solid #1C1C1B;
}
.prodottiprint-inputplusmin .is-invalid-border .fake-input-box.selected {
  border: 2px solid #F56C6C;
}
.prodottiprint-inputplusmin .danger {
  background-color: rgba(245, 108, 108, 0.3);
  border-color: #F56C6C;
}
.prodottiprint-inputplusmin input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.prodottiprint-inputplusmin input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.prodottiprint-inputplusmin input[type=number] {
  -moz-appearance: textfield;
}
.prodottiprint-inputplusmin .arrows {
  height: 35px;
}
.prodottiprint-inputplusmin .arrows .serigrafia-button {
  padding: 0;
  background-color: transparent;
  border: 0 !important;
  border-radius: 0 !important;
  line-height: 0;
  outline: none !important;
  box-shadow: none;
  margin: 0 !important;
}
.prodottiprint-inputplusmin .arrows .serigrafia-button span {
  color: #ced4da;
}
.prodottiprint-inputplusmin .in-grid.prodottiprint-multisubject-qt-input {
  height: 30px;
  background-color: transparent;
  border: 0;
  padding: 0;
  outline: none !important;
  box-shadow: none;
  width: 100%;
}
.prodottiprint-inputplusmin .fake-input-box {
  background-color: #fff;
  border: 2px solid #F2F2F2;
  padding: 0 0.6rem;
  border-radius: 5px;
}
.prodottiprint-inputplusmin .disabled-input .fake-input-box,
.prodottiprint-inputplusmin .disabled-input .disabled-button {
  background-color: #F2F2F2;
}
.prodottiprint-inputplusmin .disabled-input .input-wrapper input {
  background-color: #F2F2F2;
  border-left: 0;
  border-right: 0;
}

#prodottiprint-tabs-taglia-colore .prodottiprint-inputplusmin .selected .input-wrapper .prodottiprint-multisubject-qt-input {
  border-right: 1.5px solid #1C1C1B;
  border-radius: 0;
  border-left: 1.5px solid #1C1C1B;
}
#prodottiprint-tabs-taglia-colore .prodottiprint-inputplusmin .selected .prodottiprint-multisubject-qt.is-invalid-border.selected {
  border-color: #F56C6C;
}
#prodottiprint-tabs-taglia-colore .prodottiprint-inputplusmin .selected .prodottiprint-multisubject-qt.is-invalid-border.selected .prodottiprint-multisubject-qt-input {
  border-right: 1.5px solid #F56C6C;
  border-radius: 0;
  border-left: 1.5px solid #F56C6C;
}
#prodottiprint-tabs-taglia-colore .serigrafia-button {
  border-radius: 50rem 0 0 50rem;
}
#prodottiprint-tabs-taglia-colore .serigrafia-button:nth-of-type(2) {
  border-radius: 0 50rem 50rem 0;
}
#prodottiprint-tabs-taglia-colore .prodottiprint-multisubject-qt.selected {
  border-radius: 50rem;
}

.prodottiprint-horizontal-list-input-single-box {
  margin-bottom: 10px;
  position: relative;
}
.prodottiprint-horizontal-list-input-single-box .prodotti-print-box-item img {
  width: 100%;
  max-width: 12.5rem;
}
.prodottiprint-horizontal-list-input-single-box .prodotti-print-box-item:hover {
  border-color: #1C1C1B;
}
.prodottiprint-horizontal-list-input-single-box .prodotti-print-box-item:hover .card-footer {
  transition: all 0.3s ease-in;
}
.prodottiprint-horizontal-list-input-single-box .prodotti-print-box-item.selected {
  transition: all 0.3s ease-in;
  border-color: #1C1C1B;
}
.prodottiprint-horizontal-list-input-single-box .prodotti-print-box-item.selected .card-footer {
  border-color: #1C1C1B;
  background-color: rgba(28, 28, 27, 0.1);
}
.prodottiprint-horizontal-list-input-single-box .prodotti-print-box-item.selected .prodotti-print-card-custom {
  background-color: rgba(28, 28, 27, 0.1);
}
.prodottiprint-horizontal-list-input-single-box .serigrafia-input.is-added {
  position: relative;
  padding: 0.5rem;
}
.prodottiprint-horizontal-list-input-single-box .is-added-icon-wrapper {
  display: block;
  position: absolute;
  top: -0.5rem;
  right: 0;
  color: #fff;
}
.prodottiprint-horizontal-list-input-single-box .is-added-icon-wrapper .icon-box {
  background-color: #1C1C1B !important;
  border: 1px solid #1C1C1B;
  border-radius: 50rem;
  width: 25px;
  height: 25px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}
.prodottiprint-horizontal-list-input-single-box .is-added-icon-wrapper .icon-box i {
  font-size: 1rem;
  font-weight: 600;
}
.prodottiprint-horizontal-list-input-single-box .prodottiprint-radiobutton-media {
  height: 150px;
}
.prodottiprint-horizontal-list-input-single-box .prodottiprint-button-media {
  max-height: 100%;
  width: auto;
  height: 50px;
}

.prodottiprint-button-media-box {
  height: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prodottiprint-colorchoose {
  position: relative;
}
.prodottiprint-colorchoose .badge {
  background: #000;
  position: absolute;
  color: #fff;
  top: -5px;
  right: 0;
  border-radius: 50rem;
  min-width: 15px;
  min-height: 15px;
  padding: 2px;
  font-size: 0.5rem;
}
.prodottiprint-colorchoose .badge.not-available {
  background: #F56C6C;
  width: 15px;
  height: 15px;
}
.prodottiprint-colorchoose .circle-color {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  margin: 0 5px;
  font-size: 10px;
  border: 2px solid #E6E6E6;
  background: 0% 0% no-repeat padding-box;
  cursor: pointer;
}
.prodottiprint-colorchoose .circle-color i {
  color: #495057;
}
.prodottiprint-colorchoose .circle-color.selected {
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #1C1C1B;
}
.prodottiprint-colorchoose .circle-color.tabs {
  width: 2.5rem;
  height: 2.5rem;
}

.prodottiprint-serigrafiagrid {
  position: relative;
  max-width: 100%;
}
.prodottiprint-serigrafiagrid .truncate-2-lines {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2em;
  max-height: 2.4em;
  max-width: 150px;
  white-space: initial;
}
.prodottiprint-serigrafiagrid .scroll-table-wrapper {
  overflow-x: auto;
}
.prodottiprint-serigrafiagrid .scroll-table-wrapper .fade-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to left, #f5f5f5, rgba(255, 255, 255, 0));
  transition: opacity 0.3s;
  opacity: 1;
  margin-bottom: 1rem;
}
.prodottiprint-serigrafiagrid .scroll-table-wrapper .fade-right.hidden {
  opacity: 0;
}
.prodottiprint-serigrafiagrid .scroll-table-wrapper .hidden {
  display: unset !important;
}
.prodottiprint-serigrafiagrid .table.grid-class {
  border-collapse: separate;
  border-spacing: 0;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  margin-bottom: 0;
}
.prodottiprint-serigrafiagrid .table.grid-class th:first-child,
.prodottiprint-serigrafiagrid .table.grid-class td:first-child {
  position: sticky;
  left: 0px;
  background-color: #FAFAFA;
  z-index: 2;
}
.prodottiprint-serigrafiagrid .table.grid-class tr:first-child {
  position: relative;
  z-index: 1;
}
.prodottiprint-serigrafiagrid .table.grid-class .enableMaxWidth .prodottiprint-inputplusmin {
  max-width: 86px;
}
.prodottiprint-serigrafiagrid .badge {
  display: none;
}
.prodottiprint-serigrafiagrid .table.grid-class tr:first-child th {
  font-size: 14px;
  font-weight: 600;
  padding: 0.8rem;
}
.prodottiprint-serigrafiagrid .table.grid-class th {
  text-align: center;
}
.prodottiprint-serigrafiagrid .table.grid-class th,
.prodottiprint-serigrafiagrid .table.grid-class td {
  border-radius: 0 !important;
}
.prodottiprint-serigrafiagrid .table.grid-class tr:last-child td:first-child {
  border-bottom-left-radius: 10px !important;
}
.prodottiprint-serigrafiagrid .table.grid-class tr:last-child td:last-child {
  border-bottom-right-radius: 10px !important;
}
.prodottiprint-serigrafiagrid .table.grid-class tr:first-child th:first-child {
  border-top-left-radius: 10px !important;
}
.prodottiprint-serigrafiagrid .table.grid-class tr:first-child th:last-child {
  border-top-right-radius: 10px !important;
}
.prodottiprint-serigrafiagrid .grid-class .prodottiprint-multisubject-qt {
  justify-content: center;
}
.prodottiprint-serigrafiagrid td.taglia-colore-combinazione {
  background: #FAFAFA;
  padding: 0.35rem;
}
.prodottiprint-serigrafiagrid .taglia-colore-combinazione .popover-bs5-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.prodottiprint-serigrafiagrid .grid-class td {
  border: 0.5px solid #E6E6E6 !important;
}
.prodottiprint-serigrafiagrid .grid-class th {
  border-top: 1px solid #E6E6E6 !important;
  border-bottom: 0.5px solid #E6E6E6 !important;
}
.prodottiprint-serigrafiagrid .grid-class th:first-child {
  border-left: 1px solid #E6E6E6 !important;
}
.prodottiprint-serigrafiagrid .grid-class th:last-child {
  border-right: 1px solid #E6E6E6 !important;
}
.prodottiprint-serigrafiagrid .grid-class .circle-color {
  width: 26px;
  height: 26px;
  font-size: 5px;
}
.prodottiprint-serigrafiagrid .grid-class .color-name {
  font-size: 1rem;
  font-weight: 600;
}
.prodottiprint-serigrafiagrid .color-name.ms-2 {
  margin-left: 0.5rem !important;
  line-height: normal;
}
.prodottiprint-serigrafiagrid .circle-color {
  cursor: inherit;
}

.prodottiprint-serigrafiagrid-popover-custom-box .popover {
  border: 0 !important;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
  border-radius: 0;
}
.prodottiprint-serigrafiagrid-popover-custom-box .prodottiprint-serigrafiagrid-popover-taglia-colore-content .title {
  font-size: 14px;
}
.prodottiprint-serigrafiagrid-popover-custom-box .prodottiprint-serigrafiagrid-popover-taglia-colore-content .disponibilita h5, .prodottiprint-serigrafiagrid-popover-custom-box .prodottiprint-serigrafiagrid-popover-taglia-colore-content .disponibilita .h5 {
  font-size: 0.75rem;
}
.prodottiprint-serigrafiagrid-popover-custom-box .prodottiprint-serigrafiagrid-popover-taglia-colore-content .disponibilita span {
  font-size: 0.75rem;
  color: #67C23A;
}
.prodottiprint-serigrafiagrid-popover-custom-box .prodottiprint-serigrafiagrid-popover-taglia-colore-content .disponibilita.poca-disponibilita span {
  font-size: 12px;
  color: rgba(245, 108, 108, 0.5);
}
.prodottiprint-serigrafiagrid-popover-custom-box .prodottiprint-serigrafiagrid-popover-taglia-colore-content .disponibilita.non-disponibile span {
  font-size: 12px;
  color: #F56C6C;
}
.prodottiprint-serigrafiagrid-popover-custom-box .img-popover-box {
  max-height: 250px;
  width: 200px;
}
.prodottiprint-serigrafiagrid-popover-custom-box .img-popover-box .img-popover {
  max-height: 250px;
  max-width: 100%;
}
.prodottiprint-serigrafiagrid-popover-custom-box .img-prodotto-wrapper {
  position: relative;
  padding: 1rem;
}
.prodottiprint-serigrafiagrid-popover-custom-box .img-prodotto-wrapper .img-prodotto {
  height: 300px;
}
.prodottiprint-serigrafiagrid-popover-custom-box .img-prodotto-wrapper .img-prodotto img {
  width: auto;
  max-height: 100%;
  max-width: 100%;
  width: 100%;
}
.prodottiprint-serigrafiagrid-popover-custom-box .img-prodotto-wrapper .zoom-icon {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
}

.prodottiprint-serigrafiatabs .prodotti-print-posizioni-wrapper.hide-extra {
  height: 45px;
  overflow: hidden;
}
.prodottiprint-serigrafiatabs .prodottiprint-colorchoose.circle-color {
  margin-right: 10px;
}
.prodottiprint-serigrafiatabs .prodottiprint-circle-color-tab {
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 50px;
  border: 1px solid #ced4da;
  background: 0% 0% no-repeat padding-box;
}
.prodottiprint-serigrafiatabs .icon-remove {
  font-size: 10px;
}
.prodottiprint-serigrafiatabs .prodottiprint-card-custom {
  border-radius: 1rem;
  margin-bottom: 15px;
  border: 2px solid #F2F2F2;
}
.prodottiprint-serigrafiatabs .prodottiprint-card-custom .card-body {
  padding: 1rem;
}
.prodottiprint-serigrafiatabs .prodottiprint-card-custom .card-body p {
  color: #395357;
  font-size: 14px;
}
.prodottiprint-serigrafiatabs .prodottiprint-card-custom .card-body .prodottiprint-colorchoose .circle-color i {
  font-size: 1.5rem;
  font-weight: 600;
}
.prodottiprint-serigrafiatabs #prodottiprint-tabs-taglia-colore .tab-content {
  border-radius: 0 10px 10px 10px;
  border: 2px solid #F2F2F2;
  margin: 0;
  padding: 1rem;
  background: #fff;
  padding: 0.5rem;
}
.prodottiprint-serigrafiatabs #prodottiprint-tabs-taglia-colore .nav-tabs {
  border-bottom: 0;
}
.prodottiprint-serigrafiatabs #prodottiprint-tabs-taglia-colore .nav-tabs .nav-link {
  padding: 0.7rem;
}
.prodottiprint-serigrafiatabs .added-color:not(.active) .color-name {
  display: none;
}
.prodottiprint-serigrafiatabs #prodottiprint-tabs-taglia-colore li.nav-item:has(> a.active.added-color) {
  z-index: 2;
  max-width: inherit;
}
.prodottiprint-serigrafiatabs #prodottiprint-tabs-taglia-colore li.nav-item:has(> a.active.added-color) + .nav-item {
  margin-left: 0 !important;
}
.prodottiprint-serigrafiatabs #prodottiprint-tabs-taglia-colore li.nav-item:has(> a.active.added-color) + .nav-item {
  margin-left: 0 !important;
}
.prodottiprint-serigrafiatabs #prodottiprint-tabs-taglia-colore li.nav-item:has(> a.active.added-color) + .nav-item a.nav-link span.color-name {
  visibility: hidden !important;
}
.prodottiprint-serigrafiatabs .nav-tabs li:last-child .added-color .color-name {
  visibility: visible;
}
.prodottiprint-serigrafiatabs #prodottiprint-tabs-taglia-colore .nav-link {
  background-color: #fff;
  border: 2px solid;
  border-color: #F2F2F2;
  border-radius: 1.25rem 1.25rem 0 0;
  position: relative;
  z-index: 1;
}
.prodottiprint-serigrafiatabs #prodottiprint-tabs-taglia-colore .nav-link:not(.active):before {
  background-color: #F2F2F2;
}
.prodottiprint-serigrafiatabs #prodottiprint-tabs-taglia-colore .nav-link:not(.active):after {
  content: "";
  width: 1px;
  height: 20px;
  background: #ced4da;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.prodottiprint-serigrafiatabs #prodottiprint-tabs-taglia-colore li.nav-item:has(+ .nav-item .active) .nav-link:after,
.prodottiprint-serigrafiatabs #prodottiprint-tabs-taglia-colore .nav-item:last-child .nav-link:not(.active):after {
  content: none;
}
.prodottiprint-serigrafiatabs #prodottiprint-tabs-taglia-colore .nav-link:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25rem;
  background-color: #fff;
  height: 0.25rem;
  z-index: 20;
}
.prodottiprint-serigrafiatabs #prodottiprint-tabs-taglia-colore .nav-link:not(.active) {
  background-color: #F2F2F2;
  margin-bottom: 0;
  border: 2px solid #F2F2F2;
}

.prodottiprit-positionscollapse-header-posizione-stampa:focus-visible {
  outline: 0;
}

.prodottiprint-positionscollapse .posizioni-stampa {
  border: 1px solid #E6E6E6;
  border-radius: 1rem;
  padding: 12px 10px;
  margin-bottom: 17px;
  position: relative;
}
.prodottiprint-positionscollapse .posizioni-stampa .fake-disabled {
  opacity: 0.65;
  cursor: unset;
}
.prodottiprint-positionscollapse .title-help-tex-wraper {
  flex: 1;
}
.prodottiprint-positionscollapse .title-help-tex-wraper p {
  margin: 0;
}
.prodottiprint-positionscollapse .posizioni-stampa .collapse .prodottiprint-radiobutton-media {
  display: none;
}
.prodottiprint-positionscollapse .collapse .right-border {
  position: relative;
}
.prodottiprint-positionscollapse .collapse .carousel-cell {
  margin-bottom: 1.25rem;
}
.prodottiprint-positionscollapse .posizioni-stampa .collapsed .circle-arrow span:before {
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
}
.prodottiprint-positionscollapse .posizioni-stampa .not-collapsed .circle-arrow span:before {
  content: "\f106";
  font-family: "Font Awesome 5 Pro";
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
}
.prodottiprint-positionscollapse .title-box .step {
  font-size: 0.75rem;
  width: -moz-fit-content;
  width: fit-content;
  height: 1.25rem;
  color: #fff;
  border-radius: 0.25rem;
  background-color: #67C23A;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 15px;
  padding: 3px 10px;
}
.prodottiprint-positionscollapse .completato-collapse {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -5px;
  text-align: center;
}
.prodottiprint-positionscollapse .completato-collapse span {
  background-color: rgba(103, 194, 58, 0.5);
  padding: 0 45px;
  display: inline-block;
  color: #212529;
  font-weight: 400;
  font-size: 12px;
  position: relative;
}
.prodottiprint-positionscollapse .completato-collapse span:after,
.prodottiprint-positionscollapse .completato-collapse span:before {
  width: 0;
  height: 0;
  border-bottom: 19px solid #fff;
  content: "";
  position: absolute;
  top: 0;
}
.prodottiprint-positionscollapse .completato-collapse span:after {
  border-left: 10px solid transparent;
  right: 0;
}
.prodottiprint-positionscollapse .completato-collapse span:before {
  border-right: 10px solid transparent;
  left: 0;
}
.prodottiprint-positionscollapse .completato-collapse.uncompleted span {
  background-color: rgba(230, 162, 60, 0.5);
}
.prodottiprint-positionscollapse .arrow-box:focus-visible {
  outline: 0;
}
.prodottiprint-positionscollapse .arrow-box .circle-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50rem;
  border: 1px solid #F2F2F2;
  color: #495057;
  font-size: 1.25rem;
  line-height: 41px;
  text-align: center;
}
.prodottiprint-positionscollapse .arrow-box .trash {
  cursor: pointer;
}
.prodottiprint-positionscollapse .posizione-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.prodottiprint-positionscollapse .prodottiprint-positionscollapse-collapse-box {
  border-top: 1px solid #FAFAFA;
  padding-top: 1.75rem;
  margin-top: 15px;
}
.prodottiprint-positionscollapse .prodottiprint-positionscollapse-img-posizione {
  margin-right: 5px;
  border: 1px solid #E6E6E6;
  border-radius: 10px;
  padding: 10px;
  width: 90px;
  height: 90px;
}
.prodottiprint-positionscollapse .collapse .right-border:after {
  content: "";
  width: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  background: #ced4da;
}
.prodottiprint-positionscollapse .collapse .right-border:last-child:after {
  content: none;
}

.toggle-height i {
  color: #ced4da;
  line-height: 0.4;
  position: relative;
  top: 0.5rem;
}

.prodottiprint-positionstabs .btn-group:focus-visible {
  outline: 0;
}
.prodottiprint-positionstabs .btn-group .prodottiprint-button-text {
  font-size: 14px !important;
  margin-top: 0.25rem;
}
.prodottiprint-positionstabs .card {
  border: 2px solid #F2F2F2;
  border-radius: 1rem;
}
.prodottiprint-positionstabs .card .card-body {
  padding: 1rem;
}
.prodottiprint-positionstabs .card .card-body p.font-weight-bold {
  color: #000;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.prodottiprint-positionstabs .card .card-body p {
  color: #395357;
  font-size: 14px;
}
.prodottiprint-positionstabs .prodotti-print-posizioni-wrapper {
  gap: 10px;
  transition: all 0.3s ease-in;
}
.prodottiprint-positionstabs .prodotti-print-posizioni-wrapper.hide-extra {
  height: 194px;
  overflow: hidden;
  padding-top: 0.75rem;
  height: 15rem;
}
.prodottiprint-positionstabs #prodotti-print-tabs-dimensione-lavorazioni .nav-link:not(.active) {
  background-color: #F2F2F2;
  margin-bottom: 0;
  border: 2px solid #F2F2F2;
}
.prodottiprint-positionstabs #prodotti-print-tabs-dimensione-lavorazioni .added-position:not(.active) .position-name {
  width: 2.5rem;
  text-overflow: ellipsis;
  display: block;
  white-space: nowrap;
}
.prodottiprint-positionstabs #prodotti-print-tabs-dimensione-lavorazioni li:last-child .added-position .position-name {
  visibility: visible;
  width: auto;
}
.prodottiprint-positionstabs #prodotti-print-tabs-dimensione-lavorazioni .position-name {
  font-size: 14px;
  font-weight: 700;
  margin-left: 0.75rem !important;
}
.prodottiprint-positionstabs .prodotti-print-img-lavorazione {
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 50px;
  border: 1px solid #495057;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.prodottiprint-positionstabs .prodotti-print-blocco {
  position: relative;
}
.prodottiprint-positionstabs .section-title {
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 1.25rem;
}
.prodottiprint-positionstabs #prodotti-print-tabs-dimensione-lavorazioni .nav-tabs .nav-item {
  position: relative;
  top: 2px;
}
.prodottiprint-positionstabs #prodotti-print-tabs-dimensione-lavorazioni .tab-content {
  border-radius: 0 10px 10px 10px;
  border: 2px solid #F2F2F2;
  margin: 0;
  padding: 1rem;
  background: #fff;
}
.prodottiprint-positionstabs #prodotti-print-tabs-dimensione-lavorazioni .nav-tabs {
  border-bottom: 0;
  background-color: #F2F2F2;
  display: inline-flex;
  border-radius: 20px 20px 0 0;
}
.prodottiprint-positionstabs #prodotti-print-tabs-dimensione-lavorazioni .nav-link:not(.active):after {
  content: "";
  width: 1px;
  height: 20px;
  background: #495057;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.prodottiprint-positionstabs #prodotti-print-tabs-dimensione-lavorazioni li.nav-item:has(+ .nav-item .active) .nav-link:after,
.prodottiprint-positionstabs #prodotti-print-tabs-dimensione-lavorazioni .nav-item:last-child .nav-link:not(.active):after {
  content: none;
}
.prodottiprint-positionstabs #prodotti-print-tabs-dimensione-lavorazioni .nav-tabs .nav-link {
  padding: 0.7rem;
  border-radius: 15px 15px 0 0;
  border: 2px solid #F2F2F2;
  border-bottom: 0;
  color: #000;
}
.prodottiprint-positionstabs #prodotti-print-tabs-dimensione-lavorazioni .nav-tabs .nav-link:focus-visible {
  outline: 0;
}
.prodottiprint-positionstabs #prodotti-print-tabs-dimensione-lavorazioni.tabs.mt-4 {
  margin-top: 1rem !important;
}
.prodottiprint-positionstabs .remove-tab-icon {
  position: absolute;
  right: 10px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  height: -moz-fit-content;
  height: fit-content;
}

.prodottiprint-posizionistampa .prodottiprint-helptexticon {
  color: #000;
}
.prodottiprint-posizionistampa .help-text {
  background-color: #e9ecef;
  padding: 1rem;
  border-radius: 0.25rem;
  margin: 0 0 1rem 0;
}
.prodottiprint-posizionistampa .help-text p {
  margin-bottom: 0;
}

.prodottiprint-serigrafiatabs .help-text {
  background-color: #e9ecef;
  padding: 1rem;
  border-radius: 0.25rem;
  margin: 0 0 1rem 0;
}
.prodottiprint-serigrafiatabs .help-text p {
  margin-bottom: 0;
}

.prodottiprint-serigrafia {
  position: relative;
}
.prodottiprint-serigrafia .color-name {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 14px;
  margin-left: 0.75rem !important;
}

.prodottiprint-colorsize .btn-success {
  background-color: #67C23A;
  border-color: #67C23A;
}
.prodottiprint-colorsize .img-prodotto-wrapper {
  position: relative;
  padding: 15px;
}
.prodottiprint-colorsize .img-prodotto-wrapper .img-prodotto img {
  width: 250px;
  width: 100%;
}
.prodottiprint-colorsize .img-prodotto-wrapper .zoom-icon {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
}
.prodottiprint-colorsize .taglia-qta-box {
  background-color: #FAFAFA;
  padding: 30px 20px;
  border-radius: 15px;
}
.prodottiprint-colorsize .taglia-qta-box h5, .prodottiprint-colorsize .taglia-qta-box .h5 {
  font-size: 1rem;
  margin-bottom: 1rem !important;
}
.prodottiprint-colorsize .taglia-qta-box ul {
  padding-left: 0;
}
.prodottiprint-colorsize .taglia-qta-box ul li {
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
}
.prodottiprint-colorsize .taglia-qta-box ul li:first-child {
  margin-top: 0;
}
.prodottiprint-colorsize .taglia-qta-box ul li:last-child {
  margin-bottom: 0;
}
.prodottiprint-colorsize .taglia-qta-box h6, .prodottiprint-colorsize .taglia-qta-box .h6 {
  font-size: 13px;
}
.prodottiprint-colorsize .giacenza-prod {
  display: flex;
  font-size: 13px;
  color: #adb5bd;
  margin-left: 1rem;
}
.prodottiprint-colorsize .label-taglia {
  width: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-right: 0.3rem;
}
.prodottiprint-colorsize .actions-footer.mt-2 {
  margin-top: 0 !important;
}
.prodottiprint-colorsize .delete {
  color: #F56C6C;
}
.prodottiprint-colorsize .btn.delete {
  font-weight: 500;
  padding: 0 1.25rem;
  border: 1.5px solid #E6E6E6 !important;
  border-radius: 50rem;
}
.prodottiprint-colorsize .btn.delete i {
  font-weight: 400;
  margin-right: 0.5rem !important;
}
.prodottiprint-colorsize .btn.delete:active {
  color: #F56C6C;
  border: 1.5px solid #F56C6C !important;
}
.prodottiprint-colorsize .btn.delete:hover {
  border: 1.5px solid #F56C6C !important;
}
.prodottiprint-colorsize .btn.delete:focus-visible {
  box-shadow: none;
}

.prodottiprint-inputgroup-list .prodotti-print-fake-title {
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #F2F2F2;
}
.prodottiprint-inputgroup-list .prodotti-print-list-items-wrapper .prodotti-print-items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.prodottiprint-inputgroup-list .prodotti-print-list-items-wrapper .vedi-tutti-box {
  cursor: pointer;
}
.prodottiprint-inputgroup-list .title-box h5, .prodottiprint-inputgroup-list .title-box .h5 {
  font-size: 14px;
  font-weight: 500;
}
.prodottiprint-inputgroup-list .title-box .step {
  font-size: 0.75rem;
  width: -moz-fit-content;
  width: fit-content;
  height: 1.25rem;
  color: #fff;
  border-radius: 0.25rem;
  background-color: #67C23A;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 15px;
  padding: 3px 10px;
}
.prodottiprint-inputgroup-list .title-box.disabledCol span {
  background-color: #ced4da;
}
.prodottiprint-inputgroup-list .disabledCol h5, .prodottiprint-inputgroup-list .disabledCol .h5 {
  color: #ced4da;
}

.prodottiprint-inputcheckboxbutton .prodottiprint-checkbox-infobox-btn {
  background: unset;
  border: unset;
  margin: unset;
  padding: unset;
}

.prodottiprint-listselectedelements {
  margin-top: 0.75rem;
}
.prodottiprint-listselectedelements p {
  font-weight: 600;
}
.prodottiprint-listselectedelements ul {
  list-style: none;
}
.prodottiprint-listselectedelements ul li:after {
  content: "-";
  margin-left: 5px;
  margin-right: 5px;
}
.prodottiprint-listselectedelements ul li:last-child:after {
  content: none !important;
}

.prodottiprint-radiobutton .serigrafia-input {
  border-color: #E6E6E6;
}
.prodottiprint-radiobutton .serigrafia-input .prodottiprint-radiobutton-text {
  color: #343a40;
  font-size: 10px;
}
.prodottiprint-radiobutton .serigrafia-input.active {
  background: #fff !important;
}
.prodottiprint-radiobutton .serigrafia-input:hover {
  border-color: #1C1C1B;
  background: #fff;
}
.prodottiprint-radiobutton .serigrafia-input:hover .prodottiprint-radiobutton-text {
  color: #343a40;
}

.prodottiprint-posizionistampa .posizioni-stampa.completed .prodottiprint-inputradiobutton.serigrafia-input.active {
  background-color: #fff !important;
  border-color: #1C1C1B;
}

.prodottiprint-posizionistampa .dimensioni-box {
  height: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prodottiprint-posizionistampa .dimensioni-box span {
  display: block;
  margin: auto;
  border: 2px dashed #1C1C1B;
}
.prodottiprint-posizionistampa .serigrafia-input.active .dimensioni-box span {
  border-color: #fff;
}
.prodottiprint-posizionistampa .serigrafia-input:hover .dimensioni-box span {
  border-color: #fff;
}

.serigrafia-input,
.prodottiprint-positionscollapse-img-posizione {
  position: relative;
}
.serigrafia-input .modal-img .zoom-icon,
.prodottiprint-positionscollapse-img-posizione .modal-img .zoom-icon {
  position: absolute;
  z-index: 2;
  top: 5px;
  right: 5px;
}
.serigrafia-input .modal-img .zoom-icon i,
.prodottiprint-positionscollapse-img-posizione .modal-img .zoom-icon i {
  color: #000;
}
.serigrafia-input .modal-img .zoom-icon:focus-visible,
.prodottiprint-positionscollapse-img-posizione .modal-img .zoom-icon:focus-visible {
  outline: 0;
}

.prodottiprint-horizontal-list-input-single-box .prodottiprint-button-text {
  padding: 0;
  font-size: 0.75rem;
}
.prodottiprint-horizontal-list-input-single-box .prodottiprint-inputcheckboxbutton {
  position: relative;
}

.prodottiprint-button-grid .prodottiprint-horizontal-list-input-single-box .prodottiprint-button-text {
  height: auto !important;
  padding: 0;
  font-size: 0.75rem;
}
.prodottiprint-button-grid .prodottiprint-horizontal-list-input-single-box .serigrafia-input {
  border-color: #E6E6E6;
  box-shadow: none !important;
  height: 100%;
}
.prodottiprint-button-grid .prodottiprint-horizontal-list-input-single-box .serigrafia-input .prodottiprint-button-text {
  color: #343a40;
}
.prodottiprint-button-grid .prodottiprint-horizontal-list-input-single-box .serigrafia-input.active {
  background: #fff !important;
  border: 1.5px solid #1C1C1B;
}
.prodottiprint-button-grid .prodottiprint-horizontal-list-input-single-box .serigrafia-input:hover {
  border: 1.5px solid #1C1C1B;
  background: #fff;
}
.prodottiprint-button-grid .prodottiprint-horizontal-list-input-single-box .serigrafia-input:hover .prodottiprint-button-text {
  color: #343a40;
}
.prodottiprint-button-grid .prodottiprint-horizontal-list-input-single-box .serigrafia-input.is-added {
  background: #fff !important;
  border-color: #1C1C1B;
  border: 2px solid #1C1C1B;
}

.prodottiprint-radiobutton .serigrafia-input {
  border-color: #E6E6E6;
}
.prodottiprint-radiobutton .serigrafia-input .prodottiprint-radiobutton-text {
  color: #343a40;
}
.prodottiprint-radiobutton .serigrafia-input.active {
  background: #fff !important;
}
.prodottiprint-radiobutton .serigrafia-input:hover {
  border-color: #1C1C1B;
  background: #fff;
}
.prodottiprint-radiobutton .serigrafia-input:hover .prodottiprint-radiobutton-text {
  color: #343a40;
}

.posizioni-stampa .prodottiprint-radiobutton.prodottiprint-radiobutton-disabled.no-hover:hover label {
  border: 2px solid #F2F2F2 !important;
}

.tooltip-custom-storefront-prodottiprint-colorchoose {
  text-transform: capitalize;
  font-size: 0.875rem;
  line-height: 1rem;
}

.tooltip-custom-storefront-prodottiprint-colorchoose-second-span {
  color: #F56C6C;
  font-size: 0.813rem;
}

.tooltip-custom-storefront-wrapper {
  line-height: 1.25rem;
}

.prodottiprint-formatoforme-box .singola-forma {
  margin-bottom: 15px;
}
.prodottiprint-formatoforme-box .singola-forma .forma img {
  max-height: 100%;
}
.prodottiprint-formatoforme-box .singola-forma .forma.circolare img {
  border-radius: 50%;
}
.prodottiprint-formatoforme-box .singola-forma .forma.ovale img {
  border-radius: 50%;
}
.prodottiprint-formatoforme-box .labelator > .preview > div > .preview-pro {
  margin-bottom: 2.5rem;
}
.prodottiprint-formatoforme-box .labelator > .preview > div > .preview-pro .sticker-container {
  justify-content: center;
  display: flex;
}
.prodottiprint-formatoforme-box .labelator .preview {
  flex-direction: column;
  align-items: center;
  display: flex;
}
.prodottiprint-formatoforme-box .labelator .preview .preview-pro .sticker-wrapper {
  width: 100%;
  height: 11.25rem;
  align-items: flex-end;
}
.prodottiprint-formatoforme-box .labelator .preview .preview-pro .sticker-wrapper .sizes {
  position: absolute;
  transform: rotate(-90deg);
  top: 45%;
  left: -3.25rem;
  font-size: 13px;
}
.prodottiprint-formatoforme-box .labelator .bobroll {
  height: 137px;
  width: 15.625rem;
}
.prodottiprint-formatoforme-box .preview-pro {
  width: 100%;
  position: relative;
  text-align: center;
  align-items: center;
  display: flex;
}
.prodottiprint-formatoforme-box .preview-pro span {
  position: absolute;
  text-align: center;
}
.prodottiprint-formatoforme-box .sticker-container {
  width: 100%;
  height: 100%;
  align-items: center;
  display: flex;
}
.prodottiprint-formatoforme-box .sticker-container > div {
  display: flex;
  position: absolute;
}
.prodottiprint-formatoforme-box .sticker-container .stk {
  height: 100%;
  position: relative;
  transition: all 0.4s ease-in-out;
  max-width: 100%;
  max-height: 100%;
  display: flex;
}
.prodottiprint-formatoforme-box .sticker-container .stk > div {
  position: relative;
  background-color: #1C1C1B;
  transition: all 0.4s ease-in-out;
  border: 2px solid #1C1C1B;
  width: 100%;
}
.prodottiprint-formatoforme-box .sticker-container .logo {
  position: absolute;
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMjYuOCAyNTUuMSI+PHBhdGggZD0iTTE0Mi42IDE0LjFsNzAgMjI2LjhoLTYxLjVsLTEwLjgtMzguMkg4MS45TDcxLjQgMjQxSDE0LjJMODEuOSAxNC4xaDYwLjd6bS0yNS41IDkyLjdsLTYuNi0zNC4zaC0uOGwtNi4yIDM0LjMtMTIuNCA2MC41aDQwLjZsLTE0LjYtNjAuNXoiIGZpbGw9IiMyMjIyMjEiLz48L3N2Zz4=) no-repeat 50%;
  opacity: 0.85;
}
.prodottiprint-formatoforme-box .preview-pro.ovale .sticker-container .stk > div {
  border-radius: 50% !important;
}
.prodottiprint-formatoforme-box .preview-pro.circolare .sticker-container .stk > div {
  border-radius: 50% !important;
}
.prodottiprint-formatoforme-box .rubg {
  background-position: 50%;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABAQMAAAAl21bKAAAAA1BMVEWen56xmYC2AAAACklEQVQI12NgAAAAAgAB4iG8MwAAAABJRU5ErkJggg==);
  background-repeat: repeat-x;
}
.prodottiprint-formatoforme-box .rul {
  width: 10px;
  height: 100%;
  background-repeat: repeat-y;
  border-top: 1px solid #395357;
  border-bottom: 1px solid #395357;
}
.prodottiprint-formatoforme-box .rul.lt {
  display: flex;
  align-items: center;
  left: -23px;
}
.prodottiprint-formatoforme-box .rul.lt > div {
  transform: rotate(-90deg);
  top: 50%;
  position: absolute;
  margin-top: -0.75rem;
}
.prodottiprint-formatoforme-box .rul.rt {
  right: -23px;
}
.prodottiprint-formatoforme-box .rul.rt > div {
  transform: rotate(-90deg);
  top: 50%;
  position: absolute;
  margin-left: -15px;
  margin-top: -0.75rem;
  margin-left: 5px;
}
.prodottiprint-formatoforme-box .rul.tp {
  left: 0;
  bottom: -23px;
  width: 100%;
  height: 10px;
  border: 0;
  border-left: 1px solid #395357;
  border-right: 1px solid #395357;
  background-repeat: repeat-x;
}
.prodottiprint-formatoforme-box .rul.tp > div {
  width: 100%;
  margin-top: 0.75rem;
  text-align: center;
  white-space: nowrap;
  font-size: 13px;
}
.prodottiprint-formatoforme-box .bobroll {
  width: 10rem;
  height: 134px;
  max-width: 100%;
  position: relative;
  background-repeat: no-repeat;
  background-position: top;
  box-sizing: border-box;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPoAAAC+CAYAAAAcJRJHAAAAw3pUWHRSYXcgcHJvZmlsZSB0eXBlIGV4aWYAAHjabVBbEsMgCPznFD2CPFQ8jmmSmd6gxy8GzCRtd8YFWWcFYHu/dngMEApIrlpaKckgTRp1SzQ5+sGY5OADew8N73VYthDISmyR/aol3s86ngYeumX5YqTPEJa70CT89cuIPPDoaORrGLUwYnIBw6DHCKVpvY5wTjChfmCQ6L3tn3u17a3Z/mGijZGTMbN4AzwOA3dLsjGy2kPkarlEZXZiC/m3pwn4AACOWd0rh1XaAAABhGlDQ1BJQ0MgcHJvZmlsZQAAeJx9kT1Iw0AcxV9TiyKVgnYQcchQXbSLiuhWq1CECqFWaNXB5PoJTRqSFBdHwbXg4Mdi1cHFWVcHV0EQ/ABxdXFSdJES/5cUWsR4cNyPd/ced+8AoVFhqtkVA1TNMlKJuJjJrordrwigHyGMYVZmpj4nSUl4jq97+Ph6F+VZ3uf+HH25vMkAn0gcY7phEW8QT29aOud94jAryTnic+Jxgy5I/Mh1xeU3zkWHBZ4ZNtKpeeIwsVjsYKWDWclQiaeIIzlVo3wh43KO8xZntVJjrXvyFwbz2soy12kOI4FFLEGCCAU1lFGBhSitGikmUrQf9/APOX6JXAq5ymDkWEAVKmTHD/4Hv7s1C5MTblIwDgRebPtjBOjeBZp12/4+tu3mCeB/Bq60tr/aAGY+Sa+3tcgRENoGLq7bmrIHXO4Ag0+6bMiO5KcpFArA+xl9UxYYuAV619zeWvs4fQDS1FXyBjg4BEaLlL3u8e6ezt7+PdPq7wfzrHLanmOGMAAADXppVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+Cjx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IlhNUCBDb3JlIDQuNC4wLUV4aXYyIj4KIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+CiAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIgogICAgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIKICAgIHhtbG5zOkdJTVA9Imh0dHA6Ly93d3cuZ2ltcC5vcmcveG1wLyIKICAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIKICAgIHhtbG5zOnRpZmY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vdGlmZi8xLjAvIgogICAgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIgogICB4bXBNTTpEb2N1bWVudElEPSJnaW1wOmRvY2lkOmdpbXA6NDQ1YzllODAtNTUwMy00MjQzLTgxNWEtZmI2ZDhlMTE5MzA5IgogICB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjcwZTVjOTNhLWI5OTAtNDJhMC1iYmRlLTE0NTE0ZDhiZGQxNyIKICAgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOmJlNmYxYWYwLTFkZTAtNDNmMC1iNGUxLTYyODEyMjI3YTNiZiIKICAgR0lNUDpBUEk9IjIuMCIKICAgR0lNUDpQbGF0Zm9ybT0iTWFjIE9TIgogICBHSU1QOlRpbWVTdGFtcD0iMTY4NDQyNDcxNTUzMTkyNSIKICAgR0lNUDpWZXJzaW9uPSIyLjEwLjM0IgogICBkYzpGb3JtYXQ9ImltYWdlL3BuZyIKICAgdGlmZjpPcmllbnRhdGlvbj0iMSIKICAgeG1wOkNyZWF0b3JUb29sPSJHSU1QIDIuMTAiCiAgIHhtcDpNZXRhZGF0YURhdGU9IjIwMjM6MDU6MThUMTc6NDU6MTQrMDI6MDAiCiAgIHhtcDpNb2RpZnlEYXRlPSIyMDIzOjA1OjE4VDE3OjQ1OjE0KzAyOjAwIj4KICAgPHhtcE1NOkhpc3Rvcnk+CiAgICA8cmRmOlNlcT4KICAgICA8cmRmOmxpCiAgICAgIHN0RXZ0OmFjdGlvbj0ic2F2ZWQiCiAgICAgIHN0RXZ0OmNoYW5nZWQ9Ii8iCiAgICAgIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6Y2M0YWEzOWMtMmEzYi00MDkyLWI1MzQtYTZiZDczNGE4ZjE0IgogICAgICBzdEV2dDpzb2Z0d2FyZUFnZW50PSJHaW1wIDIuMTAgKE1hYyBPUykiCiAgICAgIHN0RXZ0OndoZW49IjIwMjMtMDUtMThUMTc6NDU6MTUrMDI6MDAiLz4KICAgIDwvcmRmOlNlcT4KICAgPC94bXBNTTpIaXN0b3J5PgogIDwvcmRmOkRlc2NyaXB0aW9uPgogPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgIAo8P3hwYWNrZXQgZW5kPSJ3Ij8+s+o9OQAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB+cFEg8tD06skb0AAA5LSURBVHja7d1vbBtpQsfx3zMz9thOHNeO08Zp2m7b3dO+6O5qYVWQFi0gVkJsiWdXWpCQeIfEiRN/7iQkkA6x/Fvew3ES3AmJNwikE6qariKOE+IQBxynXfYF6nWJaGjqxmnqjP9m4pnx84cXrU3a7d3ttk48SX8fydp006Tjsb+eZ8Z+ZgSIngLLy8tlABUAZQAlY8ysEKIAYN4YkwfgCiFcY4wLwL3/Y5EQIjLGRPe/7gG4Y4zpCCF8AC0ADQCb1Wp1O8n3X/ApQEfF1atXC8aYzxhjfkII8bwx5jyAc5ZlnbJtG47jwLZtCCFgWRaEEKM/P3wDAGPMx25KKRhjoLUe/VlKCaUUtNY1ADeEEGsAPjLGfBPAqud5HYZO9BhWVlbcwWBwSgjxQ8aYn7Es63XHcRbvB21c1xXpdBqu68K27QNZJqUUoihCHMeIoshIKYVSCkqpmlLqH4QQXzfGfCiEqFWr1YihEz3kvffeSyml5gG8LoT4Bdu2X3Mcx87lcnY+nxeO44y2xEljjIGUEr1ezwRBoJRSUin1z8aYvwHwT47jbF66dGnA0OlpjTtjjHlea/2rlmW9bdt2Np/PpwuFwmjofRgNh/6dTge9Xi9WSvWNMX8H4M+EENeXlpZChk5H2vLysm2MmRdCfFEI8fOO4xRnZ2etbDYLy7KO5H3WWqPf78P3fS2lbBljvqa1flcIsel5nmLodJQCdwB4AH7Ptu3nS6WSk8vl4DjOU7UelFIIggDNZlMqpf7bGPMOgCue50mGTofW1atX81rrPxBC/Fw2mz05OzsL13W5YgBEUQTf99Hv9zcAfE0I8c7S0lKXodOhcfnyZce27d8G8PmZmZnZY8eOIZVKccU8QhzH6HQ66Ha7TWPMl7XWf/jWW28NGDol2pUrVz4L4J3p6elKqVRCOp3mSvmEwbdaLfR6vU0Av+953l8wdEriMP0zxpivplKp1+bm5pDNZrlSHkO/30ej0cBgMPgWgF+qVqurDJ0SYXl5+bMAvnzs2DF7dnaWK2QMms0m2u22NMZ8rlqtfpWh0yQDTwP4kuM4v1ypVDhM34fh/ObmJqSUX7Ft+9cvXboUMXQ66Mgzxph/yWQyrywsLBzZ98EnTWuNer2OMAz/UwjxY9Vqtc/Q6UCsrKy4UspvTk1N/ej8/DxXyAG4c+cOgiD4D8dxfvyNN954YMvOl1jaj8gdKeXXc7ncoYt870y1w2Z+fh65XO5HpJRXV1ZWHvikkcOnJY2blPLXMpnMa0mNfBhxGIbY3d1FEASI43g0DB4Nd+9PWbVtG7lcDlNTU8jlcg9MZU1i7PV6/fUwDD8H4E85dKf92i+/aFnWt8+cOSOStk/ebrfR7XbR7/cRx/FoXvrej9k+HPDwRUFrPZxzDsdx4LoupqenUSqVEvcxXa01bt26pZVSr1ar1W8zdBqry5cvC9u2bywsLJxNynvkYRii0Wig2733yVHHcWBZ1hMdGBzOPhuedGJ6ehqzs7OYmZlJzGOxu7uLer1+q1wun3311Vc1h+40NrZtV13XTUTkSincuXMHzWYTqVQKruuObbg9HM7bto10Oo04jnHr1i1ks1lUKhXkcrmJ3/9cLodMJnPa9/0lAFd4MI7Gue/7x+VyeeLLEQQBrl+/jm63i1wuh1Qqta/71I7jIJvNQkqJtbU1bG1tJeLxmJ2dhTHmjzh0p3Hum5+1bXvtmWeemehy9Ho9rK+vI51OH9gppB4e1kdRhEKhgJMnT078oN3NmzdhjPlhbtFpXE/wn8xkMhNdBikl1tfXkclkJhL5cFifyWTQ6XQQBMHEH5dMJgOt9U8xdBrXE/zcpI8+b21tjc7qOmmu6+LmzZsPvF03Cfd3WwoMncZlcZLzyYUQ6Ha7iZnTPnyxkVJOdDkcx4ExZp6h07icm/TWS0qZuA+yTHqdaK0hhJAMncalM8mtlzEG+Xx+4lvQRw2dJ/3iB6DG0GlcoQ2GHyOdlBMnTmAwGCRifURRhPn5+YkdFByK4xjGmIih09j2ScMwnOgyZLNZzM3NTXw54jiGbdsolUoTf1zCMLz3UV8+RWlcQ2fHcdBqtSa+VT9+/Dj6/T6UUge+DqIoQjqdxnPPPTfx+fd7HwuGTmMzNTWFTmfi1xPE3NwcTp8+PQpvvw+IGWMwGAwQhiHK5TLOnz+fiJNsdDodTE1NAeA0VRoj13UhpYTv+5j0eeFmZmYwMzODRqOBVquFfr+PVCr1xBNa9sattR4dEygUCqhUKhPfJx/yfR/DM+zu7u4ydBqvcrmMWq2GfD6fiPPDzc3Njfbbt7a2EIYhwjAcTUoZRj98W27v23N7Tz6x97LJUsrRVNW5uTkUi8VEPQZxHKPX6+HixYtYX1/nFp3Gz3EcVCoV1Ot1nDp1KjFbuEwmgzNnzgC4N7Ot2+1iZ2cHURSN5pkDjz7xxHC2WiaTQS6XQ6FQQFKv3qqUwubmJl566aUHrnjD0GlfoioWi6jVajh9+nTiTgpp2zaKxeJoS/zwlnuvR23pk0prjdu3b+P8+fMfmxvP0GlfFAoFAECtVsPi4mJituyPsjfiw3opZqXUKPJKpfKx7/OoO+1r7KVSCbVaDVEUcYXskyiKUKvV8Oyzzz4ycm7Rad/l83k4joN6vY5SqTTa0tN4tNtttNttvPjii9933TJ02nfZbBaLi4uo1+vY2dnB8ePHeeXUJzQYDLC1tQUhBF555ZUfeB07hk4HIpVK4cyZM2i1WqjVag8cDKNPvxVvNps4d+4cFhcXP9FxBYZOB6pYLGJ6ehrb29tYW1tDuVxO1NlTk6zX62F7exvFYhEXL178VFejZeg0ka17pVJBFEXwfR++76NcLmNqaorXZ3uI1hpBEGB7exuFQgEvv/wy8vn8p/49DJ0mxnVdLCwsIAxDNJtNNBoNHDt2DPl8/qnfh5dSotvtot1uo1gsPnbgDJ0SI5PJYGFhAVpr+L6Per0+mubpum6i34MfJ6UUoihCs9kEcO/jxBcuXBjL/WfolBiWZWFubm40G8z3fURRBMdxUCwWJ3p21/2MOwxDtFotaK0xMzODF154Ablcbqy7MQydEkcIgXQ6jUqlMpoh1m630Wg0YFkWpqenUSgUYFnWofsk23DWW7vdHp0OulQq4cKFC8jlcvv2QuYsLy9bxhheyIGehAYg9uNSw5ZlwXVdnDhxAsYYSCkRRRG2trYQxzEsy0IqlRpd6TQpp3seRi2lRL/fRxAEkFLCGIOZmRmcPHlyNMPvIA5AOgD+RAjxs3yu0hM63mw2D+wMM8NZZcNpo7u7uzDGQAiBVCoF27aRSqWQTqfhui5c1923oLTWiKJodJNSjmbE5fN5FItFnDp1arQsk3ghcgDMnT179pkkXDOLaFzhKaVGB7d2dnbg+z52d3ehtR6dfGI49N97vfO9Xw/noO/9ejj0Ht4sy0IulxtdUTWTyYyCHl7zbT9GOo+1j+667uiUM0RHdb9/+CIwGAwgpcRgMBhtebXWD8S8N/rhddQtyxqNFBzHGZ2xZvhC8L2G70nAg3H0VNgbbzqdHtvZb5IS8g881sGnANHRx9CJGDoRMXQiYuhExNCJiKETEUMnIoZORAydiKETEUMnIoZORAydiBg6ETF0ImLoRMTQiRg6ETF0ImLoRMTQiYihExFDJyKGTkQMnYihcxUQMXQiYuhExNCJiKETEUMnIoZORAydiBg6EUMnIoZORAydiBg6ETF0ImLoRMTQiYihEzF0ImLoRMTQiYihExFDJyKGTkQMnYgYOhFDJyKGTkQMnYgYOhExdCJi6ETE0ImIoRMRQydi6ETE0ImIoRMRQycihk5EDJ2IGDoRMXQihk5EDJ2IGDoRMXQiYuhExNCJiKETEUMnYuhExNCJiKETEUMnIoZORAydiBg6ETF0ImLoRAydiBg6ETF0ImLoRMTQiYihExFDJyKGTsTQiYihExFDJyKGTkQMnYgYOhExdCJi6EQMnYgYOhExdCJi6ETE0ImIoRMRQycihk5EDJ2IoRMRQycihk5EiQrdGMO1QMQtOhEdVkopaK1jSwjBtUF0RMVxDCGEz6E70RHW7/dhjPkuh+5ER1QQBOj3+13P8z7k0J3oiLp9+zYA/DnAg3FER5KUEnfv3oVlWX8F8O01oiNpdXUVUsq/XFpaus4tOtER1Gw2cffuXV8I8ZvD/8fQiY6QMAxx7do1DeCnq9Vqm6ETHTFRFOGDDz4wSqkvVKvVD/Z+j6ETHZHI33//fTMYDH7XGPOlh7/vcBURHW6tVgvXrl2DlPJXtNZfefPNNw1DJzoihBBYXV3FxsZGaIypep73je/1dxk60SHU6XTw0UcfYXd391tCiF/0PG/9+/19hk50iEgpsba2ho2NDQghfsfzvHc/yc8xdKJDYmNjAzdu3IDWegXAb1Sr1f/5pD/L0IkSTGuNZrOJ1dVVxHH8jwC+UK1W/+vT/h6GTpQwQgiEYYhGo4EbN24oY8y/A/itarX6b4/7Oxk6UUIopRAEAdbW1tDpdHyt9d9blvV5IYS/tLT0RJNSGDrRhOOOogjr6+vY3t4OlFIfAvgigO94nheO699h6EQHxBgDYwyUUmg0GtjY2NBRFMVSylvGmHeFEMtxHHfefvvtsU8pZehE+xQ1cO+cbe12G77vIwgCE8exiuO4LoT4a2PM3wK443ne3f1eHoZO9ISiKEIQBNjZ2UEQBIiiCFEUIY5jSCk7AP5VCPGeMeY7ANY9z9s+6GV0hBDwfR+DwYCPGNF9WuvRzRgDrTWUUpBSQkqJwWAw+q/W2gD4XwAfCiHeN8Z8F8AtIUTN8zw/CffHAfCNRqPRbDQafHSJ/l8fQBfAzp7h+I4QYksIsaW17gEIhBAtz/PaSb8z/wcoOTAJmNkSXQAAAABJRU5ErkJggg==) no-repeat bottom left;
  background-size: 100% 100%;
}
.prodottiprint-formatoforme-box .bobroll .preview-pro {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  z-index: 1;
}
.prodottiprint-formatoforme-box .bobroll .preview-pro.fronte_retro .sticker-container.dir180 > div {
  flex-direction: row-reverse;
}
.prodottiprint-formatoforme-box .bobroll .sticker-wrapper {
  left: 0;
  bottom: 0;
  padding: 5%;
  position: absolute;
  height: 75% !important;
  width: 65.4189944134% !important;
}
.prodottiprint-formatoforme-box .bobroll .sticker-container.alignsotto {
  display: flex;
  align-items: flex-end;
}
.prodottiprint-formatoforme-box .bobroll .sticker-container.alignsopra {
  display: flex;
  align-items: flex-start;
}
.prodottiprint-formatoforme-box .bobroll .sticker-container.aligncentro {
  display: flex;
  align-items: center;
}
.prodottiprint-formatoforme-box .bobroll .sticker-container div {
  transition: all 0.5s ease-in-out;
}
.prodottiprint-formatoforme-box .bobroll .forefront {
  display: none;
}
.prodottiprint-formatoforme-box .rul.siderul {
  position: absolute;
  bottom: 0;
  left: -15px;
  width: 10px;
  height: 103px;
}
.prodottiprint-formatoforme-box .rul.siderul > div {
  left: -2.5rem;
}
.prodottiprint-formatoforme-box .sticker-container.alignsotto .stk {
  align-self: flex-end;
  align-items: flex-end;
}
.prodottiprint-formatoforme-box .sticker-container.alignsopra .stk {
  align-self: flex-start;
  align-items: flex-start;
}
.prodottiprint-formatoforme-box .sticker-container.aligncentro .stk {
  align-self: center;
  align-items: center;
}
.prodottiprint-formatoforme-box .sticker-wrapper {
  padding: 0;
  height: 75.2%;
  width: 80%;
}
.prodottiprint-formatoforme-box .sideinterno .sticker-wrapper {
  top: 0.5%;
  width: 90%;
  height: 83% !important;
}
.prodottiprint-formatoforme-box .no-rulers .rul {
  display: none !important;
}
.prodottiprint-formatoforme-box .sticker-container.dir0 > div .logo {
  transform: rotate(270deg);
}
.prodottiprint-formatoforme-box .sticker-container.dir90 > div .logo {
  transform: rotate(90deg);
}
.prodottiprint-formatoforme-box .sticker-container.dir180 > div .logo {
  transform: rotate(180deg);
  justify-content: flex-end;
}
.prodottiprint-formatoforme-box .sticker-container.dir270 > div .logo {
  transform: rotate(0deg);
}
.prodottiprint-formatoforme-box .bobroll.sideinterno {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPoAAAC+CAYAAAAcJRJHAAAAw3pUWHRSYXcgcHJvZmlsZSB0eXBlIGV4aWYAAHjabVDBDcMgDPwzRUfAnAEzDmmI1A06fg2YKGl7EmfjQ4dt196vwz06ArHjmCWVlLyCC5dQNRE/UQeT58EDRzWN7nW3NROClqAR8yrJ3q86nQYzVM3ixUieJmx3obD5y5dRmAG9o57vZlTMCGEKZAbVRkhF8nWEc4IFmcd1Yrm3/XPPur096j8IoYHglQGeDaAfOFRNojJB9CEha86jwlhmupB/e1pwHwBsWdxSRNb4AAABhGlDQ1BJQ0MgcHJvZmlsZQAAeJx9kT1Iw0AcxV9TiyKVgnYQcchQXbSLiuhWq1CECqFWaNXB5PoJTRqSFBdHwbXg4Mdi1cHFWVcHV0EQ/ABxdXFSdJES/5cUWsR4cNyPd/ced+8AoVFhqtkVA1TNMlKJuJjJrordrwigHyGMYVZmpj4nSUl4jq97+Ph6F+VZ3uf+HH25vMkAn0gcY7phEW8QT29aOud94jAryTnic+Jxgy5I/Mh1xeU3zkWHBZ4ZNtKpeeIwsVjsYKWDWclQiaeIIzlVo3wh43KO8xZntVJjrXvyFwbz2soy12kOI4FFLEGCCAU1lFGBhSitGikmUrQf9/APOX6JXAq5ymDkWEAVKmTHD/4Hv7s1C5MTblIwDgRebPtjBOjeBZp12/4+tu3mCeB/Bq60tr/aAGY+Sa+3tcgRENoGLq7bmrIHXO4Ag0+6bMiO5KcpFArA+xl9UxYYuAV619zeWvs4fQDS1FXyBjg4BEaLlL3u8e6ezt7+PdPq7wfzrHLanmOGMAAADXppVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+Cjx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IlhNUCBDb3JlIDQuNC4wLUV4aXYyIj4KIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+CiAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIgogICAgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIKICAgIHhtbG5zOkdJTVA9Imh0dHA6Ly93d3cuZ2ltcC5vcmcveG1wLyIKICAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIKICAgIHhtbG5zOnRpZmY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vdGlmZi8xLjAvIgogICAgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIgogICB4bXBNTTpEb2N1bWVudElEPSJnaW1wOmRvY2lkOmdpbXA6N2Y1MzA4ZjgtY2VhNC00Yjg4LWIzNWItYmM5YzJkY2U2YjgxIgogICB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjUxYzgxM2ZjLWNmZmQtNDIxMi1iYWFiLTdiOGVjZmQzZDE5MyIKICAgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOjFiNjg1OWE0LWExMGItNGU2Ni04ZTA0LWY1ZmFlMzRkYzExZSIKICAgR0lNUDpBUEk9IjIuMCIKICAgR0lNUDpQbGF0Zm9ybT0iTWFjIE9TIgogICBHSU1QOlRpbWVTdGFtcD0iMTY4NDQyNDc0MTI4NDIxMyIKICAgR0lNUDpWZXJzaW9uPSIyLjEwLjM0IgogICBkYzpGb3JtYXQ9ImltYWdlL3BuZyIKICAgdGlmZjpPcmllbnRhdGlvbj0iMSIKICAgeG1wOkNyZWF0b3JUb29sPSJHSU1QIDIuMTAiCiAgIHhtcDpNZXRhZGF0YURhdGU9IjIwMjM6MDU6MThUMTc6NDU6NDArMDI6MDAiCiAgIHhtcDpNb2RpZnlEYXRlPSIyMDIzOjA1OjE4VDE3OjQ1OjQwKzAyOjAwIj4KICAgPHhtcE1NOkhpc3Rvcnk+CiAgICA8cmRmOlNlcT4KICAgICA8cmRmOmxpCiAgICAgIHN0RXZ0OmFjdGlvbj0ic2F2ZWQiCiAgICAgIHN0RXZ0OmNoYW5nZWQ9Ii8iCiAgICAgIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6ZWJiN2IzMTktNWZiZi00NThiLWI1ZjMtMDJkZTliMzczMjIxIgogICAgICBzdEV2dDpzb2Z0d2FyZUFnZW50PSJHaW1wIDIuMTAgKE1hYyBPUykiCiAgICAgIHN0RXZ0OndoZW49IjIwMjMtMDUtMThUMTc6NDU6NDErMDI6MDAiLz4KICAgIDwvcmRmOlNlcT4KICAgPC94bXBNTTpIaXN0b3J5PgogIDwvcmRmOkRlc2NyaXB0aW9uPgogPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgIAo8P3hwYWNrZXQgZW5kPSJ3Ij8+FUrCHQAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB+cFEg8tKZyhFEAAABGVSURBVHja7d1bbBzXfQbw78zM3rlL7ZLLi0TSsi6+inRtCAxQB2jSFHABmbsSUCQtkKYoem9QwEVf+lLkITGKFgXSS1q0AfpUFGmRGAbXsqCkD06COjbsFrJEy5Yp8X5dkcu9c2Zn58zpg7VbypZtKdrLUPx+AAHKkujR2fnmf2bmXASIDoBMJtMPYBhAP4CEUqpPCNELYEgpFQUQEEIElFIBAIFbf60mhKgppWq3vi8D2FRKFYUQOQB5AFsANlKp1LaX//0ik8k8C+Ahngr0gNAAjAE4rpQ6DuCYpmmjuq7DMAzoug4hBDRNgxCi+euPfgGAUupjX1JKKKXgum7z147jQEoJ13VXAMwJIeYBXFNK/RjAbDqdLnoh6P8RiUS+EgwGeYqQ5zVCKKWEaZqo1WpwXReapjWDbBgGAoEA/H4/AoEAdF3vyLFJKVGr1WDbNmq1mnIcR0gpIaVckVL+SAjxQ6XUJSHESiqVqnU86I899thXhoaGeBaRZymlYNs2CoUCNjc3UalUoOs6QqEQotEoDMNoXgS8eOyO46BcLqtqtSqllI6U8idKqe8BeM0wjI0zZ87U23kMBk8h8irXdWGaJlZXV5HL5QAAkUgEvb29iMfjng32nXohPp8PiURCJBIJQylluK77XLFYfK5cLttSSjOTybwE4DtCiPenpqYsVnR64Ct3vV7H0tIStre34bou+vr6EAqFoGnaA31By+VyruM4eaXU913XfVEIsZFOp2VLKrpSSvD0Ii8EPJfLYXFxEZZlIR6PY2hoCIbx4Hc6NU1DJBJBJBLRpJR91Wr1D3d2dn5XSvnB9PT0NwBMp9Nph1132reklFhcXMTNmzehaRr6+voQCAQObHvouo5YLIZYLGbUarUnc7ncD0zTXMtkMt8XQnxjamqqxKDTvqrgKysrWFlZQTAYxODgIHw+Hxtmj0AggMOHD8O27SPFYvGFUqn0tenp6X90Xfeb586du6eHdxqbkzptc3MTb7zxBrLZLIaGhjAwMMCQfwq/349kMonR0dFENBr9C03Tlqanp/+AFZ08yTRNzM7OolKpIJlMIhQKsVHuMfCDg4OIxWLDW1tb/5zJZL4K4HdSqdTs3VR0PoyjttvY2MBbb70FpRTGxsYY8vsQCoUwNjaGeDz+eSHE1Uwm83vsulPX78WvX7+Oubk5jIyMoK+vj43SIolEAiMjI4ZhGN/NZDL/8uqrrwYYdOo413Vx6dIlbG9vY3R0FH6/n43Shu786OgoAoHA7zuO87NMJhNi0KmjIb98+TKklBgZGXlgB7t4gaZpGBkZQU9PzzMAXrtw4UKAQaeOdNdnZmZQr9ex30Zc7p2ptt8MDQ0hHA5/znGcVy5cuHDbg3Y+daeWW19fh2maOHz4sGfDDACWZWF3dxfVahW2bTd7Ig2NKau6riMcDiMSiSAcDt82ldWLYV9fX/8Vy7L+GMDfM+jUFpVKBfPz8xgbG/NcGAqFAkqlEkzThG3bzXnpe4fZfvSYXdeF67rI5/PNsfeNabA9PT1IJBKeGqYrhMDw8LBYXl7+diaTeSuVSr3JoFPLK+W7776LwcFBz9yTW5aFra0tlEofjhw1DAOapiEcDt/Tz9F1vTmopzHtNJfLIZvNoqenB319fYjFYp65Zx8YGNDW19f/8/XXX3/42WefdRl0apmdnR0opTzxjlxKic3NTezs7MDn8yEQCLSsh9Hozuu6Dr/fD9u2sby8jFAohOHh4Xu+iLRDOBxGMBgcy+VyUwCmOWCGWnbyz83Nob+/v+vHUq1W8f7776NUKiEcDsPn87X1NsIwDIRCITiOg/n5eWSzWU98Jn19fVBKfYtdd2oZ0zRhWRa6vSRZuVzG0tIS/H5/x5aQ2ht4Xdexvb2Ner2OI0eOdPU5RSgUgmEYp86fP/8MX69RS5RKpa532R3HwdLSEoLBYMdDvrdnEwwGUSwWUa1Wu/65BINBuK77JQadWlbRu/30OZvNNld17bZAIIDFxcXbXtd1w63bll6tcRUiuh+WZXV1qqkQAqVSyTPTXRuZchynq8dhGAaUUkOs6NSSk9o0za5XL8dxPFe0ut0mrutCCOEw6NSyytHN6qWUQjQa7XoFvVPXudsXPwArDDq1TGMYabcMDg6iXq97oi1qtRqGhoa69lBw72eilLL5Hp1a1n23LKurxxAKhZBMJrt+HLZtQ9d1JBKJrn8ulmVB0zTOXqPWdZ2DwSDy+XzXq/rAwABM04SUsuNtUKvV4Pf7cfLkya4PA258FkopBp1ap7+/H8Vi1/cTRDKZxNjYWDN47X4g1th0wrIs9Pf34/jx454Y618sFhGJRABwZBy1UCwWQ61WQy6X6/qSUbfWRsfW1hby+TxM04TP5/uwG9uCEDZ2VG08E+jt7cXw8HDX78kbcrkcEokE/H4/dnd3GXRqbWU7ceIE3n77bUSjUU8sHZVMJpv37dlsFpZlwbKs5qSURugbr+X2vp7bu/jE3m2THcdpTlVNJpOIx+Oe+hxs20a5XMbk5CSWlpZY0an1AoEAJiYmcPnyZYyOjnqmwgWDQTz00EMAPpzZViqVUKlUUKvVGnubA7jzwhON2WrBYBDhcBi9vb2e3b1VSomNjQ089dRTt+14w6BTW7rNx48fx9zcHMbGxjy3Xpyu64jH481K/NHKvdedKr1Xua6L1dVVHD9+/GNz4xl0aovGMlLz8/MYGRnxTGW/k70h3q/DwaWUzZAPDw9/7PcZdGpr2HVdx+zsLIaHhw/05ontVKvVsLGxgZMnT37iYpwGOGCG2mhwcBDBYBBXrlxBPB5Hb28vG6WFCoUCCoUCJiYmPrVt+R6d2q63txenT59GtVrF2tqaZ4ap7mf1eh2rq6uoVqs4ffr0Z15A2XWnjgiFQpicnMTq6irm5+dvexhG917Fd3Z2cOzYMYyMjNzVcwVWdOoYIQRGR0cxOTkJIQTm5+ebq7PSZyuXy1hYWAAATE5OYnR09K4fHrKiU1eq+/j4eHMN+IWFBfT39yMSiXDrpo9wXRfVahXb29vo7e3F008/jWg0es8/x2hcaYk6raenBxMTEyiVSlhcXMTi4iIOHTqEaDTqmZViusVxHJRKJRQKBcTj8Z874Kzo5BmxWAwTExOQUmJhYaG5XHIikUAgEPD0O/hWklKiVqthZ2cHwIeThE6dOtWSfz+DTp6h6zpOnDiBY8eOwTRNzM/PY3t7G5qmIR6Pd3V113aG27Is5PN5uK6LWCyG8fFxhMPhlt7GMOjkOZqmIRKJYHx8HFJKmKaJlZUVrK2tNbv8vb290DRt3912Nma9FQqF5nLQiUQCp06dQjgcbtuFjANmyPNVvqenB48//nhzWmipVEI2m0WxWIQQAj6fD+FwuBkUr4S/sUebaZqoVqtwHAdKKcRiMRw5cqQ5w68TDyBZ0WlfVfrG1NBkMtlcWMK2beTzeeTzeZTLZWia1twU0e/3IxAIIBAItC1QruuiVqs1vxzHac6Ii0ajiMfjGB0dbR5LNy5EDDrtW41dUYLBIGKxGI4ePdpc7aVxAbAsC5VKBblcDru7u3Bdt7n4RKPrv3e/873fN+ag7/2+0fVufDV2Zm3sqBoMBpuBbuz59tEZcd3AoNMDoxEon8/3sddzjfA2uv+O46Berzcrr+u6t4V5b+gb+6jv7SkYhtFcsWbv//uTjolBJ+rgRUAIAb/f37LVb7wS5M+87eEpQHQAnm+wCYgYdCJi0IlovwSdA2aIWNGJiEEnIgadiBh0IupQ0PkwjogVnYgYdCJi0ImIQSciBp2IGHQiYtCJiEEnOlBB54AZIlZ0ImLQiYhBJyIGnYgYdCJi0ImIQSciBp3oQAWdA2aIWNGJiEEnov0R9Mbe0UTEik5EDDoRMehExKATEYNORPcZdD5yJ2JFJyIGnYgYdCJi0ImIQSciBp2IGHQiYtCJDlTQOWCGiBWdiBh0ImLQiYhBJyIGnYgYdCJi0Ino/4PO9+hErOhExKATEYNORAw6ETHoRNSqoPOpO9FBqOjcTZWIXXciYtCJiEEnIgadiBh0ImLQiYhBJ6Jm0PkSnYgVnYgYdCJi0ImIQSeiTgWdk1qIWNGJiEEnov0QdPbbiVjRiYhBJyIGnYgYdCJi0ImIQSciBp2IGHSiAxV0DpghYkUnIgadiBh0ImLQiYhBJyIGnYgYdCJi0IkOVNA5YIbowaZY0YkOSEVXbAYi3qMTEe/RiYgVnYhY0YmoM0Hnwzi6b9y/j113esAppSCEgFKsGV78bFzXdbibKrWmYmgaXNdlQ3gw6ABsVnRqCV3XIaVkQ3iMlBJCiF0GnVrC7/fDtm02hMc4jgOl1A6DTi0Ler1eZ0N4zK3PZNsQQuiXL19mi9B9SyQSbASPqdVq0DRtxUilUl9ic9D9mp6e/gXLsi6xJbzDdV3Yto10Or3Crju1yg3LsviKzUOKxSKUUpcBvkenFkmn0xXXdRer1SobwyPy+Tw0Tfsxg06tdv7mzZtsBW9V9NcYdGq1i4VCga3gAUopVKtVCCEuMejUUpqm/W+lUlEcIeeNbnu9Xp9NpVLLDDq11NTU1KaU8s1sNsvG6LLl5WUIIf6ueRFmk1ArCSG+ubKywqfvXeS6LsrlsgRwgUGndt0bvm6aZp3DYbtnbW0NUsqfpVKpRQad2iKdTpeUUn917do1lvQuVfOVlRWplPrTvf+dQad2+E6hUKibpsmW6LCtrS3Ytr1gGMYVBp3aKpVKZZVSL87MzPBevYMcx8Hs7GwdQOrMmTN1Bp064W92d3ez+XyeLdEhi4uLkFJejMVi1z76eww6tauq7wohvnb16lXJ6avtVy6Xsba2VlZK/cYXvvAFxaBTx/j9/v+SUv7gypUr7MK3Ub1exzvvvCOVUr+WTqfvONmAQae2ee655xSA3yyXy+8uLy+zQdpkZmYGUsrvplKpH33Sn2HQqd1d+LqU8osLCwvlzc1NNkiLzc7OolQq/beU8k8+7c8x6NR2586d21ZKff7atWsWw946169fx/r6+v8IIX713LlzkkGnrkun01cAPPvBBx+YDHtrQr66uvqmEOKXp6amPnMRAC7oTh31yiuvPKmU+snIyEjfiRMn2CD3yHVdzMzMIJfLvWoYxpeff/753bv5eww6dSPsA0qplw8dOvSL4+Pj0HWdjXIXdnd3ceXKFViW9ddCiD+fmpq661cZDDp1xcWLFw3btv/W5/N9/dFHH0V/fz8b5RMopbC+vo4bN27sKqW+mkqlXr7Xn8GgU1dlMpkvAvjXZDL58MmTJ+H3+9kojXAKgXK5jPfeew/VavWiUurXz549W/y5fhabk7ptenraEEL8E4Dfevjhh/2HDx+Gz+c70G1imiYWFxeRzWZXlVIvpNPpl+7rosHTjLzi5Zdf7tc07Xuapv3S0aNHfcPDwweqwiulYNs25ubmsLW1lVdKfRvAX6ZSKee+ewc8vchjXXmhlBoF8G+6rn8uGo0GHnnkEYRCIWjag/k2WEqJQqGAGzduwLKsolLqH5RSL6bTaatltwE8tcijgdeEEP1KqT8D8Ed+vz8cj8f1sbGxByL0ruuiUChgeXkZlUql5jjOslLqBSHET1OpVKXl9/s8pcjrzp8/H5BSHhVC/LZS6ut+vz8UDof1gYEBDAwMwDAMCOHtU1kpBcuysLm5iVwup0zTlFLKawC+BeCnrutunj17tm0zfxh02ldeeukl3TCMo0KIJ5RSXxZCnA0EAj2RSERFIhERi8UQjUYRDAa7epyVSgXlchnlctmtVqva7u4ubNueFUL8u1LqhwDm0+n0VqeOh0GnfW96evoRIcQTAJ5QSj0G4BlN0570+XxofBmGAZ/PByEEdF2HEAKapt3TYB2lFFzX/dhXvV5HvV6H4zio1+uo1WoVAG8IIa4CuC6EeB/A1VQq1bVtbBh0emDv8ZVSI5qmxVzXDd8614WmaQNKqcMAEgBiSqkeIcTd3vA7AIq3vtSt8BeEEOsAbiqlygDynazUd+v/ADGRgv8Lgfr6AAAAAElFTkSuQmCC) no-repeat bottom left;
  background-size: 100% 100%;
}
.prodottiprint-formatoforme-box .bobroll.sideinterno .forefront {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 9999;
}
.prodottiprint-formatoforme-box .preview .content {
  display: flex;
  justify-content: center;
}
.prodottiprint-formatoforme-box .sub-type-verso .v-auto-align-item {
  height: auto;
}
.prodottiprint-formatoforme-box .sub-type-verso label {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.prodottiprint-formatoforme-box .sub-type-avvolgimento .v-auto-align-item {
  height: auto;
}
.prodottiprint-formatoforme-box .sub-type-avvolgimento .sticker-container .stk > div .prodottiprint-formatoforme-box .sub-type-verso .sticker-container .stk > div {
  border-width: 1px;
  border-radius: 2px;
}
.prodottiprint-formatoforme-box .sub-type-avvolgimento label {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.prodottiprint-formatoforme-box .logo {
  background-image: url(https://www.vg7printdemo.it/cms/images/preview_placeholder.png) !important;
  background-size: contain !important;
}
.prodottiprint-formatoforme-box .svg-changer {
  height: 6.25rem;
}

.label-full-preview {
  position: relative;
  right: 0;
  width: 100%;
}

.prodottiprint-valuesformato .etichette-formgroup .input-group-prepend {
  border: 2px solid #F2F2F2;
  border-right: 0;
  border-radius: 0.25rem 0 0 0.25rem;
}
.prodottiprint-valuesformato .etichette-formgroup .input-group-append {
  border: 2px solid #F2F2F2;
  border-left: 0;
  border-radius: 0 0.25rem 0.25rem 0;
  background-color: #E6E6E6;
}
.prodottiprint-valuesformato .etichette-formgroup .input-group-append .input-group-text {
  background-color: #F7F7F7;
}
.prodottiprint-valuesformato .etichette-formgroup .form-control {
  border-left: 0;
}
.prodottiprint-valuesformato .etichette-formgroup .no-border-x-is-valid.is-valid,
.prodottiprint-valuesformato .etichette-formgroup .no-border-x-is-valid.is-invalid {
  border-left: 0;
  border-right: 0;
}
.prodottiprint-valuesformato .valid-input.etichette-formgroup .input-group-prepend,
.prodottiprint-valuesformato .valid-input.etichette-formgroup .input-group-append {
  border-color: #67C23A;
}
.prodottiprint-valuesformato .valid-input.false.etichette-formgroup .input-group-prepend,
.prodottiprint-valuesformato .valid-input.false.etichette-formgroup .input-group-append {
  border-color: #F56C6C;
}

.prodottiprint-inputcontrol-content-input .hide-disabled-element .prodottiprint-radiobutton-disabled {
  display: none;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  overflow-x: clip;
  background-color: #FDFDFD;
  margin-bottom: 0 !important;
}
body ::-moz-selection {
  background: rgba(28, 28, 27, 0.15);
}
body ::selection {
  background: rgba(28, 28, 27, 0.15);
}
body h1, body .h1,
body h2,
body .h2,
body h3,
body .h3,
body h4,
body .h4,
body h5,
body .h5,
body h6,
body .h6 {
  font-weight: 700;
}
body p {
  line-height: 1.25rem;
}
body strong {
  font-weight: 700;
}

.shadow {
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.08) !important;
}

#overlay {
  z-index: 1021;
}
@media (max-width: 1200px) {
  #overlay {
    display: none !important;
  }
}

.navbar-twill,
.alert {
  z-index: 1022;
}

.btn {
  border-radius: 50rem;
}
.btn:active {
  color: #fff !important;
}
.btn:focus-visible {
  box-shadow: none;
}

.btn-primary {
  color: #fff;
  border: 0;
  background-color: #1C1C1B;
  transition: 0.2s;
}
.btn-primary:hover {
  color: #fff;
  background-color: #5C5C59;
}
.btn-primary:active, .btn-primary:focus-visible {
  color: #fff !important;
}

@media (min-width: 576px) {
  .breadcrumb {
    align-items: center;
  }
}
.breadcrumb .breadcrumb-item {
  display: flex;
  align-items: center;
  padding-left: 0.5rem;
}
.breadcrumb .breadcrumb-item a {
  color: #395357;
  font-size: 14px;
  font-weight: 500;
  padding-left: 0;
}
@media (max-width: 576px) {
  .breadcrumb .breadcrumb-item a {
    font-size: 12px;
  }
}
.breadcrumb .breadcrumb-item a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.breadcrumb .breadcrumb-item::before {
  content: "\f105";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 14px;
}
.breadcrumb .breadcrumb-item:first-child::before {
  content: "";
}
.breadcrumb .active {
  color: #000;
  font-size: 14px;
  display: flex;
  padding-left: 0.5rem;
}
@media (max-width: 576px) {
  .breadcrumb .active {
    font-size: 12px;
    align-items: center;
  }
}
.breadcrumb .active::before {
  content: "\f105";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 14px;
  display: flex;
}

.carousel-catalog-list img,
.carousel-product-list img,
.catalog-list-items img {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

.slider-container .carousel .carousel-cell picture {
  display: block !important;
}
@media (min-width: 992px) and (max-width: 1400px) {
  .slider-container .carousel .slider-content {
    left: 55%;
  }
}
@media (min-width: 992px) {
  .slider-container .carousel .slider-content .slider-content__text__item {
    min-width: 28rem;
  }
}
.slider-container .carousel .slider-content .slider-content__text__item h2, .slider-container .carousel .slider-content .slider-content__text__item .h2 {
  color: #1E1A34;
  font-weight: 700;
}
@media (min-width: 992px) {
  .slider-container .carousel .slider-content .slider-content__text__item h2, .slider-container .carousel .slider-content .slider-content__text__item .h2 {
    font-size: 48px;
  }
}
.slider-container .carousel .slider-content .slider-content__text__item p {
  color: #395357;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
@media (min-width: 1200px) {
  .slider-container .carousel .slider-content .slider-content__text__item p {
    padding-right: 3rem;
  }
}
@media (min-width: 992px) {
  .slider-container .carousel .slider-content .slider-content__text__item p {
    font-size: 20px;
    line-height: 1.5rem;
  }
}
.slider-container .carousel .slider-content .slider-content__text__item .btn-primary {
  color: #fff;
  font-weight: 500;
  border: 0;
  padding: 0.25rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
@media (min-width: 576px) {
  .slider-container .carousel .slider-content .slider-content__text__item .btn-primary {
    min-height: unset;
    padding: 0.15rem 2.5rem;
  }
}
.slider-container .carousel .slider-content .slider-content__text__item .btn-primary:hover {
  color: #fff;
  background-color: #5C5C59;
}
.slider-container .carousel .slider-content .slider-content__text__item .btn-primary:active, .slider-container .carousel .slider-content .slider-content__text__item .btn-primary:focus-visible {
  color: #fff !important;
}
.slider-container .carousel .flickity-button {
  width: 50px;
  height: 50px;
  border: 1px solid #D0D0D0;
  background-color: #F7F7F7;
  transition: 0.2s;
}
.slider-container .carousel .flickity-button:focus {
  box-shadow: none;
}
.slider-container .carousel .flickity-button:hover {
  border-color: #1E1A34;
  background-color: #1E1A34;
}
.slider-container .carousel .flickity-button:hover .flickity-button-icon {
  color: #fff;
}
@media (max-width: 992px) {
  .slider-container .carousel .flickity-button {
    display: none;
  }
}
.slider-container .carousel .flickity-button .flickity-button-icon {
  height: 32%;
  top: 36%;
}
.slider-container .carousel .flickity-prev-next-button.previous {
  left: 30px;
}
.slider-container .carousel .flickity-prev-next-button.next {
  right: 30px;
}
@media (max-width: 992px) {
  .slider-container .carousel .flickity-page-dots {
    display: none;
  }
}
@media (min-width: 992px) {
  .slider-container .carousel .flickity-page-dots {
    bottom: 30px;
  }
}
.slider-container .carousel .flickity-page-dots .flickity-page-dot {
  width: 12px;
  height: 12px;
  border: 0.5px solid #1E1A34;
  background-color: transparent;
  margin: 0 5px;
}
.slider-container .carousel .flickity-page-dots .flickity-page-dot:focus {
  box-shadow: none;
}
.slider-container .carousel .flickity-page-dots .flickity-page-dot:only-child {
  display: none;
}
.slider-container .carousel .flickity-page-dots .is-selected {
  background-color: #1E1A34;
}

.block-catalogs_group .row .col,
.sublists .row .col {
  padding: 0.5rem;
  padding-bottom: 1rem;
}
.block-catalogs_group .row .col .card,
.sublists .row .col .card {
  border: 0;
  border-bottom: 2px solid #F4F4EC;
  border-radius: 0.5rem 0.5rem 0 0;
  box-shadow: none;
  transition: 0.2s;
}
@media (max-width: 576px) {
  .block-catalogs_group .row .col .card,
  .sublists .row .col .card {
    padding: 1.5rem;
  }
}
.block-catalogs_group .row .col .card img,
.sublists .row .col .card img {
  border-radius: 0.5rem 0.5rem 0 0;
}
.block-catalogs_group .row .col .card .badge-section,
.sublists .row .col .card .badge-section {
  padding: 0.75rem;
}
.block-catalogs_group .row .col .card .badge-section .badge,
.sublists .row .col .card .badge-section .badge {
  border-radius: 50rem;
  padding: 0.35rem 0.75rem;
}
.block-catalogs_group .row .col .card .card-body,
.sublists .row .col .card .card-body {
  padding: 1rem;
  text-align: center;
}
.block-catalogs_group .row .col .card .card-body .card-title,
.sublists .row .col .card .card-body .card-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}
.block-catalogs_group .row .col:hover .card,
.sublists .row .col:hover .card {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
}

.block-products_group .carousel .flickity-viewport,
.related-products .carousel .flickity-viewport,
.items .carousel .flickity-viewport {
  height: 530px !important;
}
.block-products_group .carousel .flickity-viewport .flickity-slider .carousel-cell .card,
.related-products .carousel .flickity-viewport .flickity-slider .carousel-cell .card,
.items .carousel .flickity-viewport .flickity-slider .carousel-cell .card {
  border: 0;
  border-radius: 0.5rem;
  transition: 0.3s;
}
@media (min-width: 992px) {
  .block-products_group .carousel .flickity-viewport .flickity-slider .carousel-cell .card,
  .related-products .carousel .flickity-viewport .flickity-slider .carousel-cell .card,
  .items .carousel .flickity-viewport .flickity-slider .carousel-cell .card {
    height: 31rem !important;
  }
}
.block-products_group .carousel .flickity-viewport .flickity-slider .carousel-cell .card img,
.related-products .carousel .flickity-viewport .flickity-slider .carousel-cell .card img,
.items .carousel .flickity-viewport .flickity-slider .carousel-cell .card img {
  max-height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0.5rem 0.5rem 0 0;
}
.block-products_group .carousel .flickity-viewport .flickity-slider .carousel-cell .card:hover,
.related-products .carousel .flickity-viewport .flickity-slider .carousel-cell .card:hover,
.items .carousel .flickity-viewport .flickity-slider .carousel-cell .card:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
}
.block-products_group .carousel .flickity-viewport .flickity-slider .carousel-cell .card .badge-section,
.related-products .carousel .flickity-viewport .flickity-slider .carousel-cell .card .badge-section,
.items .carousel .flickity-viewport .flickity-slider .carousel-cell .card .badge-section {
  padding: 0.75rem;
}
.block-products_group .carousel .flickity-viewport .flickity-slider .carousel-cell .card .badge-section .badge,
.related-products .carousel .flickity-viewport .flickity-slider .carousel-cell .card .badge-section .badge,
.items .carousel .flickity-viewport .flickity-slider .carousel-cell .card .badge-section .badge {
  border-radius: 50rem;
  padding: 0.35rem 0.75rem;
}
.block-products_group .carousel .flickity-viewport .flickity-slider .carousel-cell .card .card-body,
.related-products .carousel .flickity-viewport .flickity-slider .carousel-cell .card .card-body,
.items .carousel .flickity-viewport .flickity-slider .carousel-cell .card .card-body {
  padding: 0.85rem;
  padding-bottom: 2rem;
}
.block-products_group .carousel .flickity-viewport .flickity-slider .carousel-cell .card .card-body .card-color,
.related-products .carousel .flickity-viewport .flickity-slider .carousel-cell .card .card-body .card-color,
.items .carousel .flickity-viewport .flickity-slider .carousel-cell .card .card-body .card-color {
  height: 25px;
  overflow: hidden;
}
.block-products_group .carousel .flickity-viewport .flickity-slider .carousel-cell .card .card-body .card-color span,
.related-products .carousel .flickity-viewport .flickity-slider .carousel-cell .card .card-body .card-color span,
.items .carousel .flickity-viewport .flickity-slider .carousel-cell .card .card-body .card-color span {
  width: 20px;
  height: 20px;
  border: 1px solid #E6E6E6;
  border-radius: 50rem;
  margin: 0.2rem;
  position: relative;
}
.block-products_group .carousel .flickity-viewport .flickity-slider .carousel-cell .card .card-body .card-color .not-available,
.related-products .carousel .flickity-viewport .flickity-slider .carousel-cell .card .card-body .card-color .not-available,
.items .carousel .flickity-viewport .flickity-slider .carousel-cell .card .card-body .card-color .not-available {
  width: 9px;
  height: 9px;
  background-color: #F56C6C;
  border-radius: 50rem;
  position: absolute;
  top: -3px;
  right: -3px;
  margin: 0;
}
.block-products_group .carousel .flickity-viewport .flickity-slider .carousel-cell .card .card-body .card-title,
.related-products .carousel .flickity-viewport .flickity-slider .carousel-cell .card .card-body .card-title,
.items .carousel .flickity-viewport .flickity-slider .carousel-cell .card .card-body .card-title {
  height: 25px;
  font-size: 18px;
  font-weight: 500;
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}
.block-products_group .carousel .flickity-viewport .flickity-slider .carousel-cell .card .card-body .card-title.line-clamp,
.related-products .carousel .flickity-viewport .flickity-slider .carousel-cell .card .card-body .card-title.line-clamp,
.items .carousel .flickity-viewport .flickity-slider .carousel-cell .card .card-body .card-title.line-clamp {
  -webkit-line-clamp: 1;
}
.block-products_group .carousel .flickity-viewport .flickity-slider .carousel-cell .card .card-body .card-text,
.related-products .carousel .flickity-viewport .flickity-slider .carousel-cell .card .card-body .card-text,
.items .carousel .flickity-viewport .flickity-slider .carousel-cell .card .card-body .card-text {
  color: #395357;
  line-height: 1.35rem;
}
.block-products_group .carousel .flickity-viewport .flickity-slider .carousel-cell .card .card-body .card-info,
.related-products .carousel .flickity-viewport .flickity-slider .carousel-cell .card .card-body .card-info,
.items .carousel .flickity-viewport .flickity-slider .carousel-cell .card .card-body .card-info {
  background-color: #F7F7F7;
  padding: 0.75rem;
  border-radius: 0.5rem;
}
.block-products_group .carousel .flickity-viewport .flickity-slider .carousel-cell .card .card-body .card-info span,
.related-products .carousel .flickity-viewport .flickity-slider .carousel-cell .card .card-body .card-info span,
.items .carousel .flickity-viewport .flickity-slider .carousel-cell .card .card-body .card-info span {
  color: #495057;
  font-weight: 500;
}
.block-products_group .carousel .flickity-viewport .flickity-slider .carousel-cell .card .card-price,
.related-products .carousel .flickity-viewport .flickity-slider .carousel-cell .card .card-price,
.items .carousel .flickity-viewport .flickity-slider .carousel-cell .card .card-price {
  padding: 0.85rem;
}
.block-products_group .carousel .flickity-viewport .flickity-slider .carousel-cell .card .card-price__info,
.related-products .carousel .flickity-viewport .flickity-slider .carousel-cell .card .card-price__info,
.items .carousel .flickity-viewport .flickity-slider .carousel-cell .card .card-price__info {
  color: #395357;
  font-weight: 400;
  padding-right: 0.25rem;
}
.block-products_group .carousel .flickity-viewport .flickity-slider .carousel-cell .card .card-price__value,
.related-products .carousel .flickity-viewport .flickity-slider .carousel-cell .card .card-price__value,
.items .carousel .flickity-viewport .flickity-slider .carousel-cell .card .card-price__value {
  font-size: 24px;
  font-weight: 700;
}
.block-products_group .carousel .flickity-button,
.related-products .carousel .flickity-button,
.items .carousel .flickity-button {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(208, 208, 208, 0.5);
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  transition: 0.2s;
}
.block-products_group .carousel .flickity-button:focus,
.related-products .carousel .flickity-button:focus,
.items .carousel .flickity-button:focus {
  box-shadow: none;
}
.block-products_group .carousel .flickity-button:hover,
.related-products .carousel .flickity-button:hover,
.items .carousel .flickity-button:hover {
  background-color: #1E1A34;
}
.block-products_group .carousel .flickity-button:hover .flickity-button-icon,
.related-products .carousel .flickity-button:hover .flickity-button-icon,
.items .carousel .flickity-button:hover .flickity-button-icon {
  color: #fff;
}
.block-products_group .carousel .flickity-button .flickity-button-icon,
.related-products .carousel .flickity-button .flickity-button-icon,
.items .carousel .flickity-button .flickity-button-icon {
  height: 32%;
  top: 36%;
}
@media (max-width: 992px) {
  .block-products_group .carousel .flickity-page-dots,
  .related-products .carousel .flickity-page-dots,
  .items .carousel .flickity-page-dots {
    display: none;
  }
}
@media (min-width: 992px) {
  .block-products_group .carousel .flickity-page-dots,
  .related-products .carousel .flickity-page-dots,
  .items .carousel .flickity-page-dots {
    bottom: -10px;
  }
}
.block-products_group .carousel .flickity-page-dots .flickity-page-dot,
.related-products .carousel .flickity-page-dots .flickity-page-dot,
.items .carousel .flickity-page-dots .flickity-page-dot {
  width: 12px;
  height: 12px;
  border: 1px solid #1E1A34;
  background-color: transparent;
  margin: 0 5px;
}
.block-products_group .carousel .flickity-page-dots .flickity-page-dot:focus,
.related-products .carousel .flickity-page-dots .flickity-page-dot:focus,
.items .carousel .flickity-page-dots .flickity-page-dot:focus {
  box-shadow: none;
}
.block-products_group .carousel .flickity-page-dots .flickity-page-dot:only-child,
.related-products .carousel .flickity-page-dots .flickity-page-dot:only-child,
.items .carousel .flickity-page-dots .flickity-page-dot:only-child {
  display: none;
}
.block-products_group .carousel .flickity-page-dots .is-selected,
.related-products .carousel .flickity-page-dots .is-selected,
.items .carousel .flickity-page-dots .is-selected {
  background-color: #1E1A34;
}
.block-products_group .row .col,
.related-products .row .col,
.items .row .col {
  padding: 0.5rem;
  padding-bottom: 1rem;
}
.block-products_group .row .col .card,
.related-products .row .col .card,
.items .row .col .card {
  border: 0;
  border-radius: 0.5rem;
}
.block-products_group .row .col .card img,
.related-products .row .col .card img,
.items .row .col .card img {
  max-height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0.5rem 0.5rem 0 0;
}
.block-products_group .row .col .card:hover,
.related-products .row .col .card:hover,
.items .row .col .card:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
}
.block-products_group .row .col .card .badge-section,
.related-products .row .col .card .badge-section,
.items .row .col .card .badge-section {
  padding: 0.75rem;
}
.block-products_group .row .col .card .badge-section .badge,
.related-products .row .col .card .badge-section .badge,
.items .row .col .card .badge-section .badge {
  border-radius: 50rem;
  padding: 0.35rem 0.75rem;
}
.block-products_group .row .col .card .card-body,
.related-products .row .col .card .card-body,
.items .row .col .card .card-body {
  padding: 0.85rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.block-products_group .row .col .card .card-body .card-color,
.related-products .row .col .card .card-body .card-color,
.items .row .col .card .card-body .card-color {
  height: 25px;
  overflow: hidden;
}
.block-products_group .row .col .card .card-body .card-color span,
.related-products .row .col .card .card-body .card-color span,
.items .row .col .card .card-body .card-color span {
  width: 20px;
  height: 20px;
  border: 1px solid #E6E6E6;
  border-radius: 50rem;
  margin: 0.2rem;
  position: relative;
}
.block-products_group .row .col .card .card-body .card-color .not-available,
.related-products .row .col .card .card-body .card-color .not-available,
.items .row .col .card .card-body .card-color .not-available {
  width: 9px;
  height: 9px;
  background-color: #F56C6C;
  border-radius: 50rem;
  position: absolute;
  top: -3px;
  right: -3px;
  margin: 0;
}
.block-products_group .row .col .card .card-body .card-title,
.related-products .row .col .card .card-body .card-title,
.items .row .col .card .card-body .card-title {
  height: 25px;
  font-size: 18px;
  font-weight: 500;
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}
.block-products_group .row .col .card .card-body .card-title.line-clamp,
.related-products .row .col .card .card-body .card-title.line-clamp,
.items .row .col .card .card-body .card-title.line-clamp {
  -webkit-line-clamp: 1;
}
.block-products_group .row .col .card .card-body .card-text,
.related-products .row .col .card .card-body .card-text,
.items .row .col .card .card-body .card-text {
  color: #395357;
  line-height: 1.35rem;
}
.block-products_group .row .col .card .card-body .card-info,
.related-products .row .col .card .card-body .card-info,
.items .row .col .card .card-body .card-info {
  background-color: #F7F7F7;
  padding: 0.75rem;
  border-radius: 0.5rem;
}
.block-products_group .row .col .card .card-body .card-info span,
.related-products .row .col .card .card-body .card-info span,
.items .row .col .card .card-body .card-info span {
  color: #495057;
  font-weight: 500;
}
.block-products_group .row .col .card .card-price,
.related-products .row .col .card .card-price,
.items .row .col .card .card-price {
  padding: 0.85rem;
}
.block-products_group .row .col .card .card-price__info,
.related-products .row .col .card .card-price__info,
.items .row .col .card .card-price__info {
  color: #395357;
  font-weight: 400;
  padding-right: 0.25rem;
}
.block-products_group .row .col .card .card-price__value,
.related-products .row .col .card .card-price__value,
.items .row .col .card .card-price__value {
  font-size: 24px;
  font-weight: 700;
}

.banner-container .block-banner__banner {
  border-radius: 2rem;
}
.banner-container .carousel .flickity-viewport {
  border: 1px solid rgba(208, 208, 208, 0.5);
  border-radius: 2rem;
}
.banner-container .carousel .flickity-viewport .slider-content .slider-content__text {
  width: 36%;
  padding: 0 3rem !important;
  padding-bottom: 3rem !important;
}
.banner-container .carousel .flickity-viewport .slider-content .slider-content__text .slider-content__text__item {
  width: 20rem;
  min-width: unset;
}
.banner-container .carousel .flickity-viewport .slider-content .slider-content__text .slider-content__text__item h2, .banner-container .carousel .flickity-viewport .slider-content .slider-content__text .slider-content__text__item .h2 {
  font-size: 2rem;
}
.banner-container .carousel .flickity-viewport .slider-content .slider-content__text .slider-content__text__item p {
  font-size: 16px;
}

.faq-container .nav-tabs {
  justify-content: space-between;
}
@media (max-width: 576px) {
  .faq-container .nav-tabs .nav-item {
    width: 50%;
  }
  .faq-container .nav-tabs .nav-item .nav-link {
    width: 100%;
  }
}
@media (min-width: 576px) and (max-width: 992px) {
  .faq-container .nav-tabs {
    flex-direction: row;
  }
}
.faq-container .nav-tabs .nav-item .nav-link {
  color: #1E1A34;
  background-color: unset;
  font-weight: 600;
  padding: 0.5rem 2rem;
  border: 0;
}
.faq-container .nav-tabs .nav-item .nav-link.active {
  border: 0;
  border-bottom: 4px solid #1E1A34;
}
.faq-container .tab-content {
  border-right: 0 !important;
  border-left: 0 !important;
  border-bottom: 0 !important;
  padding: 2rem 0 0 0 !important;
  background-color: unset !important;
}
.faq-container .tab-content .accordion-item {
  border: 1px solid rgba(208, 208, 208, 0.5);
  border-radius: 0.75rem;
  margin-bottom: 0.5rem;
}
.faq-container .tab-content .accordion-item .accordion-header .accordion-button {
  font-weight: 600;
  border-radius: 0.75rem;
  padding: 1.35rem 2rem;
}
.faq-container .tab-content .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  color: #01D0B8;
  background-color: unset;
  box-shadow: none;
}
.faq-container .tab-content .accordion-item .accordion-body {
  padding: 0 2rem 1.35rem 2rem;
}
.faq-container .tab-content .accordion-item .accordion-body p {
  color: #495057;
}

.team-container .container {
  display: flex;
  justify-content: center;
}
@media (min-width: 992px) {
  .team-container .container .row {
    width: 66.6666666667%;
  }
}
@media (max-width: 768px) {
  .team-container .container .row .col {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .team-container .container .row .col {
    width: 33.3333333333%;
  }
}
.team-container .container .row .col .card {
  border: 0;
  border-radius: 0;
  background: transparent;
}
.team-container .container .row .col .card .card-body {
  text-align: center;
}
.team-container .container .row .col .card .card-body .card-title {
  margin-bottom: 0.5rem;
}
.team-container .container .row .col .card .card-body .card-text {
  color: #395357;
}

@media (max-width: 992px) {
  .seo-container .text,
  .seo-container .image {
    padding: 0 1.5rem;
  }
  .seo-container .image {
    padding-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .seo-container .text {
    padding: 0 2rem;
  }
}

@media (max-width: 991.98px) {
  .block-paragraph_image .image {
    order: 0 !important;
    text-align: center;
    padding-bottom: 1.5rem;
  }
}

.header-b-standard .logo-image-desktop {
  width: 160px;
  margin-top: 1rem;
}
.header-b-standard .logo-image-mobile {
  max-width: 80px;
  margin-top: 1rem;
}
.header-b-standard .navbar-top .container {
  justify-content: flex-end;
}
.header-b-standard .navbar-top .social .link-dark {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #01D0B8;
  border-radius: 50rem;
  margin: 0 0.5rem;
  transition: 0.2s;
}
.header-b-standard .navbar-top .social .link-dark:hover {
  background-color: #00BCA6;
}
.header-b-standard .navbar-top .navbar-nav .nav-item:first-child {
  margin-left: 0 !important;
}
.header-b-standard .navbar-top .navbar-nav .nav-item .nav-link {
  color: #1E1A34;
  font-size: 14px;
}
.header-b-standard .navbar-top .navbar-nav .nav-item .nav-link i {
  font-size: 16px;
  vertical-align: middle;
  margin-bottom: 0.15rem;
  padding-right: 0.35rem;
}
.header-b-standard .navbar-top .navbar-nav .nav-item .nav-link:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.header-b-standard .navbar-top .header-icon-big .nav-item .nav-link,
.header-b-standard .navbar-top .header-icon-big .search .nav-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #D0D0D0;
  border-radius: 50rem;
}
.header-b-standard .navbar-top .header-icon-big .nav-item .nav-link i,
.header-b-standard .navbar-top .header-icon-big .search .nav-link i {
  color: #1E1A34;
  font-size: 20px;
  padding: 0;
  margin: 0;
}
.header-b-standard .navbar-top .header-icon-big .nav-item .nav-link:hover,
.header-b-standard .navbar-top .header-icon-big .search .nav-link:hover {
  background-color: #1C1C1B;
  border: 1px solid rgba(208, 208, 208, 0.2);
}
.header-b-standard .navbar-top .header-icon-big .nav-item .nav-link:hover i,
.header-b-standard .navbar-top .header-icon-big .search .nav-link:hover i {
  color: #F7F7F7;
}
.header-b-standard .navbar-top .header-icon-big .search #search-autocomplete,
.header-b-standard .navbar-top .header-icon-big .search #search-accelasearch-desktop {
  height: 45px;
  border-radius: 50rem;
  padding: 0.25rem 0.75rem 0.25rem 1.5rem;
}
@media (min-width: 1200px) {
  .header-b-standard .navbar-top .header-icon-big .search #search-autocomplete,
  .header-b-standard .navbar-top .header-icon-big .search #search-accelasearch-desktop {
    min-width: 250px;
  }
}
@media (min-width: 1400px) {
  .header-b-standard .navbar-top .header-icon-big .search #search-autocomplete,
  .header-b-standard .navbar-top .header-icon-big .search #search-accelasearch-desktop {
    min-width: 300px;
  }
}
.header-b-standard .navbar-top .header-icon-big .search #search-autocomplete:not(:-moz-placeholder-shown) ~ label, .header-b-standard .navbar-top .header-icon-big .search #search-accelasearch-desktop:not(:-moz-placeholder-shown) ~ label {
  display: none;
}
.header-b-standard .navbar-top .header-icon-big .search #search-autocomplete:not(:placeholder-shown) ~ label,
.header-b-standard .navbar-top .header-icon-big .search #search-accelasearch-desktop:not(:placeholder-shown) ~ label {
  display: none;
}
.header-b-standard .navbar-top .header-icon-big .search #search-autocomplete:focus ~ label,
.header-b-standard .navbar-top .header-icon-big .search #search-accelasearch-desktop:focus ~ label {
  font-size: 0.6rem;
  top: -5px;
  padding-top: 0;
}
.header-b-standard .navbar-top .header-icon-big .search #search-accelasearch-icon {
  position: absolute;
  right: 1.5rem;
}
.header-b-standard .navbar-top .header-icon-big .search label {
  line-height: 2.6;
  left: 1.5rem;
}
.header-b-standard .navbar-top .header-icon-big .nav-item.dropdown .nav-link {
  color: #1E1A34;
  width: unset;
  font-size: 16px;
  border-radius: 50rem;
}
.header-b-standard .navbar-top .header-icon-big .nav-item.dropdown .nav-link:hover {
  text-decoration: none;
}
.header-b-standard .navbar-top .header-icon-big .nav-item.dropdown .nav-link.dropdown-toggle:hover::after {
  color: #F7F7F7;
}
.header-b-standard .navbar-top .header-icon-big .nav-item.dropdown .nav-link.dropdown-toggle.show {
  background-color: #1C1C1B;
}
.header-b-standard .navbar-top .header-icon-big .nav-item.dropdown .nav-link.dropdown-toggle.show i, .header-b-standard .navbar-top .header-icon-big .nav-item.dropdown .nav-link.dropdown-toggle.show::after {
  color: #fff;
}
.header-b-standard .navbar-top .header-icon-big .nav-item.dropdown .dropdown-toggle::after {
  content: "\f107";
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  margin-left: 0.8rem;
  border: 0;
  color: #1E1A34;
}
.header-b-standard .navbar-top .header-icon-big .nav-item.dropdown .dropdown-menu {
  width: 200px;
  border: 0;
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-top: 0.3rem;
}
.header-b-standard .navbar-top .header-icon-big .nav-item.dropdown .dropdown-menu::before {
  content: "\f0d8";
  font-family: "Font Awesome 6 Pro";
  font-weight: 600;
  color: #fff;
  position: absolute;
  top: -26px;
  font-size: 36px;
}
.header-b-standard .navbar-top .header-icon-big .nav-item.dropdown .dropdown-menu .username {
  color: rgba(30, 26, 52, 0.7);
  font-size: 12px;
  border-bottom: 1px solid #D0D0D0;
  padding-bottom: 0.3rem;
  margin-bottom: 0.8rem;
}
.header-b-standard .navbar-top .header-icon-big .nav-item.dropdown .dropdown-menu li:nth-child(2) {
  padding-bottom: 0.3rem;
}
.header-b-standard .navbar-top .header-icon-big .nav-item.dropdown .dropdown-menu li a {
  color: #1E1A34;
}
.header-b-standard .navbar-top .header-icon-big .nav-item.dropdown .dropdown-menu li a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.header-b-standard .navbar-top .header-icon-big .menu-cart--desktop,
.header-b-standard .navbar-top .header-icon-big .menu-cart--mobile {
  width: 45px !important;
  margin: 0;
}
.header-b-standard .navbar-top .header-icon-big .menu-cart--desktop .nav-link.show,
.header-b-standard .navbar-top .header-icon-big .menu-cart--mobile .nav-link.show {
  background-color: #1C1C1B;
  border: 1px solid rgba(247, 247, 247, 0.2);
}
.header-b-standard .navbar-top .header-icon-big .menu-cart--desktop .nav-link.show i,
.header-b-standard .navbar-top .header-icon-big .menu-cart--mobile .nav-link.show i {
  color: #fff;
}
.header-b-standard .navbar-top .header-icon-big .menu-cart--desktop .minicart-dropdown::before,
.header-b-standard .navbar-top .header-icon-big .menu-cart--mobile .minicart-dropdown::before {
  right: 10px;
}
.header-b-standard .navbar-top .header-icon-big .menu-cart--desktop .minicart-dropdown .col-md-6,
.header-b-standard .navbar-top .header-icon-big .menu-cart--desktop .minicart-dropdown .col-md-2,
.header-b-standard .navbar-top .header-icon-big .menu-cart--mobile .minicart-dropdown .col-md-6,
.header-b-standard .navbar-top .header-icon-big .menu-cart--mobile .minicart-dropdown .col-md-2 {
  font-weight: 400;
  color: #395357;
}
.header-b-standard .navbar-top .header-icon-big .menu-cart--desktop .minicart-dropdown .col-md-4,
.header-b-standard .navbar-top .header-icon-big .menu-cart--mobile .minicart-dropdown .col-md-4 {
  color: #000;
  font-weight: 600;
}
.header-b-standard .navbar-top .header-icon-big .menu-cart--desktop .minicart-dropdown .btn-primary,
.header-b-standard .navbar-top .header-icon-big .menu-cart--mobile .minicart-dropdown .btn-primary {
  color: #fff !important;
  width: 100%;
  text-decoration: none !important;
  background-color: #1E1A34 !important;
  background: unset;
  box-shadow: 0 5px 8px rgba(30, 26, 52, 0.2);
  padding: 0;
}
.header-b-standard .navbar-top .header-icon-big .menu-cart--desktop .quantity,
.header-b-standard .navbar-top .header-icon-big .menu-cart--mobile .quantity {
  font-size: 12px;
  font-weight: 600;
  width: 19px;
  height: 19px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50rem;
  color: #fff;
  background-color: #01D0B8;
  position: absolute;
  top: -2px;
  right: -2px;
}
.header-b-standard .navbar-top .header-icon-big .menu-cart--desktop .quantity::before,
.header-b-standard .navbar-top .header-icon-big .menu-cart--mobile .quantity::before {
  content: " ";
}
.header-b-standard .navbar-top .header-icon-big .menu-cart--desktop .quantity::after,
.header-b-standard .navbar-top .header-icon-big .menu-cart--mobile .quantity::after {
  content: " ";
}
.header-b-standard .navbar-top .header-icon-big.border-start {
  border-left: 1px solid #D0D0D0 !important;
}
.header-b-standard .navbar-top .border-bottom {
  border-bottom: 1px solid #D0D0D0 !important;
}
.header-b-standard .navbar-main .navbar-nav .btn-megamenu {
  padding: 0.75rem 0;
}
.header-b-standard .navbar-main .navbar-nav .btn-megamenu #prodotti {
  width: 160px;
  font-size: 16px;
  font-weight: 500;
  padding: 0.1rem 1.25rem;
  border: 1px solid #D0D0D0;
  border-radius: 50rem;
  transition: all 0.15s ease-in-out;
}
@media (min-width: 1400px) {
  .header-b-standard .navbar-main .navbar-nav .btn-megamenu #prodotti {
    width: 200px;
  }
}
.header-b-standard .navbar-main .navbar-nav .btn-megamenu #prodotti .prodotti-toggle {
  padding-right: 0.5rem;
}
.header-b-standard .navbar-main .navbar-nav .btn-megamenu #prodotti:active {
  color: #000 !important;
}
.header-b-standard .navbar-main .navbar-nav .btn-megamenu #prodotti:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.header-b-standard .navbar-main .navbar-nav .btn-megamenu #prodotti.prodotto-active {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.header-b-standard .navbar-main .navbar-nav #nav-menu .nav-item {
  margin: 0 0.75rem;
}
.header-b-standard .navbar-main .navbar-nav #nav-menu .nav-item:last-child {
  margin-right: 0 !important;
}
.header-b-standard .navbar-main .navbar-nav #nav-menu .nav-item:last-child .nav-link {
  padding-right: 0;
}
.header-b-standard .navbar-main .navbar-nav #nav-menu .nav-item .nav-link {
  color: #1E1A34;
  font-size: 15px;
  font-weight: 500;
}
@media (min-width: 1400px) {
  .header-b-standard .navbar-main .navbar-nav #nav-menu .nav-item .nav-link {
    font-size: 16px;
  }
}
.header-b-standard .navbar-main .navbar-nav #nav-menu .nav-item:hover .nav-link {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.header-b-standard .navbar-main .mobile-menu .nav-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #D0D0D0;
  border-radius: 50rem;
}
.header-b-standard .navbar-main .mobile-menu .nav-link i {
  color: #1E1A34;
  font-size: 20px;
}
.header-b-standard .navbar-main .mobile-menu .nav-link:hover {
  background-color: #1C1C1B;
  border: 1px solid rgba(247, 247, 247, 0.2);
}
.header-b-standard .navbar-main .mobile-menu .nav-link:hover i {
  color: #F7F7F7;
}
.header-b-standard .hello-bar p,
.header-b-standard .hello-bar h1,
.header-b-standard .hello-bar .h1,
.header-b-standard .hello-bar h2,
.header-b-standard .hello-bar .h2,
.header-b-standard .hello-bar h3,
.header-b-standard .hello-bar .h3,
.header-b-standard .hello-bar h4,
.header-b-standard .hello-bar .h4,
.header-b-standard .hello-bar h5,
.header-b-standard .hello-bar .h5,
.header-b-standard .hello-bar h6,
.header-b-standard .hello-bar .h6,
.header-b-standard .hello-bar span,
.header-b-standard .hello-bar strong {
  margin: 0;
  font-size: 14px;
}
.header-b-standard .hello-bar p strong,
.header-b-standard .hello-bar h1 strong,
.header-b-standard .hello-bar .h1 strong,
.header-b-standard .hello-bar h2 strong,
.header-b-standard .hello-bar .h2 strong,
.header-b-standard .hello-bar h3 strong,
.header-b-standard .hello-bar .h3 strong,
.header-b-standard .hello-bar h4 strong,
.header-b-standard .hello-bar .h4 strong,
.header-b-standard .hello-bar h5 strong,
.header-b-standard .hello-bar .h5 strong,
.header-b-standard .hello-bar h6 strong,
.header-b-standard .hello-bar .h6 strong,
.header-b-standard .hello-bar span strong,
.header-b-standard .hello-bar strong strong {
  font-weight: 600;
}
@media (max-width: 576px) {
  .header-b-standard .hello-bar p,
  .header-b-standard .hello-bar h1,
  .header-b-standard .hello-bar .h1,
  .header-b-standard .hello-bar h2,
  .header-b-standard .hello-bar .h2,
  .header-b-standard .hello-bar h3,
  .header-b-standard .hello-bar .h3,
  .header-b-standard .hello-bar h4,
  .header-b-standard .hello-bar .h4,
  .header-b-standard .hello-bar h5,
  .header-b-standard .hello-bar .h5,
  .header-b-standard .hello-bar h6,
  .header-b-standard .hello-bar .h6,
  .header-b-standard .hello-bar span,
  .header-b-standard .hello-bar strong {
    font-size: 14px;
  }
}
@media (min-width: 776px) {
  .header-b-standard .navbar-main .container {
    height: 3.75rem;
  }
  .header-b-standard .navbar-top .container {
    height: 4rem;
  }
}

.widget-header {
  position: sticky;
  top: 0;
  z-index: 1024;
}

.autocomplete-suggestions,
.autocomplete-no-suggestion {
  border: 1px solid rgba(208, 208, 208, 0.5);
  border-radius: 1rem;
}
.autocomplete-suggestions .autocomplete-group,
.autocomplete-no-suggestion .autocomplete-group {
  display: none;
}
.autocomplete-suggestions .autocomplete-suggestion,
.autocomplete-suggestions .autocomplete-no-results,
.autocomplete-no-suggestion .autocomplete-suggestion,
.autocomplete-no-suggestion .autocomplete-no-results {
  padding: 0.3rem 1rem;
}
.autocomplete-suggestions .autocomplete-suggestion strong,
.autocomplete-suggestions .autocomplete-no-results strong,
.autocomplete-no-suggestion .autocomplete-suggestion strong,
.autocomplete-no-suggestion .autocomplete-no-results strong {
  color: #1C1C1B;
}
.autocomplete-suggestions .autocomplete-suggestion img,
.autocomplete-suggestions .autocomplete-no-results img,
.autocomplete-no-suggestion .autocomplete-suggestion img,
.autocomplete-no-suggestion .autocomplete-no-results img {
  border-radius: 0.25rem;
  margin-right: 0.75rem;
}
.autocomplete-suggestions .autocomplete-suggestion span,
.autocomplete-suggestions .autocomplete-no-results span,
.autocomplete-no-suggestion .autocomplete-suggestion span,
.autocomplete-no-suggestion .autocomplete-no-results span {
  font-size: 14px;
}
.autocomplete-suggestions .autocomplete-suggestion:nth-child(even),
.autocomplete-suggestions .autocomplete-no-results:nth-child(even),
.autocomplete-no-suggestion .autocomplete-suggestion:nth-child(even),
.autocomplete-no-suggestion .autocomplete-no-results:nth-child(even) {
  background-color: #F7F7F7;
}
.autocomplete-suggestions .autocomplete-suggestion:hover,
.autocomplete-no-suggestion .autocomplete-suggestion:hover {
  background-color: #F2F2F2;
  cursor: pointer;
}

.page-contact .map-container iframe {
  border: 4px solid #fff;
  border-radius: 2rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.page-contact .map-container .address a:hover,
.page-contact .map-container .shop a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page-contact .form-container .form {
  border: 1px solid rgba(208, 208, 208, 0.7);
  border-radius: 2rem;
}
.page-contact .form-container .form .form-control,
.page-contact .form-container .form textarea {
  border-radius: 0.5rem;
  border: 1px solid rgba(208, 208, 208, 0.7);
}
.page-contact .form-container .form .terms .form-check-input {
  border: 1px solid rgba(208, 208, 208, 0.7);
}
.page-contact .form-container .form .terms .form-check-label {
  color: #495057;
  font-size: 12px;
}
.page-contact .form-container .form .recaptcha {
  margin-top: -0.15rem !important;
}
.page-contact .form-container .form .recaptcha small, .page-contact .form-container .form .recaptcha .small {
  color: #495057;
  font-size: 12px;
  line-height: 1.15rem;
}
.page-contact .form-container .form .btn-primary {
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 992px) {
  .page-contact .form-container .form {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .page-faq .banner-container .carousel .flickity-viewport {
    height: 500px !important;
  }
  .page-faq .banner-container .carousel .flickity-viewport .slider-content__text__item {
    width: 25rem !important;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .page-faq .banner-container .carousel .flickity-viewport {
    height: 480px !important;
  }
  .page-faq .banner-container .carousel .flickity-viewport .slider-content__text__item {
    width: 30rem !important;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .page-faq .banner-container .carousel .flickity-viewport {
    height: 550px !important;
  }
  .page-faq .banner-container .carousel .flickity-viewport .slider-content__text__item {
    width: 30rem !important;
  }
}

.page-home .banner-home-container .container {
  background-color: #F4F4EC;
  border: 4px solid #fff;
  border-radius: 2rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 576px) {
  .page-home .banner-home-container .container {
    padding: 1.5rem;
    padding-bottom: 0;
    border-radius: 0;
    border: 0;
    border-bottom: 4px solid #fff;
  }
  .page-home .banner-home-container .container .text {
    text-align: center;
    order: 1 !important;
  }
  .page-home .banner-home-container .container .text p:nth-of-type(2) {
    margin-bottom: 2rem;
  }
  .page-home .banner-home-container .container .image {
    order: 2 !important;
  }
}
@media (max-width: 992px) {
  .page-home .banner-home-container .container {
    padding: 1.5rem;
    padding-bottom: 0;
  }
  .page-home .banner-home-container .container .text {
    text-align: center;
    order: 1 !important;
  }
  .page-home .banner-home-container .container .text p:nth-of-type(2) {
    margin-bottom: 2rem;
  }
  .page-home .banner-home-container .container .image {
    order: 2 !important;
  }
}
@media (min-width: 992px) {
  .page-home .banner-home-container .container .row .text {
    padding: 0 3rem;
  }
}
.page-home .banner-home-container .container .row .text p:nth-of-type(1) {
  margin-bottom: 2rem;
}
.page-home .banner-home-container .container .row .text a {
  color: #fff;
  background-color: #1C1C1B;
  border-radius: 50rem;
  padding: 0.75rem 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: 0.2s;
}
.page-home .banner-home-container .container .row .text a:hover {
  background-color: #5C5C59;
}
.page-home .block-text h2, .page-home .block-text .h2 {
  margin-bottom: 0;
  padding-bottom: 1rem;
}

.catalog-detail .detail-container .catalog-detail-image {
  position: relative;
}
.catalog-detail .detail-container .catalog-detail-image .carousel-main {
  border: 4px solid #fff;
  border-radius: 3rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.catalog-detail .detail-container .catalog-detail-image .carousel-main .carousel-cell {
  display: unset;
  height: unset;
}
.catalog-detail .detail-container .catalog-detail-image .carousel-main .carousel-cell img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.catalog-detail .detail-container .catalog-detail-image .carousel-main .flickity-viewport {
  border-radius: 0;
}
.catalog-detail .detail-container .catalog-detail-image .carousel-main .flickity-prev-next-button {
  width: 45px;
  height: 45px;
  border: 1px solid #E6E6E6;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
.catalog-detail .detail-container .catalog-detail-image .carousel-main .flickity-prev-next-button:focus {
  box-shadow: none;
}
.catalog-detail .detail-container .catalog-detail-image .carousel-main .flickity-prev-next-button:hover {
  background-color: #1E1A34;
}
.catalog-detail .detail-container .catalog-detail-image .carousel-main .flickity-prev-next-button:hover .flickity-button-icon {
  color: #fff;
}
.catalog-detail .detail-container .catalog-detail-image .carousel-main .flickity-prev-next-button .flickity-button-icon {
  height: 40%;
  top: 32%;
}
.catalog-detail .detail-container .catalog-detail-image .carousel-main .flickity-prev-next-button.next {
  right: 10px;
}
.catalog-detail .detail-container .catalog-detail-image .carousel-main .flickity-prev-next-button.previous {
  left: 10px;
}
.catalog-detail .detail-container .catalog-detail-image .carousel-main .flickity-page-dots {
  display: none;
}
.catalog-detail .detail-container .catalog-detail-image .carousel-main.is-fullscreen {
  border: 0;
}
.catalog-detail .detail-container .catalog-detail-image .carousel-main.is-fullscreen .carousel-cell {
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.catalog-detail .detail-container .catalog-detail-image .carousel-main.is-fullscreen .carousel-cell img {
  background-color: #fff;
}
.catalog-detail .detail-container .catalog-detail-image .carousel-main.is-fullscreen .flickity-prev-next-button {
  top: 50%;
}
@media (max-width: 991.98px) {
  .catalog-detail .detail-container .catalog-detail-image .carousel-main.is-fullscreen {
    height: auto !important;
  }
}
@media (min-width: 992px) {
  .catalog-detail .detail-container .catalog-detail-image .carousel-main.is-fullscreen img {
    height: 1000px !important;
    width: 1000px !important;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.catalog-detail .detail-container .catalog-detail-image .carousel-main.is-fullscreen .flickity-fullscreen-button {
  background-color: #395357;
}
.catalog-detail .detail-container .catalog-detail-image .carousel-main.is-fullscreen .flickity-fullscreen-button .flickity-button-icon {
  color: #fff;
}
.catalog-detail .detail-container .catalog-detail-image .flickity-enabled.is-fullscreen {
  padding: 0;
  border-radius: 0;
  z-index: 1052;
}
.catalog-detail .detail-container .catalog-detail-image .flickity-enabled.is-fullscreen .flickity-viewport {
  border: 0;
}
.catalog-detail .detail-container .catalog-detail-image .flickity-enabled.is-fullscreen .flickity-viewport img {
  border-radius: 0.25rem;
}
.catalog-detail .detail-container .catalog-detail-image .flickity-enabled.is-fullscreen .flickity-prev-next-button {
  display: block;
  width: 50px;
  height: 50px;
  border: 1px solid #E6E6E6;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  transition: 0.2s;
}
.catalog-detail .detail-container .catalog-detail-image .flickity-enabled.is-fullscreen .flickity-prev-next-button:focus {
  box-shadow: none;
}
.catalog-detail .detail-container .catalog-detail-image .flickity-enabled.is-fullscreen .flickity-prev-next-button:hover {
  border-color: #000;
  background-color: #000;
}
.catalog-detail .detail-container .catalog-detail-image .flickity-enabled.is-fullscreen .flickity-prev-next-button:hover .flickity-button-icon {
  color: #fff;
}
.catalog-detail .detail-container .catalog-detail-image .flickity-enabled.is-fullscreen .flickity-prev-next-button .flickity-button-icon {
  height: 32%;
  top: 36%;
}
.catalog-detail .detail-container .catalog-detail-image .flickity-enabled.is-fullscreen .flickity-prev-next-button.next {
  right: 30px;
}
.catalog-detail .detail-container .catalog-detail-image .flickity-enabled.is-fullscreen .flickity-prev-next-button.previous {
  left: 30px;
}
.catalog-detail .detail-container .catalog-detail-image .flickity-fullscreen-button {
  top: 25px;
  right: 25px;
  width: 30px;
  height: 30px;
  border-radius: 0.25rem;
  background-color: #495057;
}
.catalog-detail .detail-container .catalog-detail-image .flickity-fullscreen-button .flickity-button-icon {
  color: #fff;
  top: 7px;
  left: 7px;
}
.catalog-detail .detail-container .catalog-detail-image .flickity-fullscreen-button:focus {
  box-shadow: none;
}
.catalog-detail .detail-container .catalog-detail-image .flickity-fullscreen-button:focus-visible {
  outline: 0;
}
.catalog-detail .detail-container .catalog-detail-image .carousel-nav {
  width: 19rem;
}
@media (max-width: 991.98px) {
  .catalog-detail .detail-container .catalog-detail-image .carousel-nav {
    display: none;
  }
}
.catalog-detail .detail-container .catalog-detail-image .carousel-nav .flickity-viewport {
  height: 100px !important;
}
.catalog-detail .detail-container .catalog-detail-image .carousel-nav .flickity-viewport .flickity-slider {
  display: flex;
  align-items: center;
}
.catalog-detail .detail-container .catalog-detail-image .carousel-nav .carousel-cell {
  width: 75px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.catalog-detail .detail-container .catalog-detail-image .carousel-nav .carousel-cell img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 0.5rem;
  background-color: #fff;
}
.catalog-detail .detail-container .catalog-detail-image .carousel-nav .carousel-cell.is-nav-selected img {
  box-shadow: 0 3px 10px #a3cfbb;
}
.catalog-detail .detail-container .catalog-detail-basic .product-name {
  font-size: 28px;
}
@media (max-width: 576px) {
  .catalog-detail .detail-container .catalog-detail-basic .product-name {
    font-size: 24px;
  }
}
.catalog-detail .detail-container .catalog-detail-basic .code {
  color: #495057;
  font-size: 18px;
  font-weight: 500;
}
.catalog-detail .detail-container .catalog-detail-basic .code p {
  font-size: 16px;
}
.catalog-detail .detail-container .catalog-detail-basic .badge-section .badge {
  border-radius: 50rem;
  padding: 0.35rem 0.75rem;
}
.catalog-detail .detail-container .catalog-detail-basic .info-container .color .title,
.catalog-detail .detail-container .catalog-detail-basic .info-container .size .title,
.catalog-detail .detail-container .catalog-detail-basic .info-container .weight .title,
.catalog-detail .detail-container .catalog-detail-basic .info-container .material .title,
.catalog-detail .detail-container .catalog-detail-basic .info-container .brand .title,
.catalog-detail .detail-container .catalog-detail-basic .info-container .min-order .title {
  font-weight: 600;
}
.catalog-detail .detail-container .catalog-detail-basic .info-container .color .title span,
.catalog-detail .detail-container .catalog-detail-basic .info-container .size .title span,
.catalog-detail .detail-container .catalog-detail-basic .info-container .weight .title span,
.catalog-detail .detail-container .catalog-detail-basic .info-container .material .title span,
.catalog-detail .detail-container .catalog-detail-basic .info-container .brand .title span,
.catalog-detail .detail-container .catalog-detail-basic .info-container .min-order .title span {
  color: #495057;
  font-weight: 400;
}
.catalog-detail .detail-container .catalog-detail-basic .info-container .color .title {
  margin-right: 0.25rem;
}
.catalog-detail .detail-container .catalog-detail-basic .info-container .color .color__item span {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(208, 208, 208, 0.5);
  border-radius: 50rem;
  margin: 0.2rem;
  position: relative;
}
.catalog-detail .detail-container .catalog-detail-basic .info-container .color .color__item span .not-available {
  width: 9px;
  height: 9px;
  background-color: #F56C6C;
  border-radius: 50rem;
  position: absolute;
  top: -3px;
  right: -3px;
  margin: 0;
}
.catalog-detail .detail-container .catalog-detail-basic .info-container .modal-container .modal-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(208, 208, 208, 0.7);
  border-radius: 0.25rem;
  padding: 0.5rem 0.75rem;
  background-color: unset;
  position: relative;
  text-align: start;
  line-height: 1.25rem;
  transition: 0.2s;
}
.catalog-detail .detail-container .catalog-detail-basic .info-container .modal-container .modal-btn a {
  color: #000;
}
.catalog-detail .detail-container .catalog-detail-basic .info-container .modal-container .modal-btn i {
  font-size: 18px;
  right: 0;
  color: #1C1C1B;
  padding: 0.5rem 0 0.5rem 0.75rem;
  border-left: 1px solid rgba(208, 208, 208, 0.5);
  margin-right: 0 !important;
}
.catalog-detail .detail-container .catalog-detail-basic .info-container .modal-container .modal-btn:hover {
  color: #000;
  background-color: #F7F7F7;
}
.catalog-detail .detail-container .catalog-detail-basic .info-container .modal-container .modal-btn:hover i {
  color: #1C1C1B;
  border-left: 1px solid rgba(208, 208, 208, 0.7);
}
.catalog-detail .detail-container .catalog-detail-basic .info-container .modal-container .modal-btn:hover a {
  color: #fff;
}
.catalog-detail .detail-container .catalog-detail-basic .info-container .modal-container .modal-btn:focus-visible {
  outline: none;
}
@media (min-width: 576px) {
  .catalog-detail .detail-container .catalog-detail-basic .info-container .modal-container .col-btn.first-child {
    padding-right: 0.65rem;
  }
  .catalog-detail .detail-container .catalog-detail-basic .info-container .modal-container .col-btn:last-child {
    padding-left: 0.65rem;
  }
}
.catalog-detail .detail-container .catalog-detail-basic .info-container .modal-container .modal {
  background-color: rgba(0, 0, 0, 0.5);
}
@media (min-width: 992px) {
  .catalog-detail .detail-container .catalog-detail-basic .info-container .modal-container .modal .modal-dialog {
    max-width: 900px;
  }
}
.catalog-detail .detail-container .catalog-detail-basic .info-container .modal-container .modal .modal-body .block-table .container {
  padding: 0;
}
.catalog-detail .detail-container .catalog-detail-basic .info-container .modal-container .modal .modal-body .block-table .container .table-responsive {
  border: 1px solid rgba(208, 208, 208, 0.5);
  border-radius: 1rem;
}
.catalog-detail .detail-container .catalog-detail-basic .info-container .modal-container .modal .modal-body .block-table .container .table-responsive .table {
  width: 100%;
  text-align: center;
  overflow: hidden;
  border-collapse: collapse;
  border: 1px solid rgba(208, 208, 208, 0.5);
  border-radius: 0.75rem;
  background-color: #F7F7F7;
}
.catalog-detail .detail-container .catalog-detail-basic .info-container .modal-container .modal .modal-body .block-table .container .table-responsive .table tr td,
.catalog-detail .detail-container .catalog-detail-basic .info-container .modal-container .modal .modal-body .block-table .container .table-responsive .table tr th {
  font-weight: 600;
  padding: 0.75rem 0.25rem !important;
  border-bottom-width: 0 !important;
  border-right: 1px solid rgba(208, 208, 208, 0.5);
  box-shadow: none;
}
.catalog-detail .detail-container .catalog-detail-basic .info-container .modal-container .modal .modal-body .block-table .container .table-responsive .table tr td strong,
.catalog-detail .detail-container .catalog-detail-basic .info-container .modal-container .modal .modal-body .block-table .container .table-responsive .table tr th strong {
  font-weight: 600;
}
.catalog-detail .detail-container .catalog-detail-basic .info-container .modal-container .modal .modal-body .block-table .container .table-responsive .table tr td:first-child,
.catalog-detail .detail-container .catalog-detail-basic .info-container .modal-container .modal .modal-body .block-table .container .table-responsive .table tr th:first-child {
  font-weight: 600;
  text-align: left !important;
  text-indent: 0.75rem;
  border-right: 1px solid rgba(208, 208, 208, 0.5);
  background-color: #fff;
}
@media (min-width: 992px) {
  .catalog-detail .detail-container .catalog-detail-basic .info-container .modal-container .modal .modal-body .block-table .container .table-responsive .table tr td:first-child,
  .catalog-detail .detail-container .catalog-detail-basic .info-container .modal-container .modal .modal-body .block-table .container .table-responsive .table tr th:first-child {
    width: 30%;
  }
}
.catalog-detail .detail-container .catalog-detail-basic .info-container .modal-container .modal .modal-body .block-table .container .table-responsive .table tr td:last-child,
.catalog-detail .detail-container .catalog-detail-basic .info-container .modal-container .modal .modal-body .block-table .container .table-responsive .table tr th:last-child {
  border-right: 0;
}
.catalog-detail .detail-container .catalog-detail-basic .info-container .modal-container .modal .modal-body .block-table .container .table-responsive .table tr td p,
.catalog-detail .detail-container .catalog-detail-basic .info-container .modal-container .modal .modal-body .block-table .container .table-responsive .table tr th p {
  margin-bottom: 0;
}
.catalog-detail .detail-container .catalog-detail-basic .info-container .modal-container .modal .modal-body .block-table .container .table-responsive .table tr td {
  border-top: 1px solid rgba(208, 208, 208, 0.5);
}
.catalog-detail .detail-container .catalog-detail-basic .info-container .modal-container .modal .modal-body .block-table .container .table-responsive .table tbody tr td {
  font-weight: 500;
}
.catalog-detail .detail-container .catalog-detail-basic .info-container .modal-container .modal .modal-body .block-list_elements .container .row {
  justify-content: space-around;
}
@media (max-width: 576px) {
  .catalog-detail .detail-container .catalog-detail-basic .info-container .modal-container .modal .modal-body .block-list_elements .container .row .col {
    width: 35%;
  }
}
.catalog-detail .detail-container .catalog-detail-basic .info-container .modal-container .modal .modal-body .block-list_elements .container .row .col {
  padding: 0;
}
.catalog-detail .detail-container .catalog-detail-basic .info-container .modal-container .modal .modal-body .block-list_elements .container .row .col .card {
  border: 0;
  align-items: center;
}
.catalog-detail .detail-container .catalog-detail-basic .info-container .modal-container .modal .modal-body .block-list_elements .container .row .col .card .badge-section {
  display: none;
}
.catalog-detail .detail-container .catalog-detail-basic .info-container .modal-container .modal .modal-body .block-list_elements .container .row .col .card .card-body {
  text-align: center;
  padding: 0;
}
.catalog-detail .detail-container .catalog-detail-basic .info-container .modal-container .modal .modal-body .block-list_elements .container .row .col .card .card-body .card-title {
  display: none;
}
.catalog-detail .tabella-cadauno .title {
  font-size: 20px;
  font-weight: 600;
}
.catalog-detail .tabella-cadauno .table {
  width: 100%;
  text-align: center;
  overflow: hidden;
  border-collapse: separate;
  border: 1px solid rgba(208, 208, 208, 0.5);
  border-radius: 0.75rem;
  background-color: #F7F7F7;
}
.catalog-detail .tabella-cadauno .table tr td,
.catalog-detail .tabella-cadauno .table tr th {
  font-weight: 600;
  padding: 0.75rem 0.25rem !important;
  border-bottom-width: 0 !important;
  border-right: 1px solid rgba(208, 208, 208, 0.5);
  box-shadow: none;
}
.catalog-detail .tabella-cadauno .table tr td:first-child,
.catalog-detail .tabella-cadauno .table tr th:first-child {
  font-weight: 600;
  text-align: left;
  padding-left: 0.75rem !important;
  border-right: 1px solid rgba(208, 208, 208, 0.5);
  background-color: #fff;
}
@media (max-width: 576px) {
  .catalog-detail .tabella-cadauno .table tr td:first-child,
  .catalog-detail .tabella-cadauno .table tr th:first-child {
    line-height: 1.25rem;
  }
}
.catalog-detail .tabella-cadauno .table tr td:last-child,
.catalog-detail .tabella-cadauno .table tr th:last-child {
  border-right: 0;
}
.catalog-detail .tabella-cadauno .table tr td {
  border-top: 1px solid rgba(208, 208, 208, 0.5);
}
.catalog-detail .tabella-cadauno .table tbody tr td {
  font-weight: 400;
}
@media (max-width: 576px) {
  .catalog-detail .tabella-cadauno {
    border-bottom: 0 !important;
  }
}
@media (max-width: 992px) {
  .catalog-detail .varianti-column {
    border-top: 1px solid rgba(208, 208, 208, 0.5);
  }
}
.catalog-detail .varianti-column .job-name-title,
.catalog-detail .varianti-column .prodottiprint-serigrafia-section-title {
  font-weight: 600;
}
.catalog-detail .varianti-column .job-name-title .prodottiprint-inputlabel-content-text-title-label-name,
.catalog-detail .varianti-column .prodottiprint-serigrafia-section-title .prodottiprint-inputlabel-content-text-title-label-name {
  font-weight: 600;
}
.catalog-detail .varianti-column .prodottiprint-inputlabel-content-text-title-label-name {
  font-weight: 600;
}
.catalog-detail .varianti-column .job_name {
  margin-bottom: 2rem;
}
.catalog-detail .varianti-column .form-label-group input {
  border-radius: 0.5rem;
}
.catalog-detail .varianti-column .btn-group:focus-visible {
  outline: 0;
}
.catalog-detail .varianti-column .prodottiprint-inputradiobutton {
  border-radius: 0.5rem !important;
}
.catalog-detail .varianti-column .prodottiprint-inputradiobutton img {
  border-radius: 0.5rem 0.5rem 0 0;
}
.catalog-detail .varianti-column .prodottiprint-inputradiobutton:active {
  color: #000 !important;
  background-color: #fff;
  border: 2px solid #8B969E;
  box-shadow: 0 5px 10px rgba(139, 150, 158, 0.2);
}
.catalog-detail .varianti-column .prodottiprint-inputradiobutton:hover {
  color: #000 !important;
  border: 2px solid #8B969E;
  box-shadow: 0 5px 10px rgba(139, 150, 158, 0.2);
}
.catalog-detail .varianti-column .prodottiprint-inputradiobutton:focus {
  border: 2px solid #8B969E;
  box-shadow: none;
}
.catalog-detail .varianti-column .prodottiprint-inputradiobutton:focus-visible {
  color: #000 !important;
  background-color: #fff;
  border: 2px solid #8B969E;
  box-shadow: none;
}
.catalog-detail .varianti-column .prodottiprint-inputradiobutton.active {
  color: #000 !important;
  border: 2px solid #8B969E;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(139, 150, 158, 0.2);
}
.catalog-detail .varianti-column .prodottiprint-inputradiobutton.active .prodottiprint-radiobutton-text {
  border-top: 2px solid #8B969E;
}
.catalog-detail .varianti-column .prodottiprint-inputlabel {
  margin-bottom: 0.5rem;
}
.catalog-detail .varianti-column .prodottiprint-multisubject-btn:hover {
  background-color: unset !important;
}
.catalog-detail .varianti-column .form-select,
.catalog-detail .varianti-column .form-control {
  border-radius: 0.5rem !important;
}
.catalog-detail .varianti-column .help-text,
.catalog-detail .varianti-column .prodottiprint-helptext-variante {
  border-radius: 0.5rem;
  background-color: rgba(244, 244, 236, 0.5);
}
.catalog-detail .varianti-column .prodottiprint-separatore-header {
  margin: 0;
}
.catalog-detail .varianti-column .prodottiprint-separatore-header .prodottiprint-separatore-header-text-nome {
  font-size: 20px;
  font-weight: 600;
}
.catalog-detail .varianti-column .prodottiprint-helptextpopover-btn {
  margin-left: 0;
  color: unset;
  background-color: unset;
  border: unset;
  box-shadow: unset;
}
.catalog-detail .varianti-column #variante-consegna .prodottiprint-radiobutton .btn:focus {
  background-color: unset;
}
.catalog-detail .varianti-column #variante-consegna .prodottiprint-radiobutton .btn:active {
  color: #000;
  background-color: unset;
  border: 1px solid #D0D0D0;
}
.catalog-detail .varianti-column #variante-consegna .prodottiprint-radiobutton .prodottiprint-inputradiobutton {
  border-radius: 0.5rem !important;
}
@media (min-width: 576px) {
  .catalog-detail .varianti-column #variante-consegna .prodottiprint-radiobutton .prodottiprint-inputradiobutton {
    position: relative;
    height: 180px;
  }
  .catalog-detail .varianti-column #variante-consegna .prodottiprint-radiobutton .prodottiprint-inputradiobutton .prodottiprint-radiobuttonconsegna-weekday {
    font-size: 18px;
    padding: 0.6rem;
  }
  .catalog-detail .varianti-column #variante-consegna .prodottiprint-radiobutton .prodottiprint-inputradiobutton .prodottiprint-radiobuttonconsegna-total {
    margin: auto;
  }
}
.catalog-detail .varianti-column #variante-consegna .prodottiprint-radiobutton .prodottiprint-inputradiobutton .prodottiprint-radiobuttonconsegna-weekday {
  font-weight: 400 !important;
  border-radius: 0.25rem 0.25rem 0 0;
}
.catalog-detail .varianti-column #variante-consegna .prodottiprint-radiobutton .prodottiprint-inputradiobutton .prodottiprint-radiobuttonconsegna-discount {
  background-color: #01D0B8;
  border-radius: 50rem;
  padding: 0.25rem 0.75rem;
}
.catalog-detail .varianti-column #variante-consegna .prodottiprint-radiobutton .prodottiprint-inputradiobutton .prodottiprint-radiobuttonconsegna-total {
  margin-bottom: 0.5rem;
  position: absolute;
  bottom: 0;
}
.catalog-detail .varianti-column #variante-consegna .prodottiprint-radiobutton .prodottiprint-inputradiobutton .prodottiprint-radiobuttonconsegna-weekday,
.catalog-detail .varianti-column #variante-consegna .prodottiprint-radiobutton .prodottiprint-inputradiobutton .prodottiprint-radiobuttonconsegna-monthday,
.catalog-detail .varianti-column #variante-consegna .prodottiprint-radiobutton .prodottiprint-inputradiobutton .prodottiprint-radiobuttonconsegna-month,
.catalog-detail .varianti-column #variante-consegna .prodottiprint-radiobutton .prodottiprint-inputradiobutton .prodottiprint-radiobuttonconsegna-discount {
  font-weight: 600;
}
.catalog-detail .varianti-column #variante-consegna .prodottiprint-radiobutton .prodottiprint-inputradiobutton .prodottiprint-radiobuttonconsegna-monthday {
  font-size: 28px;
}
.catalog-detail .varianti-column #variante-consegna .prodottiprint-radiobutton .prodottiprint-inputradiobutton:hover .prodottiprint-radiobuttonconsegna-weekday {
  background-color: #8B969E;
}
.catalog-detail .varianti-column #variante-consegna .prodottiprint-radiobutton .prodottiprint-inputradiobutton.active .prodottiprint-radiobuttonconsegna-weekday {
  background-color: #8B969E;
}
@media (max-width: 576px) {
  .catalog-detail .varianti-column #variante-consegna .prodottiprint-button-grid-mobile-1 {
    grid-template-columns: 1fr 1fr;
  }
  .catalog-detail .varianti-column #variante-consegna .prodottiprint-button-grid-mobile-1 .prodottiprint-inputradiobutton {
    height: 160px;
    flex-direction: column;
    position: relative;
  }
}
.catalog-detail .prodottiprint-serigrafiatabs div:nth-child(2) .card {
  border: 0;
}
.catalog-detail .prodottiprint-serigrafiatabs div:nth-child(2) .card .card-body {
  padding: 0;
}
.catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-card-custom .card-body {
  padding: 1rem;
}
.catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-card-custom p {
  color: #395357;
  font-size: 14px;
  margin-bottom: 1.5rem;
}
.catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-colorchoose {
  margin-bottom: 0.75rem;
}
.catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-colorchoose .badge {
  background: #1C1C1B;
  font-size: 0.625rem;
  top: -5px;
  right: 4px;
  border-radius: 50rem;
}
.catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-colorchoose .badge.not-available {
  background: #F56C6C;
}
.catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-colorchoose .circle-color {
  margin: 0 8px;
  border: 2px solid #F2F2F2;
  box-shadow: unset;
}
.catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-colorchoose .circle-color i {
  color: #8B969E;
  font-size: 1.75rem;
  font-weight: 600;
}
.catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-colorchoose .circle-color.tabs {
  border-radius: 50%;
}
.catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-colorchoose .circle-color.selected {
  box-shadow: 0 0 0 3px #01D0B8;
}
.catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-colorsize .prodottiprint-inputplusmin .prodottiprint-multisubject-qt.selected {
  border: 1.5px solid #8B969E;
  border-radius: 50rem;
}
.catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-colorsize .prodottiprint-inputplusmin .prodottiprint-multisubject-qt.selected .prodottiprint-multisubject-qt-minus {
  border-right: 1.5px solid #8B969E;
}
.catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-colorsize .prodottiprint-inputplusmin .prodottiprint-multisubject-qt.selected .prodottiprint-multisubject-qt-minus:active {
  border-right: 1.5px solid #8B969E !important;
}
.catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-colorsize .prodottiprint-inputplusmin .prodottiprint-multisubject-qt.selected .prodottiprint-multisubject-qt-plus {
  border-left: 1.5px solid #8B969E;
}
.catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-colorsize .prodottiprint-inputplusmin .prodottiprint-multisubject-qt.selected .prodottiprint-multisubject-qt-plus:active {
  border-left: 1.5px solid #8B969E !important;
}
.catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-colorsize .prodottiprint-inputplusmin .prodottiprint-multisubject-qt.selected .prodottiprint-multisubject-qt-input {
  border: 0;
  border-right: 0 !important;
  border-left: 0 !important;
}
.catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-colorsize .prodottiprint-inputplusmin .prodottiprint-multisubject-qt .prodottiprint-multisubject-btn,
.catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-colorsize .prodottiprint-inputplusmin .prodottiprint-multisubject-qt .prodottiprint-multisubject-qt-input {
  height: 32px;
}
.catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-colorsize .prodottiprint-inputplusmin .prodottiprint-multisubject-qt .prodottiprint-multisubject-qt-minus,
.catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-colorsize .prodottiprint-inputplusmin .prodottiprint-multisubject-qt .prodottiprint-multisubject-qt-plus {
  display: flex;
  align-items: center;
}
.catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-colorsize .prodottiprint-inputplusmin .prodottiprint-multisubject-qt .prodottiprint-multisubject-qt-minus:active,
.catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-colorsize .prodottiprint-inputplusmin .prodottiprint-multisubject-qt .prodottiprint-multisubject-qt-plus:active {
  background-color: #F2F2F2 !important;
}
.catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-colorsize .prodottiprint-inputplusmin .prodottiprint-multisubject-qt .prodottiprint-multisubject-qt-minus:focus-visible,
.catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-colorsize .prodottiprint-inputplusmin .prodottiprint-multisubject-qt .prodottiprint-multisubject-qt-plus:focus-visible {
  background-color: #F2F2F2 !important;
}
.catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-colorsize .prodottiprint-inputplusmin .prodottiprint-multisubject-qt .prodottiprint-multisubject-qt-input {
  border-top: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
  border-right: 0;
  border-left: 0;
  border-radius: 0 !important;
  box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-colorsize .prodottiprint-inputplusmin .prodottiprint-multisubject-qt .prodottiprint-multisubject-qt-input {
    width: 90px;
  }
}
.catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-colorsize .prodottiprint-inputplusmin .prodottiprint-multisubject-qt .prodottiprint-multisubject-qt-input:disabled {
  box-shadow: none;
}
.catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-colorsize .prodottiprint-inputplusmin .prodottiprint-multisubject-qt .serigrafia-button {
  border: 1px solid #E6E6E6;
  border-radius: 50rem 0 0 50rem;
}
.catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-colorsize .prodottiprint-inputplusmin .prodottiprint-multisubject-qt .serigrafia-button:nth-of-type(2) {
  border-radius: 0 50rem 50rem 0;
}
@media (min-width: 768px) {
  .catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-colorsize .prodottiprint-inputplusmin .prodottiprint-multisubject-qt.disabled-input .prodottiprint-multisubject-qt-input {
    width: 101px;
  }
}
.catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-colorsize .taglia-qta-box {
  padding: 1rem;
  border: 1px solid rgba(208, 208, 208, 0.7);
  background-color: rgba(247, 247, 247, 0.5);
}
.catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-colorsize .taglia-qta-box h5, .catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-colorsize .taglia-qta-box .h5 {
  font-size: 0;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 1rem !important;
}
.catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-colorsize .taglia-qta-box ul {
  margin-bottom: 0;
}
.catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-colorsize .taglia-qta-box ul li {
  margin: 0;
  padding-bottom: 0.5rem;
  border-bottom: 0;
}
.catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-colorsize .taglia-qta-box ul li .label-taglia {
  width: 45px;
  max-width: 100px;
  font-weight: 600 !important;
  padding-right: 0;
}
.catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-colorsize .actions-footer .delete {
  border: 1px solid #E6E6E6;
  padding: 0 1.35rem !important;
}
.catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-colorsize .actions-footer .delete i {
  font-weight: 400 !important;
  margin-right: 0.5rem !important;
}
.catalog-detail .prodottiprint-serigrafiatabs .prodottiprint-colorsize .actions-footer .delete:active {
  color: #F56C6C !important;
  border: 1.5px solid #F56C6C;
}
.catalog-detail .prodottiprint-serigrafiatabs #prodottiprint-tabs-taglia-colore .tab-content {
  border-radius: 0 1rem 1rem 1rem;
  padding: 1rem;
}
.catalog-detail .prodottiprint-serigrafiatabs #prodottiprint-tabs-taglia-colore li a .color-name {
  font-size: 14px;
  margin-left: 0.8rem !important;
}
.catalog-detail .prodottiprint-serigrafiatabs #prodottiprint-tabs-taglia-colore .prodottiprint-colorsize .col-sm-6:first-child {
  width: 41.66666667%;
  padding-right: 0;
}
.catalog-detail .prodottiprint-serigrafiatabs #prodottiprint-tabs-taglia-colore .prodottiprint-colorsize .col-sm-6:nth-child(2) {
  width: 58.33333333%;
}
.catalog-detail .prodottiprint-serigrafiatabs #prodottiprint-tabs-taglia-colore .prodottiprint-colorsize .col-sm-6 .img-prodotto-wrapper {
  border: 1px solid #F2F2F2;
  border-radius: 1rem;
}
.catalog-detail .prodottiprint-serigrafiatabs #prodottiprint-tabs-taglia-colore .prodottiprint-colorsize .col-sm-6 .img-prodotto-wrapper img {
  max-height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
}
.catalog-detail .prodottiprint-serigrafiatabs #prodottiprint-tabs-taglia-colore .prodottiprint-colorsize .zoom-icon {
  right: 1.25rem;
  top: 1rem;
}
.catalog-detail .prodottiprint-button-text,
.catalog-detail .prodottiprint-radiobutton-text {
  font-size: 14px !important;
  padding-top: 0.75rem;
}
.catalog-detail .delete .fas {
  font-weight: 500;
}
.catalog-detail .serigrafia-input {
  padding: 0.5rem;
}
.catalog-detail .serigrafia-input.is-added {
  padding: 0.5rem 0 0.25rem 0;
}
.catalog-detail .serigrafia-input.is-added .prodottiprint-button-text {
  padding-bottom: 0.5rem;
}
.catalog-detail .serigrafia-input.is-added .prodottiprint-checkbox-infobox {
  width: 100%;
}
.catalog-detail .serigrafia-input.is-added .prodottiprint-checkbox-infobox button {
  width: 100%;
  border-top: 0;
  padding-top: 0.35rem;
  margin-top: 0.25rem;
}
.catalog-detail .serigrafia-input.is-added .prodottiprint-checkbox-infobox button i {
  font-size: 16px;
}
.catalog-detail .prodottiprint-positionstabs p.font-weight-bold {
  color: #000;
  font-weight: 600 !important;
}
.catalog-detail .prodottiprint-positionstabs p {
  color: #495057;
  font-size: 14px;
}
.catalog-detail .prodottiprint-positionstabs .help-text p {
  font-size: 16px;
}
.catalog-detail .prodottiprint-positionstabs .card-body {
  padding: 1rem;
}
.catalog-detail .prodottiprint-positionstabs .prodottiprint-button-media {
  height: unset;
}
.catalog-detail .prodottiprint-positionstabs .prodottiprint-button-text {
  font-size: 14px;
  padding-top: 0.5rem;
}
.catalog-detail .prodottiprint-positionstabs .serigrafia-input.active {
  background-color: unset !important;
  border: 2px solid #8B969E !important;
}
.catalog-detail .prodottiprint-positionstabs .serigrafia-input.active .prodottiprint-radiobutton-text {
  border-top: 0 !important;
}
.catalog-detail .prodottiprint-positionstabs .toggle-height i:hover {
  cursor: pointer;
}
.catalog-detail .prodottiprint-positionstabs .toggle-height {
  display: none;
}
.catalog-detail .prodottiprint-positionstabs .prodotti-print-posizioni-wrapper .prodottiprint-horizontal-list-input-single-box {
  display: block !important;
  margin-bottom: 1rem;
}
.catalog-detail .prodottiprint-positionstabs .prodotti-print-posizioni-wrapper .prodottiprint-horizontal-list-input-single-box .serigrafia-input.is-added {
  border: 2px solid #8B969E;
  box-shadow: 0 5px 10px rgba(139, 150, 158, 0.2) !important;
  border-radius: 0.5rem !important;
}
.catalog-detail .prodottiprint-positionstabs .prodotti-print-posizioni-wrapper .prodottiprint-horizontal-list-input-single-box .serigrafia-input.is-added .prodottiprint-checkbox-infobox-btn {
  border-top: 0 !important;
}
.catalog-detail .prodottiprint-positionstabs .is-added-icon-wrapper .icon-box {
  border: 1px solid #01D0B8;
  background-color: #01D0B8 !important;
}
.catalog-detail #prodotti-print-tabs-dimensione-lavorazioni .tab-content {
  border: 2px solid #F2F2F2;
  padding: 1rem;
}
.catalog-detail #prodotti-print-tabs-dimensione-lavorazioni .prodotti-print-fake-title {
  font-size: 16px;
}
.catalog-detail #prodotti-print-tabs-dimensione-lavorazioni .nav-tabs .nav-item {
  top: 2px;
}
.catalog-detail #prodotti-print-tabs-dimensione-lavorazioni .nav-tabs .nav-item .nav-link {
  background-color: #fff;
  padding: 0.7rem 5rem 0.7rem 1rem;
  border-radius: 1.25rem 1.25rem 0 0;
}
.catalog-detail #prodotti-print-tabs-dimensione-lavorazioni .nav-tabs .nav-item .nav-link span {
  color: #000 !important;
}
.catalog-detail #prodotti-print-tabs-dimensione-lavorazioni .nav-tabs .nav-item .nav-link.active {
  border-top: 2px solid #F2F2F2;
  border-right: 2px solid #F2F2F2;
  border-left: 2px solid #F2F2F2;
  background-color: #fff;
}
.catalog-detail #prodotti-print-tabs-dimensione-lavorazioni .nav-tabs .nav-item .nav-link.active span {
  color: #8B969E;
  font-weight: 600;
}
.catalog-detail #prodotti-print-tabs-dimensione-lavorazioni .nav-tabs .nav-item .remove-tab-icon {
  right: 20px;
  top: 5px;
}
.catalog-detail #prodotti-print-tabs-dimensione-lavorazioni .prodottiprint-singleposition .prodotti-print-actions-footer {
  justify-content: flex-end !important;
}
.catalog-detail #prodotti-print-tabs-dimensione-lavorazioni .prodottiprint-singleposition .prodotti-print-actions-footer .delete {
  border: 1px solid #E6E6E6;
  padding: 0 1.35rem !important;
}
.catalog-detail #prodotti-print-tabs-dimensione-lavorazioni .prodottiprint-singleposition .prodotti-print-actions-footer .delete i {
  font-weight: 400 !important;
  margin-right: 0.5rem !important;
}
.catalog-detail #prodotti-print-tabs-dimensione-lavorazioni .prodottiprint-singleposition .prodotti-print-actions-footer .delete:active {
  color: #F56C6C !important;
  border: 1.5px solid #F56C6C;
}
.catalog-detail #prodotti-print-tabs-dimensione-lavorazioni .prodottiprint-singleposition .prodotti-print-actions-footer.mt-2 {
  margin-top: 0 !important;
}
.catalog-detail #prodotti-print-tabs-dimensione-lavorazioni .prodottiprint-singleposition .prodotti-print-fake-title {
  font-size: 18px;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
}
.catalog-detail #prodotti-print-tabs-dimensione-lavorazioni .serigrafia-input {
  padding: 0 0 0.5rem 0;
}
.catalog-detail #prodotti-print-tabs-dimensione-lavorazioni .serigrafia-input .prodottiprint-button-media-box img {
  border-radius: 0.25rem 0.25rem 0 0;
}
.catalog-detail #prodotti-print-tabs-dimensione-lavorazioni .serigrafia-input .zoom-icon i {
  color: #000;
}
.catalog-detail #prodottoForm .input-group .input-group-append {
  position: unset !important;
}
.catalog-detail .tab-container .container {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 2rem 3rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
}
@media (max-width: 576px) {
  .catalog-detail .tab-container .container {
    padding: 1.5rem;
  }
}
.catalog-detail .tab-container .container .nav-tabs {
  border-bottom: 1px solid rgba(208, 208, 208, 0.5);
  justify-content: space-between;
}
.catalog-detail .tab-container .container .nav-tabs .nav-item .nav-link {
  border: 0;
  font-weight: 600;
  padding: 0.75rem 1rem;
}
.catalog-detail .tab-container .container .nav-tabs .nav-item .nav-link:hover {
  color: #01D0B8;
}
.catalog-detail .tab-container .container .nav-tabs .nav-item .nav-link.active {
  color: #01D0B8;
  border-bottom: 4px solid #01D0B8;
}
@media (max-width: 576px) {
  .catalog-detail .tab-container .container .nav-tabs .nav-item {
    width: 100%;
  }
  .catalog-detail .tab-container .container .nav-tabs .nav-item .nav-link {
    width: 100%;
  }
}
.catalog-detail .tab-container .container .tab-content {
  color: #395357;
  border: 0 !important;
  padding: 0 !important;
  padding-top: 2rem !important;
}
.catalog-detail .help-box {
  background: linear-gradient(120deg, rgb(56, 209, 188) 0%, rgb(85, 221, 158) 100%);
}
.catalog-detail .help-box .col-xl-1 {
  width: 13%;
}
.catalog-detail .help-box__text {
  color: #fff;
}
.catalog-detail .help-box__text .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.catalog-detail .help-box__text .text {
  line-height: 1.25rem;
}
.catalog-detail .help-box__link .btn-product {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  border: 0;
  border-radius: 1rem;
  padding: 2rem 0.5rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
}
.catalog-detail .help-box__link .btn-product i {
  font-size: 48px;
  padding-bottom: 1rem;
}
@media (max-width: 992px) {
  .catalog-detail .help-box__link .btn-product i {
    font-size: 36px;
  }
}
.catalog-detail .help-box__link .btn-product .title {
  font-weight: 500;
}
@media (max-width: 992px) {
  .catalog-detail .help-box__link .btn-product {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .catalog-detail .help-box__link .btn-product {
    width: 145px;
    height: 145px;
  }
}
.catalog-detail .help-box__link .btn-product:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

@media (max-width: 992px) {
  .catalog-list .testata-page {
    padding: 0 1rem;
  }
}
.catalog-list .testata-page__banner {
  border-radius: 2rem;
  background-color: #F4F4EC;
}
@media (max-width: 576px) {
  .catalog-list .testata-page__banner {
    border-radius: 0;
  }
}
.catalog-list .cover {
  height: unset;
}
.catalog-list .cover img {
  height: unset;
  border-radius: 1.25rem;
}
.catalog-list .catalog-list-head h1, .catalog-list .catalog-list-head .h1 {
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 576px) {
  .catalog-list .catalog-list-head h1, .catalog-list .catalog-list-head .h1 {
    font-size: 24px;
  }
}
.catalog-list .long_description {
  color: #495057;
}
.catalog-list .long_description p {
  margin-bottom: 0;
}
.catalog-list .long_description ul {
  padding-left: 1rem;
}
.catalog-list .long_description ul li {
  padding-left: 0.25rem;
}
@media (max-width: 992px) {
  .catalog-list .cover {
    order: 1;
  }
  .catalog-list .description-container {
    order: 2;
    padding-top: 1.5rem;
  }
}
.catalog-list .block-text h2, .catalog-list .block-text .h2 {
  margin-bottom: 0;
}

.dropdown_megamenu {
  position: absolute;
  top: 131.9px;
  left: 0;
  z-index: -1;
  height: 550px;
  width: 100%;
  background-color: #fff;
  overflow: clip;
}
.dropdown_megamenu > .container {
  background-color: #E6E6E6;
}
.dropdown_megamenu .bg-megamenu {
  height: 100%;
  width: 40%;
  background-color: #E6E6E6;
  position: absolute;
  right: 0;
  z-index: 1;
}
.dropdown_megamenu .navbar-megamenu {
  background-color: #fff;
}
.dropdown_megamenu .navbar-megamenu .menu__main__link .nav-link {
  color: #343a40;
  font-size: 14px;
  padding: 0.5rem 1.5rem;
}
.dropdown_megamenu .navbar-megamenu .menu__main__link .nav-link:hover {
  color: #000;
  font-weight: 600;
  background-color: #FAFAFA;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.dropdown_megamenu .navbar-megamenu .menu__main__link .nav-link.dropdown-toggle::after {
  display: none;
}
.dropdown_megamenu .navbar-megamenu .openmegamenu {
  position: static;
  width: 100%;
}
.dropdown_megamenu .navbar-megamenu .openmegamenu.prodotto-active .nav-link.dropdown-toggle {
  color: #000;
  font-weight: 600;
  background-color: #FAFAFA;
  text-decoration: underline;
}
.dropdown_megamenu .navbar-megamenu .megamenu-container {
  display: none;
  position: absolute;
  width: 100%;
  height: 550px;
  left: 25%;
  top: 0;
}
.dropdown_megamenu .navbar-megamenu .megamenu-container .container {
  height: 100%;
}
.dropdown_megamenu .navbar-megamenu .megamenu-container .megamenu {
  width: 75%;
  margin: 0;
  position: relative;
}
.dropdown_megamenu .navbar-megamenu .megamenu-container .megamenu .parent-col {
  width: 33%;
  background-color: #FAFAFA;
  overflow-y: auto;
}
.dropdown_megamenu .navbar-megamenu .megamenu-container .megamenu .parent-col .parent-section .parent .nav-link {
  color: #343a40;
  font-size: 14px;
  font-weight: 400;
  padding: 0.5rem 1.5rem;
}
.dropdown_megamenu .navbar-megamenu .megamenu-container .megamenu .parent-col .parent-section .parent .nav-link:hover {
  color: #000;
  font-weight: 600;
  background-color: #F2F2F2;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.dropdown_megamenu .navbar-megamenu .megamenu-container .megamenu .parent-col .parent-section .child-col {
  width: 68.5%;
  position: absolute;
  top: 0;
  left: 33%;
  overflow-y: auto;
}
.dropdown_megamenu .navbar-megamenu .megamenu-container .megamenu .parent-col .parent-section .child-col .child-box {
  position: relative;
  height: 100%;
  z-index: 2;
}
.dropdown_megamenu .navbar-megamenu .megamenu-container .megamenu .parent-col .parent-section .child-col .child-box .child-section {
  width: 48%;
  height: 100%;
  background-color: #F2F2F2;
  overflow-y: auto;
}
.dropdown_megamenu .navbar-megamenu .megamenu-container .megamenu .parent-col .parent-section .child-col .child-box .child-section .child .nav-link {
  color: #343a40;
  font-size: 14px;
  font-weight: 400;
  padding: 0.5rem 1.5rem;
}
.dropdown_megamenu .navbar-megamenu .megamenu-container .megamenu .parent-col .parent-section .child-col .child-box .child-section .child .nav-link:hover {
  color: #000;
  font-weight: 600;
  background-color: #E6E6E6;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.dropdown_megamenu .navbar-megamenu .megamenu-container .megamenu .img-side {
  position: absolute;
  top: 2rem;
  right: 0;
  z-index: 1;
}
.dropdown_megamenu .navbar-megamenu .megamenu-container .megamenu .img-side .img-container {
  width: 300px;
  height: 300px;
}
@media (max-width: 1400px) {
  .dropdown_megamenu .navbar-megamenu .megamenu-container .megamenu .img-side .img-container {
    width: 250px;
    height: 250px;
  }
}
.dropdown_megamenu .navbar-megamenu .megamenu-container .megamenu .img-side .img-container img {
  width: 300px;
  height: 300px;
  max-height: unset;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #D0D0D0;
  border-radius: 1rem;
}
@media (max-width: 1400px) {
  .dropdown_megamenu .navbar-megamenu .megamenu-container .megamenu .img-side .img-container img {
    width: 250px;
    height: 250px;
  }
}
.dropdown_megamenu .navbar-megamenu .megamenu-container .megamenu .parent-section.prodotto-active .parent {
  background-color: #F2F2F2;
}
.dropdown_megamenu .navbar-megamenu .megamenu-container .megamenu .parent-section.prodotto-active .parent .nav-link {
  color: #000;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.dropdown_megamenu .navbar-megamenu .megamenu-container .megamenu .child.prodotto-active {
  background-color: #E6E6E6;
}
.dropdown_megamenu .navbar-megamenu .megamenu-container .megamenu .child.prodotto-active .nav-link {
  color: #000 !important;
  font-weight: 600 !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

#custom-toggle {
  width: 45px;
  height: 45px;
  border: 1px solid #D0D0D0;
  border-radius: 50rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#custom-toggle .bar1,
#custom-toggle .bar2,
#custom-toggle .bar3 {
  width: 20px;
  height: 1.5px;
  background-color: #1E1A34;
  margin: 6px 0;
  transition: 0.1s;
}
#custom-toggle:hover {
  cursor: pointer;
  background-color: #1C1C1B;
}
#custom-toggle:hover .bar1,
#custom-toggle:hover .bar2,
#custom-toggle:hover .bar3 {
  background-color: #F7F7F7;
}

#custom-toggle.change {
  background-color: #1C1C1B;
}
#custom-toggle.change .bar1,
#custom-toggle.change .bar3 {
  background-color: #fff;
}

.change .bar1 {
  transform: rotate(-45deg) translate(-5px, 5px);
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  transform: rotate(45deg) translate(-6px, -5px);
}

#mobile-menu {
  display: none;
  list-style: none;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  position: absolute;
  left: 0;
  z-index: -1;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.06);
}
#mobile-menu .search {
  background-color: #F7F7F7;
}
#mobile-menu .search .search-autocomplete {
  margin: 0;
}
#mobile-menu .search input {
  border-radius: 50rem;
  min-width: 350px;
  background-color: rgba(30, 26, 52, 0.05);
  padding-top: 0;
  padding-bottom: 0;
}
#mobile-menu .search input:not(:-moz-placeholder-shown) ~ label {
  display: none;
}
#mobile-menu .search input:not(:placeholder-shown) ~ label {
  display: none;
}
#mobile-menu .search input:focus {
  padding-left: 1.5rem;
}
#mobile-menu .search input:focus ~ label {
  font-size: 0.6rem;
  top: -5px;
  padding-top: 0;
}
#mobile-menu .search label {
  left: 1.5rem;
  line-height: 2.5;
}
#mobile-menu .search #search-accelasearch-icon {
  position: absolute;
  right: 1.5rem;
  font-size: 20px;
}
#mobile-menu .search #search-autocomplete-icon {
  right: 1.5rem;
  width: 3%;
  font-size: 1.2em;
}
#mobile-menu .search #search-autocomplete {
  min-width: 300px;
  padding-left: 1.5rem;
}
#mobile-menu .menu .main-menu .menu-level-0 a,
#mobile-menu .menu .under-menu .menu-level-0 a {
  font-weight: 400;
  border-bottom: 1px solid rgba(208, 208, 208, 0.5);
  padding: 0.8rem 0;
}
#mobile-menu .menu .main-menu .menu-level-0 a:hover,
#mobile-menu .menu .under-menu .menu-level-0 a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
#mobile-menu .menu .main-menu .menu-level-1,
#mobile-menu .menu .under-menu .menu-level-1 {
  background-color: rgba(30, 26, 52, 0.03);
}
#mobile-menu .menu .main-menu .menu-level-1 a,
#mobile-menu .menu .under-menu .menu-level-1 a {
  padding: 0.8rem 0;
  margin: 0 1rem;
}
#mobile-menu .menu .main-menu .menu-level-2,
#mobile-menu .menu .under-menu .menu-level-2 {
  background-color: rgba(30, 26, 52, 0.05);
}
#mobile-menu .menu .main-menu .menu-level-2 a,
#mobile-menu .menu .under-menu .menu-level-2 a {
  border-bottom: 1px solid rgba(208, 208, 208, 0.5);
}
#mobile-menu .menu .main-menu .menu-level-3,
#mobile-menu .menu .under-menu .menu-level-3 {
  background-color: rgba(30, 26, 52, 0.08);
}
#mobile-menu .menu .main-menu .menu-level-3 a,
#mobile-menu .menu .under-menu .menu-level-3 a {
  border-bottom: 1px solid rgba(208, 208, 208, 0.5);
}
#mobile-menu .menu .main-menu i,
#mobile-menu .menu .under-menu i {
  margin-top: 0.3rem;
  font-size: 20px;
  font-weight: 300;
}
#mobile-menu .menu .contact-menu .menu-level-0 a,
#mobile-menu .menu .contact-menu .menu-level-0 span {
  font-weight: 400;
  padding: 0.35rem 0;
}
#mobile-menu .menu .contact-menu .menu-level-0 a:hover,
#mobile-menu .menu .contact-menu .menu-level-0 span:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
#mobile-menu .menu .contact-menu i {
  font-size: 16px;
}
#mobile-menu .menu .contact-menu .social a {
  padding: 0.25rem 0.5rem;
}
#mobile-menu .menu .contact-menu .social a span {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50rem;
  background-color: #01D0B8;
  transition: 0.2s;
}
#mobile-menu .menu .contact-menu .social a span i {
  color: #fff;
}
#mobile-menu .menu .contact-menu .social a:hover span {
  background-color: #00BCA6;
}
#mobile-menu .menu .contact-menu .social a:hover span i {
  color: #fff;
}
#mobile-menu .menu .contact-menu .social a:first-child {
  padding-left: 0;
}

.quote-desktop-a.sticky-top {
  top: 9rem !important;
  z-index: 1000 !important;
}

.quote-desktop-a .calculate .btn {
  color: #fff;
  border-radius: 50rem;
  padding: 0.15rem;
}
.quote-desktop-a .calculate .btn:disabled {
  color: #fff;
}
.quote-desktop-a .quotation {
  background-color: #F2F2F2;
  border: 1px solid #E6E6E6;
  border-radius: 0.5rem;
}
.quote-desktop-a .quotation .btn {
  color: #fff;
  font-size: 16px;
  padding: 0.15rem;
  border-radius: 50rem;
}
.quote-desktop-a .quotation .btn:disabled {
  color: #fff;
}
.quote-desktop-a #quote-toggle2 {
  border-radius: 0 0 0.5rem 0.5rem;
  padding: 0.35rem;
  background-color: #E6E6E6;
}
.quote-desktop-a #quote-toggle2 div {
  color: #395357;
  font-size: 14px;
}
.quote-desktop-a #quote-toggle2 div i {
  color: #395357;
  font-size: 18px;
  font-weight: 700;
  padding-left: 0.5rem;
}
.quote-desktop-a .technical-detail {
  background-color: #F2F2F2;
  border: 1px solid #E6E6E6;
  border-radius: 0.5rem;
}
.quote-desktop-a .technical-detail .price-item .card {
  border: 1px solid #E6E6E6;
  border-radius: 0.5rem;
}
.quote-desktop-a .technical-detail .price-item .card i {
  color: #395357;
}
.quote-desktop-a .technical-detail .color__item__circle {
  width: 20px;
  height: 20px;
  border-radius: 50rem;
  margin-right: 0.5rem;
}
.quote-desktop-a .technical-detail .color__item__name {
  text-transform: capitalize;
  font-weight: 600;
}
.quote-desktop-a .technical-detail .color .d-flex.border-bottom:last-child {
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.quote-desktop-a .technical-detail .size__item {
  font-weight: 400;
  padding-right: 0.35rem;
}
.quote-desktop-a .technical-detail .size__item:after {
  content: "-";
  padding-left: 0;
}
.quote-desktop-a .technical-detail .size__item:last-child {
  padding-right: 0;
}
.quote-desktop-a .technical-detail .size__item:last-child::after {
  display: none;
}
.quote-desktop-a .technical-detail .size__item .size__quantity {
  margin-left: -0.25rem;
}
.quote-desktop-a .technical-detail .custom__item {
  font-weight: 600;
}
.quote-desktop-a .technical-detail .type__item .type__info {
  font-weight: 400;
}
.quote-desktop-a .price-detail {
  background-color: #F2F2F2;
  border: 1px solid #E6E6E6;
  border-radius: 0.5rem;
  padding: 1rem;
}
.quote-desktop-a .price-detail .card {
  border: 1px solid #E6E6E6;
  border-radius: 0.5rem;
}
.quote-desktop-a .price-detail .card i {
  color: #395357;
}
.quote-desktop-a .price-detail .unitary-price {
  color: #395357;
  font-size: 14px;
  font-weight: 400;
}
.quote-desktop-a .price-detail .total_with_vat,
.quote-desktop-a .price-detail .total_no_vat {
  font-size: 16px;
}
.quote-desktop-a .price-detail i {
  color: #000;
}
.quote-desktop-a .price-detail .total-price .total_with_vat {
  font-size: 36px;
  font-weight: 700;
}
.quote-desktop-a .price-detail .discount-section .badge {
  background-color: #F56C6C;
  border-radius: 50rem;
  height: 19px;
}
.quote-desktop-a .header-title {
  font-size: 18px;
}
.quote-desktop-a button.accordion-button .apriquote i,
.quote-desktop-a button.accordion-button .chiudiquote i {
  color: #fff;
  font-size: 28px;
  font-weight: 500;
}
.quote-desktop-a button.accordion-button .apriquote {
  display: none;
}
.quote-desktop-a button.accordion-button.collapsed .apriquote {
  display: block;
}
.quote-desktop-a button.accordion-button.collapsed .chiudiquote {
  display: none;
}
.quote-desktop-a button.accordion-button:focus {
  box-shadow: none;
}
.quote-desktop-a .info-card {
  background-color: #fff;
  border: 1px solid #E6E6E6;
  border-radius: 0 0 0.25rem 0.25rem !important;
}
.quote-desktop-a .info-card .card {
  border: 0;
  border-radius: 0;
}
.quote-desktop-a .info-card .badge {
  border-radius: 50rem;
  font-weight: 500;
}
.quote-desktop-a .info-data {
  color: #395357;
  font-size: 16px;
  font-weight: 500;
}
.quote-desktop-a .single-data {
  color: #395357;
  font-size: 14px;
  font-weight: 500;
}
.quote-desktop-a .unitary.single-data {
  color: #000;
  font-weight: 600;
}
.quote-desktop-a .fa-spinner {
  color: #000;
  font-size: 18px;
}
.quote-desktop-a .shipping-box {
  background-color: rgba(1, 208, 184, 0.09);
  border: 1px solid rgba(1, 208, 184, 0.5);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
}
.quote-desktop-a .shipping-box .icon {
  transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.quote-desktop-a .shipping-box .icon span {
  font-size: 2rem;
}
.quote-desktop-a .shipping-box .text .price {
  font-size: 16px;
  line-height: normal;
  margin-bottom: 0.25rem;
}
.quote-desktop-a .shipping-box .text .price span {
  font-size: 18px;
}
.quote-desktop-a .shipping-box .text p {
  color: rgba(28, 28, 27, 0.9);
  font-size: 14px;
  line-height: 18px;
}
.quote-desktop-a .shipping-box .text p span {
  text-transform: uppercase;
  font-weight: 700;
}
.quote-desktop-a .shipping-box .text.border-start {
  border-left: 1px solid rgba(1, 208, 184, 0.5) !important;
}
.quote-desktop-a .need-help .title {
  font-size: 18px;
  font-weight: 700;
}
.quote-desktop-a .need-help a {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  background-color: rgba(244, 244, 236, 0.7);
  border: 1px solid rgba(208, 208, 208, 0.8);
  border-radius: 50rem;
  transition: all 0.2s;
}
.quote-desktop-a .need-help a i {
  color: #395357;
  font-size: 28px;
}
.quote-desktop-a .need-help a:hover {
  background-color: #1C1C1B;
}
.quote-desktop-a .need-help a:hover i {
  color: #fff;
}
.quote-desktop-a #add-basket-button,
.quote-desktop-a #edit-design-button {
  color: #fff;
  font-weight: 600;
  border-radius: 50rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.quote-desktop-a #add-basket-button i,
.quote-desktop-a #edit-design-button i {
  color: #fff;
  font-size: 18px;
  margin-right: 0.35rem;
  vertical-align: middle;
}

.quote-mobile-container.sticky-bottom {
  bottom: 0;
  z-index: 1023;
}

.quote-mobile {
  border: 1px solid #E6E6E6;
  border-bottom: 0;
  background-color: #F2F2F2;
  border-radius: 0.5rem;
}
.quote-mobile .dropup button {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid rgba(208, 208, 208, 0.5);
  border-radius: 50rem;
}
.quote-mobile .dropup button i {
  font-size: 20px;
  font-weight: 300;
}
.quote-mobile .dropup button:hover {
  background-color: #1C1C1B;
}
.quote-mobile .dropup button:hover i {
  color: #fff;
}
.quote-mobile .dropup .dropdown-menu {
  border: 1px solid rgba(208, 208, 208, 0.5);
  border-radius: 0.75rem;
}
.quote-mobile .dropup .dropdown-menu li {
  transition: 0.2s;
}
.quote-mobile .dropup .dropdown-menu li:hover a {
  background-color: #F7F7F7;
}
.quote-mobile .dropup .dropdown-menu li:first-child a {
  border-radius: 0.75rem 0.75rem 0 0;
}
.quote-mobile .dropup .dropdown-menu li:last-child a {
  border-radius: 0 0 0.75rem 0.75rem;
}
.quote-mobile .dropup .dropdown-menu li a {
  padding: 0.35rem 1.5rem;
}
.quote-mobile .dropup .dropdown-menu li a i {
  font-weight: 300;
}
.quote-mobile .dropup .quote-mobile__quotation i {
  margin-right: 0;
}
.quote-mobile .quote-mobile__detail h4, .quote-mobile .quote-mobile__detail .h4 {
  margin: 0;
  padding: 0;
  border: 0;
}
.quote-mobile .quote-mobile__item {
  background-color: #fff;
  border: 1px solid rgba(208, 208, 208, 0.5);
  border-radius: 0.75rem;
  padding: 0.5rem 0.8rem;
}
@media (max-width: 320px) {
  .quote-mobile .quote-mobile__item {
    height: 78px;
  }
}
.quote-mobile .quote-mobile__item:hover {
  color: unset;
}
.quote-mobile .quote-mobile__item__price__value {
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 576px) {
  .quote-mobile .quote-mobile__item__price__value {
    height: 1.5rem;
    font-size: 16px;
  }
}
.quote-mobile .quote-mobile__item__price__info {
  color: #395357;
  font-size: 12px;
  font-weight: 400;
}
@media (max-width: 576px) {
  .quote-mobile .quote-mobile__item__price__info {
    line-height: 1rem;
  }
}
.quote-mobile .quote-mobile__item__ship .shipping-date {
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 576px) {
  .quote-mobile .quote-mobile__item__ship .shipping-date {
    height: 1.5rem;
    font-size: 16px;
  }
}
.quote-mobile .quote-mobile__item__ship .quote-mobile__detail__info__title {
  color: #395357;
  font-size: 12px;
  font-weight: 400;
}
@media (max-width: 576px) {
  .quote-mobile .quote-mobile__item__ship .quote-mobile__detail__info__title {
    line-height: 1rem;
  }
}
.quote-mobile .quote-mobile__item .fa-chevron-down {
  font-size: 20px;
  font-weight: 300;
}
.quote-mobile .quote-mobile__detail__info__title {
  font-weight: 500;
}
.quote-mobile .quote-mobile__detail__info__value {
  font-weight: 500;
}
.quote-mobile button {
  padding: 0.2rem 0.5rem;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.quote-mobile button i {
  font-size: 18px;
  vertical-align: middle;
  margin-right: 0.35rem;
}
@media (max-width: 576px) {
  .quote-mobile button {
    font-size: 14px;
  }
  .quote-mobile button i {
    display: none;
  }
}
@media (max-width: 576px) {
  .quote-mobile .price-item__card {
    padding-right: 0.25rem !important;
  }
}
@media (max-width: 576px) {
  .quote-mobile .ship-item__card {
    padding-left: 0.25rem !important;
  }
}

@media (min-width: 576px) {
  #attachments_card .col-sm-6:last-child {
    padding-left: 0.65rem;
  }
}
#attachments_card #attachments-istruction-card .card-body,
#attachments_card #attachments-template-card .card-body,
#attachments_card #video-card .card-body,
#attachments_card #attachments-others-card .card-body {
  border: 1px solid rgba(208, 208, 208, 0.7);
  border-radius: 0.25rem;
  padding: 0.5rem 0.75rem;
  transition: 0.2s;
}
#attachments_card #attachments-istruction-card .card-body:hover,
#attachments_card #attachments-template-card .card-body:hover,
#attachments_card #video-card .card-body:hover,
#attachments_card #attachments-others-card .card-body:hover {
  background-color: #F7F7F7;
}
#attachments_card #attachments-istruction-card .card-body:hover a,
#attachments_card #attachments-template-card .card-body:hover a,
#attachments_card #video-card .card-body:hover a,
#attachments_card #attachments-others-card .card-body:hover a {
  color: #000;
}
#attachments_card #attachments-istruction-card .card-body:hover a i,
#attachments_card #attachments-template-card .card-body:hover a i,
#attachments_card #video-card .card-body:hover a i,
#attachments_card #attachments-others-card .card-body:hover a i {
  color: #1C1C1B;
  border-left: 1px solid rgba(208, 208, 208, 0.7);
}
#attachments_card #attachments-istruction-card a,
#attachments_card #attachments-template-card a,
#attachments_card #video-card a,
#attachments_card #attachments-others-card a {
  color: #000;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: start;
  line-height: 1.25rem;
}
#attachments_card #attachments-istruction-card a i,
#attachments_card #attachments-template-card a i,
#attachments_card #video-card a i,
#attachments_card #attachments-others-card a i {
  font-size: 18px;
  right: 0;
  color: #1C1C1B;
  padding: 0.5rem 0 0.5rem 0.75rem;
  border-left: 1px solid rgba(208, 208, 208, 0.5);
  margin-right: 0 !important;
}

.footer-c .link-container .newsletter-container {
  background-image: url("/custom/img/newsletter-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  .footer-c .link-container .newsletter-container {
    position: absolute;
  }
}
.footer-c .link-container .newsletter-container .description-box .logo-image {
  border-bottom: 1px solid #D0D0D0;
}
.footer-c .link-container .newsletter-container .description-box .logo-image .logo-image-footer {
  width: 180px;
}
@media (max-width: 992px) {
  .footer-c .link-container .newsletter-container .description-box .logo-image .logo-image-footer {
    width: 200px;
  }
}
.footer-c .link-container .newsletter-container .description-box .title {
  font-size: 24px;
}
.footer-c .link-container .newsletter-container .description-box .newsletter-box {
  border-top: 1px solid rgba(247, 247, 247, 0.5);
}
.footer-c .link-container .newsletter-container .description-box .newsletter-box .title {
  color: #1E1A34;
  font-size: 20px;
}
.footer-c .link-container .newsletter-container .description-box .newsletter-box .newsletter_subscribe {
  margin: 0;
}
.footer-c .link-container .newsletter-container .description-box .newsletter-box .newsletter_subscribe input {
  height: 45px;
  border-radius: 50rem;
}
.footer-c .link-container .newsletter-container .description-box .newsletter-box .newsletter_subscribe input:focus ~ label {
  font-size: 0.6rem;
  top: -5px;
  padding-top: 0;
}
.footer-c .link-container .newsletter-container .description-box .newsletter-box .newsletter_subscribe label {
  line-height: 2.6;
}
.footer-c .link-container .newsletter-container .description-box .newsletter-box .newsletter_agreement {
  margin: 0;
}
.footer-c .link-container .newsletter-container .description-box .newsletter-box .newsletter_agreement a {
  color: #1E1A34;
}
.footer-c .link-container .newsletter-container .description-box .newsletter-box .newsletter_agreement a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-c .link-container .newsletter-container .description-box .newsletter-box .newsletter_agreement label {
  color: #1E1A34;
  font-size: 14px;
}
.footer-c .link-container .newsletter-container .description-box .newsletter-box .btn {
  width: 100%;
  height: 45px;
  line-height: unset;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .footer-c .link-container .menu-row {
    padding-left: 10rem;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .footer-c .link-container .menu-row {
    padding-left: 6rem;
  }
}
@media (min-width: 1400px) {
  .footer-c .link-container .menu-row {
    padding-left: 2rem;
  }
}
.footer-c .link-container h6, .footer-c .link-container .h6 {
  color: #fff;
}
.footer-c .link-container .contact a {
  color: #fff;
}
.footer-c .link-container .contact a i {
  font-size: 18px;
}
.footer-c .link-container .contact a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-c .link-container .contact span {
  color: #fff;
}
.footer-c .link-container .social a {
  padding: 0.25rem;
  padding-right: 0.5rem;
  padding-left: 0;
}
.footer-c .link-container .social a span {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50rem;
  background-color: #01D0B8;
  transition: 0.2s;
}
.footer-c .link-container .social a span i {
  color: #1E1A34;
  font-size: 18px;
}
.footer-c .link-container .social a span:hover {
  background-color: #00BCA6;
}
.footer-c .link-container .footer-1 ul li {
  border: 0;
  background: transparent;
}
.footer-c .link-container .footer-1 ul li a,
.footer-c .link-container .footer-1 ul li span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.footer-c .link-container .footer-1 ul li a:hover,
.footer-c .link-container .footer-1 ul li span:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-c .link-container .payment img,
.footer-c .link-container .shipments img {
  height: 35px;
  padding: 0.25rem;
}
.footer-c .link-container .copyright p {
  color: #fff;
  border-top: 1px solid rgba(208, 208, 208, 0.5);
  font-size: 12px;
  line-height: 1rem;
}
@media (max-width: 576px) {
  .footer-c .link-container .copyright p {
    font-size: 10px;
  }
}
.footer-c .link-container .copyright p a {
  color: #fff;
}
.footer-c .link-container .copyright p a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-c.shadow {
  box-shadow: 0 -6px 6px rgba(0, 0, 0, 0.07) !important;
}

@media (min-width: 576px) {
  #accelasearch-bar-container-container .search-bar {
    border-radius: 50rem !important;
  }
}
#accelasearch-bar-container-container .first-screen {
  background-color: #fff !important;
}
#accelasearch-bar-container-container .products-container {
  width: calc(100% - 40px);
}
#accelasearch-bar-container-container .products-container .product-card {
  border: 0 !important;
  border-radius: 0.5rem !important;
  padding: 0 !important;
  padding-top: 0 !important;
  margin: 1rem auto !important;
}
#accelasearch-bar-container-container .products-container .product-card:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08) !important;
}
#accelasearch-bar-container-container .products-container .product-card img {
  height: 250px !important;
  -o-object-position: center !important;
     object-position: center !important;
  border-radius: 0.5rem 0.5rem 0 0 !important;
  margin-top: 0 !important;
  padding: 0 1rem;
}
#accelasearch-bar-container-container .products-container .product-card .img.placeholder {
  background-color: #fff !important;
}
#accelasearch-bar-container-container .products-container .product-card .info-container .type,
#accelasearch-bar-container-container .products-container .product-card .info-container .title,
#accelasearch-bar-container-container .products-container .product-card .info-container .desc,
#accelasearch-bar-container-container .products-container .product-card .info-container .sku,
#accelasearch-bar-container-container .products-container .product-card .info-container .brand,
#accelasearch-bar-container-container .products-container .product-card .info-container .color {
  padding: 0 1rem !important;
}
#accelasearch-bar-container-container .products-container .product-card .info-container .desc,
#accelasearch-bar-container-container .products-container .product-card .info-container .sku,
#accelasearch-bar-container-container .products-container .product-card .info-container .brand {
  font-size: 16px !important;
}
#accelasearch-bar-container-container .products-container .product-card .info-container .sku {
  margin-bottom: 0.25rem;
}
#accelasearch-bar-container-container .products-container .product-card .info-container .brand {
  height: 30px !important;
}
#accelasearch-bar-container-container .products-container .product-card .info-container .stock,
#accelasearch-bar-container-container .products-container .product-card .info-container .sku,
#accelasearch-bar-container-container .products-container .product-card .info-container .brand {
  color: #395357 !important;
}
#accelasearch-bar-container-container .products-container .product-card .info-container .stock {
  padding: 0 1rem;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}
#accelasearch-bar-container-container .products-container .product-card .info-container .title {
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: unset !important;
  margin-bottom: 0.25rem;
}
#accelasearch-bar-container-container .products-container .product-card .info-container .desc {
  color: #395357 !important;
  font-weight: 400 !important;
  letter-spacing: unset !important;
  margin: 0.25rem 0 !important;
}
#accelasearch-bar-container-container .products-container .product-card .info-container .price_container {
  height: unset !important;
  display: unset !important;
  padding: 0.75rem 1rem !important;
  padding-bottom: 1.5rem !important;
  margin-top: 0 !important;
}
#accelasearch-bar-container-container .products-container .product-card .info-container .price_container .price {
  font-size: 24px !important;
  font-weight: 700 !important;
  letter-spacing: unset !important;
}
#accelasearch-bar-container-container .products-container .product-card .info-container .price_container .price::before {
  content: "Da";
  color: #395357;
  font-size: 16px;
  font-weight: 400;
}
#accelasearch-bar-container-container .products-container .category-card .color-bg:hover {
  color: #000 !important;
}

.scrollbar-container .as-filter .key {
  height: unset !important;
}
.scrollbar-container .as-filter.selected {
  border: 2px solid #1C1C1B !important;
}
.scrollbar-container .as-filter.selected .value {
  color: #000 !important;
}
.scrollbar-container .as-filter.checkbox-sc.selected {
  border: 0 !important;
}
.scrollbar-container .as-filter.checkbox-sc.selected .icon {
  background-color: #01D0B8 !important;
}

@media (max-width: 575.98px) {
  #accelasearch-bar-container-container .products-container {
    width: 100% !important;
  }
  #accelasearch-bar-container-container .products-container .product-card {
    width: 90% !important;
  }
}
@media (max-width: 767.98px) {
  .scrollbar-container {
    margin-top: 1rem;
  }
}
.alert-login {
  display: inline-block;
  line-height: normal;
  background-color: #F2F2F2;
  border-radius: 1rem;
  padding: 1rem;
}
.alert-login strong {
  font-weight: 500;
}
.alert-login a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.alert-login i {
  display: inline-block;
  color: rgba(28, 28, 27, 0.4);
  font-size: 2.5rem;
  margin-right: 0.75rem;
  vertical-align: middle;
}
@media (max-width: 1399.98px) {
  .alert-login i {
    display: block;
    margin-bottom: 0.5rem;
  }
}

.orders-list h1, .orders-list .h1 {
  margin-bottom: 10px;
  font-size: 32px;
}

.orders-list hr {
  margin-top: 0px;
}

.orders-list input:focus, .orders-list .btn:focus {
  box-shadow: none;
}

.orders-list .input-group {
  width: 437px;
  max-width: 50vw;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: inset 0px 5px 10px rgba(186, 186, 186, 0.1019607843), 0px 3px 6px rgba(216, 216, 216, 0.1607843137);
  border: 1px solid #E0E0E0;
  border-radius: 4px;
}

.orders-list .input-group input {
  position: relative !important;
  right: auto !important;
  border: 0;
  line-height: 1.5;
  font-size: 16px;
  line-height: 24px;
  color: #8F9396;
}

.orders-list .input-group input::-moz-placeholder {
  color: #8F9396;
  font-size: 16px;
  line-height: 24px;
}

.orders-list .input-group input::placeholder {
  color: #8F9396;
  font-size: 16px;
  line-height: 24px;
}

.orders-list .input-group input:-ms-input-placeholder {
  color: #8F9396;
  font-size: 16px;
  line-height: 24px;
}

.orders-list .input-group input::-ms-input-placeholder {
  color: #8F9396;
  font-size: 16px;
  line-height: 24px;
}

.orders-list .input-group .input-group-text {
  line-height: 24px;
  color: #535658;
  font-size: 13px;
  padding-left: 10px;
}

.orders-list .product-search {
  margin-bottom: 40px;
}

.orders-list .product-search i {
  color: #535658;
}

.orders-list .product-search input {
  color: #535658;
}

.orders-list .product-search .input-group-text {
  padding-right: 0;
  background-color: transparent;
  color: #CECECE;
  z-index: 5;
}

.orders-list .product-search .filtered {
  color: #B7B7B7;
}

.orders-list .product-search .filtered span {
  color: #0A2D4B;
}

.orders-list-products-autocomplete {
  list-style-type: none;
  background: #FFFFFF;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 8px;
  width: 437px !important;
  max-width: 50vw;
  padding: 8px 14px;
  color: #535658;
}

.orders-list-users-autocomplete {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.orders-list-products-autocomplete li, .orders-list-users-autocomplete li {
  border-bottom: 1px solid #E8E8E8;
  padding: 14px 26px;
  line-height: 1;
}

.orders-list-products-autocomplete li:last-child, .orders-list-users-autocomplete li:last-child {
  border: 0;
}

.orders-list .filters-recap {
  height: 51px;
  padding: 9px 20px;
}

.orders-list .filters-recap .filter {
  background: #EAEAEA 0% 0% no-repeat padding-box;
  border-radius: 7px;
  font-size: 14px;
  color: #8F9396;
  padding: 6px 9px;
  margin-right: 10px;
  margin-bottom: 5px;
}

.orders-list .filters-recap .filter i {
  margin-left: 10px;
  cursor: pointer;
}

.orders-list .scrollable-content {
  transform: rotateX(180deg);
  overflow-x: auto;
  padding: 10px 0px 10px 0px;
  width: calc(100% - 40px); /*max-height: 50vh;*/
}

.orders-list .scrollable-content > div {
  transform: rotateX(180deg);
  color: #535658;
}

.orders-list .vertical-scroll {
  height: 50vh;
  overflow-x: hidden;
  overflow-y: scroll;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 12px;
  padding-right: 12px;
  scrollbar-width: none;
}

.orders-list .vertical-scroll::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

.orders-list #fake-scroller {
  width: 30px;
  overflow: auto;
  height: calc(100% - 168px);
  position: absolute;
  bottom: 0;
  right: 0;
}

/* .orders-list .order-columns { flex-wrap: nowrap } */
.orders-list .row {
  flex-wrap: nowrap;
}

.orders-list .order-columns {
  width: 3165px;
}

.orders-list .order-columns.titles {
  position: relative;
  background-color: #EFEFEF;
  color: #0A2D4B;
  border-radius: 12px;
}

.orders-list .order-columns.titles > .row {
  height: 82px;
  padding-left: 12px;
}

.orders-list .order-columns.contents {
  border: 1px solid #E6E6E6;
  border-radius: 8px;
  margin-bottom: 10px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.orders-list .order-columns.contents .product-row {
  font-size: 14px;
}

.orders-list .order-columns.contents .product-row img {
  border-radius: 9px;
  height: 41px;
  width: auto;
  margin-top: 3px;
  margin-bottom: 3px;
}

.orders-list .order-columns.contents .product-row .btn {
  color: #0A2D4B;
  box-shadow: inset -2px -3px 6px rgba(10, 45, 75, 0.0509803922);
  border: 1px solid #E6E6E6;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  margin-left: 6px;
  padding: 0;
  font-size: 13px;
}

.orders-list .order-columns.contents .product-row .secondary {
  color: #8F9396;
}

.orders-list .order-columns .col {
  flex: 0 0 150px;
  width: 150px;
  max-width: none;
}

.orders-list .order-columns .col-1 {
  flex: 0 0 200px;
  width: 200px;
  max-width: none;
}

.orders-list .order-columns .col-2 {
  flex: 0 0 200px;
  width: 200px;
  max-width: none;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.orders-list .order-columns .col-8 {
  flex: 0 0 100px;
  width: 200px;
  max-width: none;
}

.orders-list .order-columns.contents .col-8 {
  border-left: 1px solid #DBDBDB;
}

.orders-list .order-columns .col-9 {
  flex: 0 0 200px;
  width: 200px;
  max-width: none;
}

.orders-list .order-columns .col-10 {
  flex: 0 0 200px;
  width: 200px;
  max-width: none;
}

.orders-list .order-columns .col-13 {
  flex: 0 0 200px;
  width: 200px;
  max-width: none;
}

.orders-list .order-columns .col-11, .orders-list .order-columns .col-17 {
  flex: 0 0 200px;
  width: 200px;
  max-width: none;
}

.orders-list .order-columns.titles .filter {
  position: absolute;
  top: 68px;
  z-index: 9999;
  min-width: 100px;
  background-color: #FFFFFF;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.2509803922);
  border: 1px solid #E4E7ED;
  padding: 12px 8px;
  font-size: 14px;
  color: #606266;
  border-radius: 4px;
}

.orders-list .order-columns.titles .filter input {
  color: #8F9396;
  background-color: #F5F7FA;
  border: 1px solid #8ABDE8;
  border-radius: 5px;
  width: 207px;
  min-height: 14px;
  line-height: 1;
  padding: 8px;
}

.orders-list .order-columns.titles .filter .input-group {
  margin-top: 2px;
  border: 0;
  width: 207px;
}

.orders-list .order-columns.titles .filter .input-group-text {
  padding-right: 0;
  background-color: transparent;
  color: #CECECE;
  z-index: 5;
}

.orders-list .order-columns.titles .filter .input-group-text i {
  margin-top: 6px;
  cursor: pointer;
}

.orders-list .model .modal-body iframe {
  width: 100%;
  height: 953px;
}

.orders-list .orders-pagination {
  font-family: Ubuntu;
  color: #606266;
}

.orders-list .orders-pagination .btn {
  border-radius: 2px;
  color: #606266;
  text-align: center;
  padding: 0;
  line-height: 1;
}

.orders-list .orders-pagination .btn.active {
  color: #ffffff;
}

.orders-list .orders-pagination .page .btn {
  font-size: 14px;
  width: 32px;
  height: 32px;
  background-color: #F0F2F5;
  border: 1px solid #DDDFE5;
}

.orders-list .orders-pagination .page .btn.active {
  background-color: #8ABDE8;
  border: 1px solid #67AFA6;
}

.orders-list .orders-pagination .page-size {
  margin-bottom: 25px;
}

.orders-list .orders-pagination .page-size .btn {
  font-size: 15px;
  width: 34px;
  height: 34px;
}

.orders-list .orders-pagination .page-size .btn.active {
  background-color: #8ABDE8;
  border: 1px solid #CEE7E4;
  font-weight: bold;
}
