.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.25rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fs-6 {
  font-size: 0.875rem !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: #AEAED5 !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 {
  user-select: all !important;
}

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

.user-select-none {
  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.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-sm-3 {
    gap: 1rem !important;
  }
  .gap-sm-4 {
    gap: 1.5rem !important;
  }
  .gap-sm-5 {
    gap: 3rem !important;
  }
  .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.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .gap-md-3 {
    gap: 1rem !important;
  }
  .gap-md-4 {
    gap: 1.5rem !important;
  }
  .gap-md-5 {
    gap: 3rem !important;
  }
  .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.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .gap-lg-3 {
    gap: 1rem !important;
  }
  .gap-lg-4 {
    gap: 1.5rem !important;
  }
  .gap-lg-5 {
    gap: 3rem !important;
  }
  .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.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .gap-xl-3 {
    gap: 1rem !important;
  }
  .gap-xl-4 {
    gap: 1.5rem !important;
  }
  .gap-xl-5 {
    gap: 3rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1440) {
  .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.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxl-3 {
    gap: 1rem !important;
  }
  .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  .gap-xxl-5 {
    gap: 3rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.25rem !important;
  }
  .fs-2 {
    font-size: 1.875rem !important;
  }
  .fs-3 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: 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;
  }
}
@keyframes modal-video {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-video-inner {
  from {
    transform: translate(0, 100px);
  }
  to {
    transform: translate(0, 0);
  }
}
.modal-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000000;
  cursor: pointer;
  opacity: 1;
  animation-timing-function: ease-out;
  animation-duration: 0.3s;
  animation-name: modal-video;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.modal-video-effect-exit {
  opacity: 0;
}
.modal-video-effect-exit .modal-video-movie-wrap {
  -webkit-transform: translate(0, 100px);
  -moz-transform: translate(0, 100px);
  -ms-transform: translate(0, 100px);
  -o-transform: translate(0, 100px);
  transform: translate(0, 100px);
}

.modal-video-body {
  max-width: 960px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.modal-video-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
@media (orientation: landscape) {
  .modal-video-inner {
    padding: 10px 60px;
    box-sizing: border-box;
  }
}

.modal-video-movie-wrap {
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
  background-color: #333;
  animation-timing-function: ease-out;
  animation-duration: 0.3s;
  animation-name: modal-video-inner;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -ms-transition: -ms-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal-video-movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-video-close-btn {
  position: absolute;
  z-index: 2;
  top: -45px;
  right: 0px;
  display: inline-block;
  width: 35px;
  height: 35px;
  overflow: hidden;
  border: none;
  background: transparent;
}
@media (orientation: landscape) {
  .modal-video-close-btn {
    top: 0;
    right: -45px;
  }
}
.modal-video-close-btn:before {
  transform: rotate(45deg);
}
.modal-video-close-btn:after {
  transform: rotate(-45deg);
}
.modal-video-close-btn:before, .modal-video-close-btn:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #fff;
  border-radius: 5px;
  margin-top: -6px;
}

* {
  outline: none;
  padding: 0;
}
*::after {
  margin: 0;
  padding: 0;
}
*::before {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'HK Grotesk', sans-serif;
  font-size: 17px;
  color: #082049;
  line-height: 1.5rem;
  background: #F6F8FE;
  overflow-x: hidden;
}
body.dashboard:before {
  content: "";
  height: 300px;
  top: 0;
  left: 0;
  width: 100%;
  position: fixed;
  z-index: -9;
  background: #1355d7;
}

#main-wrapper {
  transition: all 0.25s ease-in;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
#main-wrapper.show {
  opacity: 1;
}

.dash-main{  padding-top: 85px;  }

.content-body {
  margin-left: 200px;
  margin-top: 15px;
  margin-bottom: 0px;
}
@media only screen and (max-width: 767px) {
  .content-body {
    margin-left: 0px;
    margin-bottom: 50px;
  }
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  color: #082049;
  text-decoration: none;
  outline: none;
}
a:hover, a:focus, a.active {
  text-decoration: none;
  outline: none;
  color: #1355d7;
}

b,
strong {
  color: #082049;
}

@media only screen and (min-width: 1200px) and (max-width: 1440px) {
  .col-xxl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xxl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xxl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xxl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xxl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xxl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xxl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
[class*=ani-] {
  position: absolute;
  z-index: -10;
}
@media only screen and (max-width: 767px) {
  [class*=ani-] {
    display: none;
  }
}

/* .ani-1 {
  right: -3%;
  top: 0;
}

.ani-2 {
  right: 4%;
  bottom: 34%;
}

.ani-3 {
  left: 40%;
  top: 20%;
}

.ani-4 {
  left: 42%;
  top: 7%;
}

.ani-5 {
  left: -3%;
  top: 7%;
}

.ani-6 {
  right: 25%;
  top: 10%;
}

.ani-7 {
  right: 30%;
  top: 23%;
}

.ani-8 {
  right: 28%;
  top: 30%;
}

.ani-9 {
  left: 5%;
  bottom: 32%;
}

.ani-10 {
  left: 5%;
  bottom: 30%;
}

.ani-11 {
  left: 9%;
  bottom: 30%;
}

.ani-12 {
  top: 60%;
}
.ani-12 .a1 {
  position: absolute;
  left: 45px;
  top: -80px;
}
.ani-12 .a2 {
  position: absolute;
  left: 30px;
  top: 10px;
}
.ani-12 .a3 {
  position: absolute;
  left: -25px;
}

.ani-13 {
  top: 50%;
}
.ani-13 img {
  position: absolute;
}
.ani-13 .a1 {
  left: -50px;
}
.ani-13 .a2 {
  top: rpx;
  left: -50px;
}
.ani-13 .a3 {
  left: 53px;
  top: 182px;
}
.ani-13 .a4 {
  top: 90px;
  left: 20px;
}

.ani-14 {
  right: 6%;
  top: 20%;
}

.ani-15 {
  left: 18%;
  bottom: -5%;
}

.ani-16 {
  right: 0;
  top: 60%;
}

.ani-17 {
  right: 0;
  top: 0;
}

.ani-18 {
  bottom: 0;
  left: 0;
}

.ani-19 {
  bottom: 12%;
  left: 0;
}

.ani-20 {
  right: 5%;
  top: 10%;
}

.ani-21 {
  right: 20%;
  bottom: 25%;
}

.ani-24 {
  right: 45%;
  bottom: 34%;
}

.ani-22 {
  left: -20px;
  top: 50%;
}

.ani-23 {
  right: -15px;
  top: 60%;
}

.ani-25 {
  right: -15px;
  top: 30%;
}

.ani-26 {
  left: 0px;
  top: 50%;
} */

/* Custom animation start
============================================================================================ */
@media (max-width: 1200px) {
  /* line 86, ../../Arafath/v6/262 Anne v3 - Copy/anne-html/anne/scss/_predefine.scss */
  [class*=hero-ani-] {
    display: none !important;
  }
}
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #fff;
  z-index: 999999999;
}

.sk-three-bounce {
  margin: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: white;
}

.sk-three-bounce .sk-child {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: #1355d7;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
  animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
}

.sk-three-bounce .sk-bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.sk-three-bounce .sk-bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-three-bounce {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes sk-three-bounce {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.section-padding {
  padding: 50px 0;
}
@media only screen and (max-width: 1199px) {
  .section-padding {
    padding: 30px 0;
  }

}
.mt-80 {
  margin-top: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.bg_icons {
  display: flex;
  flex-wrap: wrap;
  position: fixed;
  overflow: hidden;
  z-index: 0;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background: rgba(58, 51, 97, 0.95);
}

.page_title {
  padding: 15px 0px 15px;
  position: relative;
  background: transparent;    
}

.tinychart .apexcharts-canvas {
  margin: 0 auto;
}

.gifloader img{
  max-width: 60px;
}
.buttonloader img{
  max-width: 40px;
}

@media only screen and (max-width: 767px) {
  .page_title {
    margin-left: 0;
  }
}
.page_title .page_title-content p { min-height: 25px;}
.page_title p {font-size: 18px;font-weight: 600;margin-bottom: 0px;color: #1355d7;}
.page_title p span {  line-height: 30px;  font-weight: 500;  color: #082049;    opacity: 1;}
.breadcrumbs {  display: flex;  justify-content: flex-end;}
.breadcrumbs li a {  color: #AEAED5;  display: inline-block;  margin-left: 15px;  font-size: 14px;}
.breadcrumbs li.active a {  color: #fff;}
#toast-container {  top: 100px;  right: 12%;}
#toast-container > div:hover {  -moz-box-shadow: 0px;  box-shadow: 0px;  cursor: pointer;}
#toast-container .toast {  min-height: 120px;  display: flex;  flex-direction: column;  justify-content: center;  padding-left: 120px;  box-shadow: none;  border-radius: 24px;}
#toast-container .toast:hover {  -moz-box-shadow: 0px;  box-shadow: 0px;}
#toast-container canvas {  position: absolute;  z-index: 999;  top: 50%;  transform: translateY(-50%);  left: 20px;}
#toast-container .toast-message {  max-width: 300px;}
#toast-container .progress_count {  position: absolute;  color: #082049;  font-size: 18px;  left: 36px;  text-align: center;  right: 0;  width: 50px;  height: 100%;  top: 50px;}
#toast-container .la-close {
  position: absolute;
  right: 20px;
  top: 15px;
  width: 24px;
  font-size: 24px;
}
#toast-container a {
  display: inline-block;
  width: 115px;
  padding: 10px;
  text-align: center;
  position: absolute;
  bottom: 15px;
  right: 20px;
  background: #FFDEB0;
  border-radius: 30px;
  color: #FE9431;
}

.toast-progress {
  background: #FE9431;
  opacity: 6;
}

::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #777;
}

.section_heading {
  position: relative;
  text-align: center;
  margin-bottom: 15px;
}
.section_heading h3, .section_heading .h3 {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 10px;
  color: #082049;
  font-weight: 600;

}
.section_subheading{position: relative;  margin-bottom: 50px;}

.section_subheading h4, .section_subheading .h4 {font-size: 16px;color: #1355d7; font-weight: 700; margin: 15px 0px;}

@media only screen and (max-width: 1199px) {
  .section_heading h3, .section_heading .h3 {
    font-size: 26px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .section_heading h3, .section_heading .h3 {
    font-size: 24px;
    line-height: 30px;
  }
}
.section_heading span {
  font-size: 46px;
  font-weight: 800;
  color: #1355d7;
  position: relative;
  margin-bottom: 30px;
  display: inline-block;
  font-family: var(--bs-ggtime-fontstyle);
  text-transform: uppercase; line-height: normal;
}
.section_heading span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 50px;
  height: 2px;
  background: #1355d7;
  bottom: -15px;
  margin: 0 auto;
}
.section_heading p {
  font-weight: normal;
  font-size: 16px;
  line-height: 25px;
}

.header {
  padding: 10px 0px;
  position: fixed;
  top: 0;
  left: 200px;
  right: 0;
  z-index: 2;
  transition: all 0.3s ease-in;
  background: #F6F8FE;
}
@media only screen and (max-width: 767px) {
  .header {
    left: 0;
  }
}
.header .navbar {
  padding: 0px;
}
.header .brand-logo {
  display: none;
}
@media only screen and (max-width: 767px) {
  .header .brand-logo {
    display: block;
  }
}
.header.landing_page {
  left: 0;
  padding: 0px;
  background: #fff;
  box-shadow: 0px 10px 20px rgba(55, 55, 89, 0.08);
  z-index: 10;
}

button.navbar-toggler {
  position: absolute;
  right: 0;
  min-width: 55px;
  top: 2px;
}

.navbar-brand {
  margin-right: 20px;
  display: flex;
  align-items: center;
}
.navbar-brand img {
height: 135px;
}
.navbar-brand span {
  font-weight: 700;
  margin-left: 10px;
  font-size: 24px;
}

.header_auth .btn {
  margin-left: 10px;
  text-transform: uppercase;
  font-size: 14px;
}
@media only screen and (max-width: 991px) {
  .header_auth .btn {
    padding: 7px;
    min-width: 110px;
  }
}
@media only screen and (max-width: 991px) {
  .header_auth .btn {
    display: none;
  }
}

@media only screen and (max-width: 991px) {
  .navbar-nav {
    background: #F6F8FE;
    margin-top: 10px;
    border-radius: 10px;
    padding: 10px 0px;
  }
}
.navbar-nav .nav-item .nav-link {  color: #000;  padding:15px 10px;  font-weight: 600;  text-transform: uppercase;  font-size: 14px; position: relative; }
.navbar-nav .nav-item .nav-link::after{ content: ''; position: absolute; bottom: 0px; left: auto; right: 0; background: #0b234b; height: 2px; width: 0; transition-property: width;  transition-duration: 0.75s;
transition-timing-function: ease-out;}
.navbar-nav .nav-item .nav-link:hover:after, .navbar-nav .nav-item .nav-link:focus:after, .navbar-nav .nav-item .nav-link:active:after, .navbar-nav .nav-item .nav-link.show:after { left: 0; right: auto; width: 100%;}

@media only screen and (max-width: 991px) {
.navbar-nav .nav-item .nav-link {  padding: 10px 20px !important;}
}

@media only screen and (max-width: 1199px) {
.navbar-nav .nav-item .nav-link {padding: 10px 15px !important;}
}

.navbar-nav .nav-item .nav-link:hover, .navbar-nav .nav-item .nav-link:focus, .navbar-nav .nav-item .nav-link.active, .navbar-nav .nav-item .nav-link.show {
  color: #1355d7;
}

.profile_log {
  cursor: pointer;
}
.profile_log .user {
  display: flex;
  align-items: center;
}
.profile_log .user .thumb {
  height: 35px;
  width: 35px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: inline-block;
  margin-right: 15px;
  background: #1355d7;
  color: #fff;
  text-align: center;
  padding: 4px 0;
}
@media only screen and (max-width: 1199px) {
  .profile_log .user .thumb {
    margin-right: 0px;
  }
}
.profile_log .user .thumb i {
  font-size: 20px;
}
.profile_log .user .name {
  margin-right: 30px;
  font-size: 18px;
  font-weight: 500;
  color: #082049;
}
@media only screen and (max-width: 1199px) {
  .profile_log .user .name {
    display: none;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1350px) {
  .profile_log .user .name {
    display: none;
  }
}
.profile_log .user .arrow {
  color: #082049;
}
.profile_log .user .arrow i {
  font-weight: bold;
  font-size: 16px;
  line-height: 16px;
  margin-top: 6px;
  display: inline-block;
  display: none;
}
@media only screen and (max-width: 575px) {
  .profile_log .user .arrow {
    display: none;
  }
}
.profile_log .dropdown-menu {
  border: 0px;
  padding: 0px;
  margin: 0px;
  top: 50px;
  width: 220px;
  box-shadow: 0 36px 48px rgba(19, 85, 215, 0.43);
  border-radius: 5px;
  background-color: #fff;
  overflow: hidden;
}

.profile_log .dropdown-menu .dropdown-item {
  padding: 15px 20px;
  border-bottom: 1px solid rgba(55, 55, 89, 0.1);
  font-size: 16px;
  color: #082049;
  font-weight: 500;
  transition: all ease 0.75s;
  display: flex;
  align-items: center;
}
.profile_log .dropdown-menu .dropdown-item:hover .text-primary{ color: #fff !important;}
.profile_log .dropdown-menu .dropdown-item:last-child {
  border: 0px;
}
.profile_log .dropdown-menu .dropdown-item.logout {
  color: #072049;
}
.profile_log .dropdown-menu .dropdown-item.logout i {
  color: #072049;
}
.profile_log .dropdown-menu .dropdown-item i {
  margin-right: 10px;
  font-size: 22px;
  color: #1355d7;
  font-weight: bold;
}
.profile_log .dropdown-menu .dropdown-item:hover, .profile_log .dropdown-menu .dropdown-item:focus, .profile_log .dropdown-menu .dropdown-item:active {
  color: #fff;
  background: #1355d7;
}
.profile_log .dropdown-menu .dropdown-item:hover i, .profile_log .dropdown-menu .dropdown-item:focus i, .profile_log .dropdown-menu .dropdown-item:active i {
  color: #fff;
}
.profile_log .dropdown-menu .dropdown-item.active {
  color: #1355d7;
}

@media only screen and (max-width: 575px) {
  .header-search form {
    max-width: 200px;
  }
}

.footer {
  padding: 30px 0;
  background: #fff;
  margin-left: 0px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.footer.landing {
  margin-left: 0px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .footer {
    position: relative;
    margin-left: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-link {
    text-align: center !important;
  }
}
.footer-link .m_logo {
  margin-right: 15px;
}
@media only screen and (max-width: 767px) {
  .footer-link .m_logo {
    margin-right: 5px;
    text-align: center;
    display: block;
    margin-bottom: 15px;
  }
}
.footer-link .m_logo img {
  max-width: 30px;
}
.footer-link a {
  display: inline-block;
  font-size: 14px;
  padding-right: 10px;
  color: #AEAED5;
  font-weight: 500;
}
.footer-link a:hover, .footer-link a:focus, .footer-link a.active {
  color: #1355d7;
}

.sidebar {
  background: transparent;
  position: fixed;
  left: 0;
  height: 100%;
  width: 200px;
  top: 0;
  z-index: 3;
  padding: 15px;
}
@media only screen and (max-width: 767px) {
  .sidebar {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 50px;
    background: #1355d7;
    padding: 0px;
  }
}
.sidebar .brand-logo {
  padding: 0px;
  display: flex;
  flex-direction: column;
}
.sidebar .brand-logo img {
  max-width: 75%;
  margin-bottom: 10px;
}
.sidebar .brand-logo span {
  font-weight: 700;
  font-size: 18px;
  color: #082049;
}

.menu {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(55, 55, 89, 0.1);
}
@media only screen and (max-width: 767px) {
  .menu {
    margin-top: 0px;
    padding: 0px;
    border: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .menu ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
}
.menu ul li a {
  padding: 10px 0px;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  border-radius: 0px;
  font-weight: 500;
  font-size: 16px;
  transition: all ease 0.75s;
}
@media only screen and (max-width: 767px) {
  .menu ul li a {
    color: #fff;
    opacity: 0.75;
  }
}
.menu ul li a:hover, .menu ul li a:focus, .menu ul li a:active {
  color: #1355d7;
}
@media only screen and (max-width: 767px) {
  .menu ul li a:hover, .menu ul li a:focus, .menu ul li a:active {    
    opacity: 1;
  }
  .mobinav span {
    display: flex;
    align-items: center;
  }
}
.menu ul li a.active i, .menu ul li a:hover i {
  color: #1355d7;
}
@media only screen and (max-width: 767px) {
  .menu ul li a.active i {
    color: #fff;
    opacity: 1;
  }
}
.menu ul li a.active .nav-text {
  color: #1355d7;
}
@media only screen and (max-width: 767px) {
  .menu ul li a.active .nav-text {
    color: #fff;
    opacity: 1;
  }
}
.menu ul li a i {font-size: 24px;color: rgba(7, 32, 74, 0.37); transition: all ease 0.75s;}
.menu ul li a .nav-text {  margin-left: 10px; font-family: var(--bs-akzidenz-fontstyle); letter-spacing: 0.5px;}

@media only screen and (max-width: 575px) {
  .menu ul li a .nav-text {
    display: none;
  }
}

.sidebar-footer {position: absolute; bottom: 30px; display: flex; flex-direction: column; align-items: center; text-align: center; width: 160px;}

@media only screen and (max-width: 767px) {
  .sidebar-footer {
    display: none;
  }
}

.social a {
  padding: 7px 0px;
  border-radius: 100%;
  border: 0px solid #e2e2f4;
  margin-right: 15px;
  border-radius: 5px;
  display: inline-block;
  text-align: center;
  font-size: 18px;
}
.social a:last-child{ margin-right: 0;}

.copy_right {
  font-size: 14px;
}

.sidebar-right {
  display: block;
  right: -15.625rem;
  position: fixed;
  top: 0;
  width: 15.625rem;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 15px;
  margin-top: 5rem;
  border-radius: 5px;
  transition: all 0.5s ease-in-out;
  padding-bottom: 1.875rem;
  box-shadow: -2px 3px 10px 0px rgba(119, 119, 119, 0.1);
  z-index: 999;
}
.sidebar-right .sidebar-right-trigger {
  position: absolute;
  z-index: 9;
  top: 4.75rem;
  right: 100%;
  background-color: #1355d7;
  color: #fff;
  display: inline-block;
  height: 2.125rem;
  width: 2.125rem;
  text-align: center;
  font-size: 1.3125rem;
  line-height: 2.2rem;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.sidebar-right .sidebar-right-trigger:hover {
  color: #fff;
}
.sidebar-right.show {
  right: 0;
  z-index: 999;
}
.sidebar-right .admin-settings p {
  margin-bottom: 0.3125rem;
}
.sidebar-right .admin-settings input[type=radio] {
  display: none;
}
.sidebar-right .admin-settings input[type=radio] + label {
  display: inline-block;
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin: 3px 8px;
  transition: all 0.1s ease;
  border-radius: 100px;
}
.sidebar-right .admin-settings input[type=radio]:checked + label {
  position: relative;
}
.sidebar-right .admin-settings input[type=radio]:checked + label::after {
  height: 12px;
  width: 12px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 100px;
}
.sidebar-right #nav_header_color_1 + label {
  background-color: #7B6FFF;
}
.sidebar-right #nav_header_color_2 + label {
  background-color: #FF0096;
}
.sidebar-right #nav_header_color_3 + label {
  background-color: #002EFF;
}
.sidebar-right #nav_header_color_4 + label {
  background-color: #FF2F00;
}
.sidebar-right #nav_header_color_5 + label {
  background-color: #00CCD3;
}
.sidebar-right #nav_header_color_1 + label {
  border: 1px solid rgba(55, 55, 89, 0.1);
}
.sidebar-right #header_color_1 + label {
  background-color: #fff;
}
.sidebar-right #header_color_2 + label {
  background-color: #292D3E;
}
.sidebar-right #header_color_3 + label {
  background-color: #2D2B55;
}
.sidebar-right #header_color_4 + label {
  background-color: #30243D;
}
.sidebar-right #header_color_5 + label {
  background-color: #193549;
}
.sidebar-right #header_color_1 + label {
  border: 1px solid rgba(55, 55, 89, 0.1);
}

@keyframes bounce {
  0% {
    transform: translateX(-8%);
    -webkit-transform: translateX(-8%);
  }
  50% {
    transform: translateX(8%);
    -webkit-transform: translateX(8%);
  }
  100% {
    transform: translateX(-8%);
    -webkit-transform: translateX(-8%);
  }
}
@-webkit-keyframes bounce {
  0% {
    transform: translateX(-8%);
    -webkit-transform: translateX(-8%);
  }
  50% {
    transform: translateX(8%);
    -webkit-transform: translateX(8%);
  }
  100% {
    transform: translateY(-8%);
    -webkit-transform: translateY(-8%);
  }
}
.card {
  border: 0px;
  margin-bottom: 30px;
  border-radius: 20px;
  box-shadow: 0px 10px 20px rgba(55, 55, 89, 0.08);
  background: #fff;
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(55, 55, 89, 0.1);
  background: #fff;
  padding: 20px;
  border-top-left-radius: 15px !important;
  border-top-right-radius: 15px !important;
}
.card-title {
  font-size: 18px;
  margin-bottom: 0px;
  font-weight: 900;
}
.card.transparent {
  background: transparent;
  box-shadow: none;
}
.card.transparent .card-header,
.card.transparent .card-body {
  background: transparent;
}
.card .card-body {
  padding: 20px;
  background: #fff;
  border-radius: 20px;
}

.mb-3 {
  margin-bottom: 30px;
  position: relative;
}
.mb-3 label, .modal-body label {
  font-size: 14px;  
  letter-spacing: 0.5px;
  color: #000;
  margin-bottom: 15px;
  background: transparent;
  border-color: rgb(204, 222, 255);
  font-family: var(--bs-akzidenz-fontstyle);
letter-spacing: 0.5px;
}

.input-group .input-group-prepend .input-group-text, .input-group .input-group-append .input-group-text{ box-shadow: 0px 1px 2px rgba(0,0,0,0.2); min-width: 54px;text-align: center;display: flex;align-items: center;justify-content: center;}

.form-control {
  border-radius: 4px;
  height: 45px;
  border: 1px solid rgb(204, 222, 255);
  padding: 10px 22px;
  font-size: 16px;
  font-weight: 500;
  color: #082049;
  transition: all 0.3s ease-in-out;
  background: #fff;
  cursor: pointer;
  box-shadow: 0px 1px 2px rgba(0,0,0,0.2);
}
.form-control .select {
  padding: 12px 0;
}
.form-control span {
  margin-top: 0;
}
.form-control::-webkit-input-placeholder {
  color: #082049;
}
.form-control:-ms-input-placeholder {
  color: #082049;
}
.form-control::placeholder {
  color: #082049;
}
.form-control:hover {
  box-shadow: none !important;
  outline: none;
  border-color: rgba(55, 55, 89, 0.1);
  color: #082049;
  box-shadow: 0px 1px 2px rgba(0,0,0,0.2) !important;
  background-color: #F6F8FE;
  
}
.exchangetabs .form-control:hover { box-shadow: none !important;}

.form-control:focus, .form-control:active, .form-control.active {
  box-shadow: none !important;
  outline: none;
  border-color: #1355d7;
  color: #082049;
  background-color: #F6F8FE;
  box-shadow: 0px 1px 2px rgba(0,0,0,0.2);
  
}

input:-internal-autofill-selected {
  background: white !important;
  background-image: none !important;
  color: -internal-light-dark-color(black, white) !important;
}

.input-group-text {
  font-size: 20px !important;
  padding:11.5px 15px;
  background: #1355d7;
  margin-bottom: 0px !important;  
  border-color: rgba(55, 55, 89, 0.1);
}

.input-group-append .input-group-text {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
border-left: none;
border-top-left-radius: 0px;
border-bottom-left-radius: 0px;
}

.input-group-prepend .input-group-text {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-right: none;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  background: #eaf1ff;
}

/*Styling Selectbox*/
.toggle {
  cursor: pointer;
  display: inline-block;
  margin-bottom: 30px !important;
}

.toggle-switch {
  display: inline-block;
  background: #e8edfc;
  border-radius: 16px;
  width: 45px;
  height: 20px;
  position: relative;
  vertical-align: middle;
  transition: background 0.25s;
}
.toggle-switch:before, .toggle-switch:after {
  content: "";
}
.toggle-switch:before {
  display: block;
  background: linear-gradient(to bottom, #fff 0%, #eee 100%);
  border-radius: 50%;
  width: 17px;
  height: 17px;
  position: absolute;
  top: 1px;
  left: 3px;
  transition: left 0.25s;
}
.toggle:hover .toggle-switch:before {
  background: linear-gradient(to bottom, #fff 0%, #fff 100%);
}
.toggle-checkbox:checked + .toggle-switch {
  background: #1355d7;
}
.toggle-checkbox:checked + .toggle-switch:before {
  left: 26px;
}

.toggle-checkbox {
  position: absolute;
  visibility: hidden;
}

.toggle-label {
  margin-left: 15px;
  position: relative;
  top: 2px;
  font-size: 16px;
}

.file-upload-wrapper {
  position: relative;
  width: 100%;
  height: 45px;
  border: 1px solid rgba(55, 55, 89, 0.1);
  border-radius: 5px;
  color: #082049;
}
.file-upload-wrapper:after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  background: #F6F8FE;
  padding: 10px 15px;
  display: block;
  width: calc(100% - 40px);
  pointer-events: none;
  z-index: 20;
  height: 48px;
  line-height: 30px;
  border-radius: 5px 10px 10px 5px;
  font-weight: 500;
  overflow: hidden;
}
.file-upload-wrapper:before {
  content: "Upload";
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  height: 50px;
  background: #1355d7;
  color: #fff;
  font-weight: 500;
  z-index: 25;
  font-size: 16px;
  line-height: 50px;
  padding: 0 15px;
  text-transform: capitalize;
  pointer-events: none;
  border-radius: 0 5px 5px 0;
}
.file-upload-wrapper:hover:before {
  background: #082049;
}
.file-upload-wrapper input {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  height: 50px;
  margin: 0;
  padding: 0;
  display: block;
  cursor: pointer;
  width: 100%;
}

#ui-datepicker-div {
  display: none;
  background: #edf1fd;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
  margin-top: 0.25rem;
  border-radius: 0.5rem;
  padding: 0.5rem;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.ui-datepicker-calendar thead th {
  padding: 0.25rem 0;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 400;
  color: #082049;
}
.ui-datepicker-calendar tbody td {
  width: 2.5rem;
  text-align: center;
  padding: 0;
}
.ui-datepicker-calendar tbody td a {
  display: block;
  border-radius: 0.25rem;
  line-height: 2rem;
  transition: 0.3s all;
  color: #082049;
  font-size: 0.875rem;
  text-decoration: none;
}
.ui-datepicker-calendar tbody td a:hover {
  background-color: #1355d7;
  color: white;
}
.ui-datepicker-calendar tbody td a.ui-state-active {
  background-color: #1355d7;
  color: white;
}

.ui-datepicker-header a.ui-corner-all {
  cursor: pointer;
  position: absolute;
  top: 0;
  width: 2rem;
  height: 2rem;
  margin: 0.5rem;
  border-radius: 0.25rem;
  transition: 0.3s all;
}
.ui-datepicker-header a.ui-corner-all:hover {
  background-color: #d9d0ff;
  color: #fff;
}
.ui-datepicker-header a.ui-datepicker-prev {
  left: 0;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-size: 0.5rem;
  background-position: 50%;
  transform: rotate(180deg);
}
.ui-datepicker-header a.ui-datepicker-next {
  right: 0;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: 50%;
}
.ui-datepicker-header a > span {
  display: none;
}

.ui-datepicker-title {
  text-align: center;
  line-height: 2rem;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  padding-bottom: 0.25rem;
}

.ui-datepicker-week-col {
  color: #082049;
  font-weight: 400;
  font-size: 0.75rem;
}

label.error {
  color: #072049;
  position: absolute;
  bottom: 0;
  margin-bottom: -22px;
  font-size: 12px;
  font-weight: 400;
}

.nice-select {
  display: flex;
  align-items: center;
}
.nice-select ul {
  width: 100% !important;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: white;
  color: #1355d7;
}

button,
.btn {
  padding: 5px 30px;
  display: inline-block;
  border-radius: 50px;
  min-width: 130px;
  font-size: 16px;
  font-weight: 500;
  padding: 12px;
}

.table th,
.table td {
  padding: 15px;
  font-weight: 600;
}

.table-responsive-sm {
  min-width: 48rem;
}

.table {
  border-collapse: separate;
  border-spacing: 0 1rem;
}
.table tr td,
.table tr th {
  background: #F6F8FE;
  border: 0px;
  vertical-align: middle;
}
.table tr td:first-child,
.table tr th:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.table tr td:last-child,
.table tr th:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.intro {
  /* min-height: 90vh; */
  position: relative;
  padding: 140px 0 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1355d7 
  ;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.intro .intro-content {padding: 30px 0px;}
.intro .intro-content h2, .intro .intro-content .h2 {margin-bottom: 15px;font-weight: normal;font-size: 58px;color: #fff;text-transform: uppercase; font-family: var(--bs-ggtime-fontstyle); line-height: 55px;}
.intro .intro-content h2 span, .intro .intro-content .h2 span{ display: block; color: #fff;}
.intro .intro-content h4{ color: #fff; margin-bottom: 15px; font-size: 16px; font-family: var(--bs-akzidenz-fontstyle); font-weight: 300; margin-bottom: 10px;}
.intro::after, .intro::before{ content: ''; width: 0; left: 0px; bottom: 0px; height: 0; position: absolute;}
.intro::before{border-left: 0 solid transparent; border-right: 60rem solid transparent;  border-bottom: 100px solid #f6f8fe;}
.intro::after{border-left: 60rem solid transparent; border-right: 0rem solid transparent;  border-bottom: 100px solid #f6f8fe; left: auto; right: 0px;}
.intro-downarrow {position: absolute;bottom: 0px;left: 50%; z-index: 9; font-size: 50px;color: #f6f8fe;  -webkit-animation: mover 1s infinite  alternate; animation: mover 1s infinite  alternate;}

@-webkit-keyframes mover {
  0% { transform: translateY(0) translateX(-50%); }
  100% { transform: translateY(-10px) translateX(-50%); }
}
@keyframes mover {
  0% { transform: translateY(0) translateX(-50%); }
  100% { transform: translateY(-10px) translateX(-50%); }
}

@media only screen and (max-width: 1199px) {
  .intro .intro-content h2, .intro .intro-content .h2 {
    font-size: 42px;
    line-height: 50px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .intro .intro-content h2, .intro .intro-content .h2 {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .intro .intro-content h2, .intro .intro-content .h2 {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 20px;
  }
}
.intro .intro-content p {
  margin-bottom: 40px;
  font-size: 20px;
  line-height: 28px;
  max-width: 500px;
  color: #fff;
}
.intro .intro-content .btn {background: #1355d7;border-radius: 50px !important; display: inline-block;min-width: 150px;font-size: 14px;font-weight: 800;padding: 13px;margin-right: 10px;}
.intro .intro-content .btn:hover, .intro .intro-content .btn:focus, .intro .intro-content .btn:active, .intro .intro-content .btn.active {background: #1355d7; border-color: white;  color: #fff;}

div.intro .intro-content .btn-outline-light{ border-color: #fff; color: #fff; font-family: var(--bs-akzidenz-fontstyle);}
div.intro .intro-content .btn-outline-light:hover, .btn-outline-light:focus{ background: #fff !important; color: #082049 !important;}

@media only screen and (max-width: 1199px) {
  .intro .intro-content .btn {
    font-size: 16px;    
    padding: 10px;
  }
  .intro{padding: 150px 0px; min-height: inherit;}
  
}
@media only screen and (max-width: 991px) {
  .intro .intro-content .btn {
    font-size: 14px;
    min-width: 150px;
    padding: 10px;
  }
}

.market-table table thead th {
  border: 0px;  
  
}
.market-table table tbody td,
.market-table table tbody th {
  border-color: rgba(55, 55, 89, 0.1);
  font-size: 18px;
}
.market-table table tbody .coin_icon i {
  font-size: 30px;
  margin-right: 10px;
}
.market-table table tbody .coin_icon span b {
  font-weight: 400;
  margin-left: 20px;
}
.market-table table tbody .btn {
  font-size: 14px;
  padding: 5px;
  min-width: 59px;
}

.cookie_alert .alert {
  border-radius: 15px;
  margin-bottom: 0px;
  position: fixed;
  max-width: 385px;
  left: 15px;
  right: 0;
  bottom: 15px;
  z-index: 9999;
  box-shadow: 0 1.5rem 4rem rgba(47, 44, 216, 0.25);
  padding: 20px 30px;
}
.cookie_alert p {
  font-weight: 400;
  color: #082049;
  line-height: 26px;
}
.cookie_alert p a {
  color: #1355d7;
}
.cookie_alert .btn {
  padding: 7px;
}

.testimonial-content {
  background: #fff;
  box-shadow: 0 1.5rem 4rem rgba(22, 28, 45, 0.05);
  border-radius: 5px;
}
.testimonial-content .owl-carousel .owl-nav .owl-prev {
  position: absolute;
  left: -29px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: #1355d7;
  color: #fff;
  font-size: 18px;
  min-width: auto;
}
.testimonial-content .owl-carousel .owl-nav .owl-prev:hover, .testimonial-content .owl-carousel .owl-nav .owl-prev:focus {
  outline: none;
}
@media only screen and (max-width: 767px) {
  .testimonial-content .owl-carousel .owl-nav .owl-prev {
    left: 15px;
  }
}
.testimonial-content .owl-carousel .owl-nav .owl-next {
  position: absolute;
  right: -29px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: #1355d7;
  color: #fff;
  font-size: 18px;
  min-width: auto;
}
.testimonial-content .owl-carousel .owl-nav .owl-next:hover, .testimonial-content .owl-carousel .owl-nav .owl-next:focus {
  outline: none;
}
@media only screen and (max-width: 767px) {
  .testimonial-content .owl-carousel .owl-nav .owl-next {
    right: 15px;
  }
}

.customer-img img {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  position: relative;
}
.customer-img img::before {
  position: absolute;
  content: "";
}

.customer-review img {
  width: auto !important;
  margin-bottom: 30px;
  margin-top: 30px;
}
.customer-review p {
  margin-bottom: 30px;
  padding-right: 30px;
}

.features-content {
  text-align: center;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0px 10px 20px rgba(55, 55, 89, 0.08);
  height: 100%;
}


.features-content span img{width: 85px;}

@media only screen and (max-width: 767px) {
  .features-content {
    margin-bottom: 50px;
  }
}
.features-content span i {
  color: #1355d7;
  font-size: 36px;
}
.features-content h4, .features-content .h4 {
  font-size: 18px;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;      
  font-family: var(--bs-akzidenz-fontstyle);
  min-height: 50px;
  letter-spacing: 0.5px;
}
.features-content p {
  line-height: 24px;
  max-width: 350px;
  margin: 0 auto 30px;
  min-height: 120px;
}
.features-content a {
  color: #1355d7;
  font-size: 14px;
  transition: all ease 0.75s;
  display: inline-flex;
  align-self: center;
  justify-content: center;
}
.features-content a i{transition: 0.1s ease-in; font-size: 20px;}
.features-content a:hover{ color: #001c47;}
.features-content a:hover i{transform: translateX(50%);}

.portfolio_list {
  margin-top: 100px;
}
.portfolio_list .d-flex {
  margin-bottom: 40px;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0px 10px 20px rgba(55, 55, 89, 0.08);
}
.portfolio_list .d-flex h4, .portfolio_list .d-flex .h4 {
  font-size: 22px;
}
.portfolio_list .d-flex .port-icon {
  height: 72px;
  width: 110px;
  border-radius: 50%;
  border: 1px solid #1355d7;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  margin-right: 30px;
  color: #1355d7;
}
.portfolio_list .d-flex p {
  margin-bottom: 0px;
}
.portfolio_list .d-flex p a {
  color: #1355d7;
}
.buttonloader {
  display: none;
}
.btn-loader.active .buttonloader {
  display: block;
}
.btn-loader.active > span {
  display: none;
}

.balance-widget ul.list-unstyled div.text-right {
  min-width: 144px;
}
.portfolio_img img {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0px 10px 20px rgba(55, 55, 89, 0.08);
}

.widget-card {
  background: #fff;
  border-radius: 15px;
  margin-bottom: 10px;
  padding: 0px 20px;
  box-shadow: 0px 10px 20px rgba(55, 55, 89, 0.08);
}
.widget-card .widget-stat {
  min-width: 200px;
}
.widget-card .widget-stat i {
  font-size: 24px;
}
.widget-card .widget-title,
.widget-card .widget-info {
  display: flex;
  justify-content: space-between;
}
.widget-card .widget-title h5, .widget-card .widget-title .h5,
.widget-card .widget-info h5,
.widget-card .widget-info .h5 {
  color: #082049;
}
.disabledbtn {pointer-events: none;}
.disabledbtn .btn-outline-primary{border-color: #cecece; color: #cecece;}

.profile_chart.card .card-header {
  border: 0px;
}
.widget-card .coin-title span img{ width: 22px;}

@media only screen and (max-width: 767px) {
  .profile_chart.card .card-header {
    flex-direction: column;
  }
}
.profile_chart.card .card-header .duration-option {
  box-shadow: 0px 36px 48px rgba(31, 66, 135, 0.04);
}
.profile_chart.card .card-header .duration-option a {
  display: inline-block;
  margin-left: 10px;
  text-align: center;
  padding: 5px 10px;
  border: 1px solid rgba(55, 55, 89, 0.1);
  transition: all 0.3s ease;
  font-weight: 500;
  border-radius: 5px;
}
.profile_chart.card .card-header .duration-option a:hover, .profile_chart.card .card-header .duration-option a:focus, .profile_chart.card .card-header .duration-option a.active {
  background: #1355d7;
  color: #fff;
  border-right: 1px solid transparent;
}
.profile_chart.card .card-body .chart_current_data {
  min-width: 165px;
  border-radius: 16px;
  background: #fff;
  padding: 13px 20px;
  display: inline-block;
  margin-bottom: 40px;
}
.profile_chart.card .card-body .chart_current_data h3, .profile_chart.card .card-body .chart_current_data .h3 {
  font-size: 36px;
  color: #1355d7;
  margin-bottom: 0px;
  line-height: 43px;
}
.profile_chart.card .card-body .chart_current_data p {
  margin-bottom: 0px;
  font-size: 14px;
  font-weight: 500;
  color: #082049;
}

.chart-stat {
  background: #fff;
  border-radius: 15px;
  padding: 15px 15px;
  margin-bottom: 15px;
  border: 1px solid rgba(55, 55, 89, 0.1);
}
@media only screen and (min-width: 1200px) and (max-width: 1350px) {
  .chart-stat {
    padding: 15px 7px;
  }
}
.chart-stat h5, .chart-stat .h5 {
  margin-bottom: 5px;
}

.transaction-widget li {
  margin-bottom: 15px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(55, 55, 89, 0.1);
  align-items: center;
}
@media only screen and (max-width: 575px) {
  .transaction-widget li {
    align-items: flex-start;
    flex-direction: column;
  }
}
.transaction-widget li:last-child {
  border: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.transaction-widget p {
  margin-bottom: 0px;
}
@media only screen and (max-width: 575px) {
  .transaction-widget p {
    margin-bottom: 10px;
  }
}

.sold-thumb {
  background:#fff;
  color: #072049;
  border:1px solid #072049;
  border-radius: 50px;
  width: 30px;
  height: 30px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}
@media only screen and (max-width: 575px) {
  .sold-thumb {
    margin-bottom: 10px;
  }
}
.sold-thumb i {
  font-weight: 700;
}

.buy-thumb {
  background: #fff;
  color: #1355d7;
  border-radius: 15px;
  width: 30px;
  height: 30px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  border: 1px solid #1355d7;
}
@media only screen and (max-width: 575px) {
  .buy-thumb {
    margin-bottom: 10px;
  }
}
.buy-thumb i {
  font-weight: 700;
}

.balance-widget {
  position: relative;
}
.balance-widget h4, .balance-widget .h4 {
  position: absolute;
  top: -45px;
  left: 0;
  right: 0;
  text-align: center;
}
.balance-widget ul li {
  align-items: center;
  border-bottom: 1px solid rgba(55, 55, 89, 0.1);
  background: transparent;
  border-radius: 0px;
  padding: 15px 0px;
  transition: all ease 0.75s;
}
.balance-widget ul li:last-child {
  border: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.balance-widget ul li i {
  font-size: 30px;
}

.balance-widget ul li:hover{ background: #fff; padding: 15px;}
.balance-widget ul li:first-child{padding: 15px 0px  !important;}
.balance-widget ul li:first-child:hover{background: transparent;}

/* .total-balance {
  padding: 50px 0 35px;
  text-align: center;
} */

/* .apps-download {
  background-image: url("./../images/app.png");
  background-color: #1355d7;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 2;
}
.apps-download::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #1355d7;
  opacity: 0.95;
  z-index: -1;
  border-radius: 5px;
} */

/* .apps-download-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 387px;
}
.apps-download-content li {color: #fff;margin-bottom: 15px;} */
.buy-sell-widget .nav-tabs {margin-bottom: 15px;border: 0px;}
.buy-sell-widget .nav-tabs .nav-item {width: 50%;text-align: center;}
.buy-sell-widget .nav-tabs .nav-item .nav-link {padding: 15px;font-size: 18px;text-transform: uppercase;border: 0px;font-weight: 700;border-radius: 15px 0px 0px 0px;background:  #1355d7;  width: 100%;
color: #fff;transition: all ease 0.75s;}
.buy-sell-widget .nav-tabs .nav-item:last-child .nav-link{border-radius:  0px 15px 0px 0px;}
.buy-sell-widget .nav-tabs .nav-item .nav-link.active {  background: #1355d7;  color: #fff;}
.landingbsw .nav-tabs .nav-item .nav-link.active{ background: #fff; color: #1355d7;}

.landingbsw .nav-tabs .nav-item .nav-link{padding: 30px 15px;}

/* @media only screen and (max-width: 767px) {
  .buyer-seller .d-flex .buyer-info,
  .buyer-seller .d-flex .seller-info {
    padding: 10px;
  }
  .buyer-seller .d-flex .buyer-info img,
  .buyer-seller .d-flex .seller-info img {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .buyer-seller .d-flex {
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 575px) {
  .buyer-seller .d-flex {
    flex-direction: column;
  }
  .buyer-seller .d-flex .seller-info {
    text-align: left !important;
  }
} */

/* #accordion-faq {
  margin-top: -15px;
}
#accordion-faq .card {
  margin-bottom: 0px;
  border: 0px solid rgba(55, 55, 89, 0.1);
  box-shadow: none;
}
#accordion-faq .card .card-header {
  border: 0px;
  padding: 15px 10px;
}
#accordion-faq .card .card-body {
  padding: 15px 10px 10px;
} */

/* .intro-video-play {
  background-color: #fff;
  background-image: url("./../images/background/2.jpg");
  background-size: cover;
  background-position: 0 0;
  min-height: 465px;
  margin: 0 auto;
  position: relative;
  border-radius: 15px;
  z-index: 1;
  margin-bottom: 30px;
  box-shadow: 0 1.5rem 4rem rgba(22, 28, 45, 0.1);
}
.intro-video-play::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #423A6F;
  opacity: 0.65;
  border-radius: 5px;
  z-index: -1;
} */

/* .play-btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.play-btn a {
  background: #fff;
  width: 75px;
  height: 75px;
  border-radius: 100px;
  padding: 27px 0;
  text-align: center;
  cursor: pointer;
}
.play-btn a i {
  color: #1355d7;
} */

.settings_menu ul li a {
  padding: 12px 0;
}
.settings_menu ul li i {
  font-weight: bold;
  margin-right: 10px;
  font-size: 20px;
}
.settings_menu ul li span {
  font-weight: 500;
}

/* .phone_verify {
  margin-top: 50px;
  border-top: 1px solid rgba(55, 55, 89, 0.1);
  padding-top: 30px;
} */

/* .phone_verified {
  display: flex;
  align-items: center;
}
.phone_verified h5, .phone_verified .h5 {
  margin-bottom: 0;
  margin-right: 30px;
  color: #082049;
}
.phone_verified h5 span, .phone_verified .h5 span {
  color: #1355d7;
  padding: 9px 10px;
  border-radius: 50px;
  margin-right: 7px;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  border: 1px solid rgba(55, 55, 89, 0.1);
  height: 40px;
  width: 40px;
  display: inline-block;
}
.phone_verified .verified,
.phone_verified .not-verify {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
}
.phone_verified .verified span,
.phone_verified .not-verify span {
  background: #1355d7;
  color: #fff;
  padding: 10px;
  border-radius: 50px;
  height: 20px;
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  margin-right: 15px;
  font-weight: bold;
  font-size: 12px;
}
.phone_verified .not-verify span {
  background: #072049;
} */

/* .id_card {
  padding: 20px;
  border: 1px solid rgba(55, 55, 89, 0.1);
  border-radius: 5px;
} */

/* .profile_card .media {
  border-bottom: 1px solid rgba(55, 55, 89, 0.1);
  padding-bottom: 20px;
  margin-bottom: 20px;
} */

/* .card-profile__info h5, .card-profile__info .h5 {
  display: inline-block;
} */

/* .social-icons {
  margin-top: 20px;
}
.social-icons a {
  border-radius: 100px;
  padding: 7px 0px;
  margin-right: 15px;
  height: 42px;
  width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #1355d7;
  text-align: center;
} */

/* .acc_balance .btn-group {
  width: 100%;
} */

/* .linked_account li .row {
  align-items: center;
}
.linked_account li .media {
  border: 1px solid rgba(55, 55, 89, 0.1);
  align-items: center;
  padding: 20px;
  border-radius: 5px;
}
.linked_account li .media > span {
  background: #1355d7;
  color: #fff;
  padding: 10px;
  border-radius: 50px;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
}
.linked_account li .media .flex-grow-1 p {
  margin-bottom: 0px;
}
.linked_account li .edit-option a {
  display: inline-block;
  padding: 5px;
  font-size: 18px;
}
.linked_account li .edit-option a:last-child {
  color: #072049;
}
.linked_account li .verify .verified,
.linked_account li .verify .not-verify {
  display: flex;
  align-items: center;
  font-weight: 500;
}
.linked_account li .verify .verified span,
.linked_account li .verify .not-verify span {
  background: #1355d7;
  color: #fff;
  padding: 10px;
  border-radius: 50px;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  margin-right: 15px;
  font-weight: bold;
}
.linked_account li .verify .not-verify span {
  background: #072049;
} */

.terms_condition { 
  position: relative;
}

.terms_condition-content, .sp-inner {
  padding: 150px 0px 100px;
}

.terms_condition-text {
  margin-bottom: 45px;
}
.terms_condition-text:last-child {
  margin-bottom: 0;
}
.terms_condition-text h3, .terms_condition-text .h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
}
.terms_condition-text p {
  font-size: 17px;
  line-height: 30px;
  display: inline-block;
}
.terms_condition-text li {
  display: flex;
}
.terms_condition-text li i {
  line-height: 30px;
  margin-right: 15px;
  font-size: 13px;
  color: #AEAED5;
}

/* .our_vision h3, .our_vision .h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 28px;
}
.our_vision p {
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 30px;
} */

.info-list ul li {
  margin-bottom: 7px;
  font-weight: 500;
  padding: 5px 0;
}
.info-list ul li:hover, .info-list ul li:focus {
  color: #1355d7;
}
.info-list ul li i {
  margin-right: 15px;
  color: #1355d7;
  font-weight: bold;
  font-size: 24px;
}

.auth-form {
  border: 1px solid rgba(55, 55, 89, 0.1);
}
.auth-form .page-back {
  display: inline-block;
  margin-bottom: 15px;
}

/* .identity-content {
  text-align: center;
}
.identity-content .icon {
  display: flex;
  width: 75px;
  height: 75px;
  border-radius: 100px;
  margin: 0 auto;
  background: #1355d7;
  color: #097942;
  font-size: 30px;
  padding: 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.identity-content h4, .identity-content .h4 {
  max-width: 350px;
  margin: 0 auto 15px;
}
.identity-content p {
  max-width: 350px;
  margin: 0 auto 30px;
} */

/* .demo_img {
  text-align: center;
  margin-bottom: 60px;
}
.demo_img .img-wrap {
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0px 10px 20px rgba(31, 66, 135, 0.2);
  background: #fff;
  padding: 10px;
  border-radius: 15px;
}
.demo_img img {
  border-radius: 15px;
} */

/* .intro-img {
  box-shadow: 0px 10px 20px rgba(31, 66, 135, 0.2);
  background: #fff;
  padding: 10px;
  border-radius: 15px;
} */
/* .success-trade {
  font-weight: 600;
  color: #1355d7;
} */

/*# sourceMappingURL=style.css.map */