@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-block {
  display: block !important;
}
.d-grid {
  display: grid !important;
}
.d-table {
  display: table !important;
}
.d-table-row {
  display: table-row !important;
}
.d-table-cell {
  display: table-cell !important;
}
.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
.d-none {
  display: none !important;
}
.position-static {
  position: static !important;
}
.position-relative {
  position: relative !important;
}
.position-absolute {
  position: absolute !important;
}
.position-fixed {
  position: fixed !important;
}
.position-sticky {
  position: sticky !important;
}
.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;
}
.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;
}
.border-0 {
  border: 0px !important;
}
.border-top-0 {
  border-top: 0px !important;
}
.border-bottom-0 {
  border-bottom: 0px !important;
}
.border-left-0 {
  border-left: 0px !important;
}
.border-right-0 {
  border-right: 0px !important;
}
.flex-fill {
  -webkit-box-flex: 1 !important;
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}
.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}
.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}
.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}
.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}
.flex-grow-0 {
  -webkit-box-flex: 0 !important;
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}
.flex-grow-1 {
  -webkit-box-flex: 1 !important;
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}
.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}
.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}
.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}
.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}
.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}
.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}
.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}
.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}
.justify-content-evenly {
  -webkit-box-pack: space-evenly !important;
  -ms-flex-pack: space-evenly !important;
  justify-content: space-evenly !important;
}
.align-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}
.align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}
.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}
.align-items-baseline {
  -webkit-box-align: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}
.align-items-stretch {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}
.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}
.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}
.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}
.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}
.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}
.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}
.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}
.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}
.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}
.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}
.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}
.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !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;
}
.text-start {
  text-align: left !important;
}
.text-end {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xxl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xxl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}

html {
    font-size: 16px !important;
}
.main-body {
    padding-bottom: 0;
    min-height: 100vh;
    font-family: "Inter", sans-serif !important;
    background-color: #F6F7FA;
}
.ag-theme-quartz, .ag-theme-quartz-dark {
  --ag-font-family: "Inter", sans-serif !important;
}
.container {
    width: 100%;
    max-width: 100% !important;
    margin: 0 !important;
    position: relative !important;
    padding: 0 0.75rem;
}
.btn {
    height: 46px;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 16px !important;
    line-height: 20px;
    font-weight: 500;
    box-shadow: unset !important;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-xs {
    font-size: 14px !important;
    line-height: 18px;
    height: 37px;
    padding: 8px 12px;
    border-radius: 4px;
    column-gap: 8px;
    min-width: 76px;
}
.btn-xs i {
    font-size: 16px;
}
.btn.btn-primary, .btn.btn-primary:not(.buttons-colvisGroup) {
    background: #012169 !important;
    color: #F6FBEA;
}
.btn.btn-primary:hover, .btn.btn-primary:not(.buttons-colvisGroup):hover {
    background: #222d65 !important;
    color: #F6FBEA;
}
.btn.btn-outline, .btn.btn-outline:not(.buttons-colvisGroup) {
    border: 1px solid #E6E9F0;
    background: transparent !important;
    color: #6B7280 !important;
}
.btn.btn-outline:hover, .btn.btn-outline:not(.buttons-colvisGroup):hover {
    background-color: #E6E9F0 !important;
}
.btn.btn-secondary, .btn.btn-secondary:not(.buttons-colvisGroup) {
  background: #344D87 !important;
  color: #F6FBEA;
}
.btn.btn-secondary:hover, .btn.btn-secondary:not(.buttons-colvisGroup):hover {
  background: #012169 !important;
  color: #F6FBEA;
}
.btn.btn-outline-secondary, .btn.btn-outline-secondary:not(.buttons-colvisGroup) {
  border: 1px solid #8A99BA;
  background: transparent !important;
  color: #344D87 !important;
}
.btn.btn-outline-secondary:hover, .btn.btn-outline-secondary:not(.buttons-colvisGroup):hover {
  border-color: #344D87 !important;
  background-color: #344D87 !important;
  color: #fff !important;
}
.btn.btn-blue3, .btn.btn-blue3:not(.buttons-colvisGroup) {
  background: #00B4CD !important;
  color: #F6FBEA;
}
.btn.btn-blue3:hover, .btn.btn-blue3:not(.buttons-colvisGroup):hover {
  background: #00A4BB !important;
  color: #F6FBEA;
}
.rg-0 {
    row-gap: 0 !important;
}
@media screen and (max-width: 767px) {
    .btn {
        height: 38px;
        font-size: 13px !important;
        line-height: 17px;
        padding: 9px 12px;
        border-radius: 6px;
    }
}

/* Login screen */
.login-section {
    background: url(../Content/Images/login-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding: 50px 0;
}
.login-content {
    max-width: 492px;
    width: 100%;
    padding: 0 12px;
    margin: 0 auto;
    min-height: calc(100vh - 100px);
}
.login-content .login-card {
    border-radius: 24px;
    padding: 40px 60px;
    box-shadow: 0 0 34px rgb(142 152 168 / 24%);
    margin: 0;
}
.login-content .login-card .card-content {
    padding: 0;
    border-radius: 0;
    text-align: center;
}
.login-content .login-card .card-content img {
    width: 100%;
    height: 93px;
    margin: 0 auto;
}
.login-content .login-card .card-content .card-title {
    margin-top: 0;
    margin-bottom: 4px;
    font-size: 38px;
    line-height: 46px;
    color: #344D87 !important;
}
.login-content .login-card .card-content p {
    font-size: 13px;
    line-height: 16px;
    color: #344D87;
    margin-bottom: 0px;
}
.login-content .login-card .card-content form {
    margin-top: 32px;
}
.login-content .login-card .card-content .input-field {
    margin-top: 0px;
    margin-bottom: 8px;
    position: relative;
}
.login-content .login-card .card-content .input-field label {
    position: relative;
    left: unset;
    transform: unset;
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 8px;
    display: block;
    color: #344D87;
}
.login-content .login-card .card-content .input-field .form-control {
    border: 1px solid #B0BAD1;
    background-color: transparent;
    height: 48px;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    line-height: 1;
    color: #344D87;
    margin-bottom: 26px;
    box-sizing: border-box;
}
.login-content .login-card .card-content .input-field .error-message {
    font-size: 14px;
    line-height: 22px;
    color: #E21D12;
    position: absolute;
    left: 12px;
    bottom: 0;
}
.login-content .login-card .card-content .input-field .form-control::placeholder {
    color: #6B7280;
}
.login-content .login-card .card-content .input-field i {
    position: absolute;
    right: 24px;
    bottom: 39px;
    display: block;
    font-size: 24px;
    color: #6B7280;
}
.login-content .login-card .card-content .btn-container {
    margin-top: 20px;
    width: 100%;
}
.login-content .login-card .card-content .btn-container .btn {
    background: #012169 !important;
}
.login-content .login-card .card-content .btn-container .btn:hover {
    background: #222d65 !important;
}
.footer {
    margin-top: 22.75px;
    column-gap: 32px;
    row-gap: 8px;
}
.footer p, .footer a {
    font-size: 14px;
    line-height: 17px;
    color: #344D87;
    margin: 0;
}
.footer a {
    color: #6B7280;
}
.footer a:hover {
    color: #344D87;
}

@media screen and (max-width: 1199px) {
    .login-content .login-card {
        padding: 32px 48px;
    }
    .login-content .login-card .card-content img {
        width: 160px;
    }
    .login-content .login-card .card-content .card-title {
        font-size: 28px;
        line-height: 36px;
    }
    .login-content .login-card .card-content form {
        margin-top: 24px;
    }
    .login-content .login-card .card-content .input-field label {
        font-size: 13px;
        line-height: 16px;
    }
    .login-content .login-card .card-content .input-field .form-control {
        height: 44px;
        font-size: 13px;
        margin-bottom: 20px;
    }
    .login-content .login-card .card-content .input-field i {
        bottom: 34px;
        font-size: 20px;
    }
    .login-content .login-card .card-content .btn-container {
        margin-top: 16px;
    }
    .login-content .login-card .card-content .input-field .error-message {
        font-size: 13px;
        line-height: 17px;
    }
}
@media screen and (max-width: 767px) {
    .login-content .login-card {
        padding: 24px 36px;
    }
    .login-content .login-card .card-content img {
        width: 120px;
    }
    .login-content .login-card .card-content .card-title {
        font-size: 20px;
        line-height: 28px;
    }
    .login-content .login-card .card-content p, .login-content .login-card .card-content .input-field label {
        font-size: 12px;
        line-height: 15px;
    }
    .login-content .login-card .card-content form {
        margin-top: 20px;
    }
    .login-content .login-card .card-content .input-field .form-control {
        height: 40px;
        font-size: 12px;
        border-radius: 6px;
    }
    .login-content .login-card .card-content .input-field i {
        bottom: 29px;
        font-size: 16px;
    }
    .login-content .login-card .card-content .btn-container {
        margin-top: 12px;
    }
    .footer p, .footer a {
        font-size: 12px;
        line-height: 15px;
    }
    .login-content .login-card .card-content .input-field .error-message {
        font-size: 12px;
        line-height: 14px;
    }
}
@media screen and (max-width: 575px) {
    .login-content .login-card {
        padding: 24px 28px;
    }
}
@media screen and (max-width: 440px) {
    .footer p, .footer a {
        width: 100%;
        text-align: center;
    }
}

/* main container */
.custom-container {
    max-width: calc(100% - 320px) !important;
    margin-left: 320px !important;
}
.custom-container.container-large {
    max-width: calc(100% - 48px) !important;
    margin-left: 48px !important;
}
.custom-container.container-extraLarge {
  max-width: 100% !important;
  margin-left: 0px !important;
}
@media screen and (max-width: 1440px) {
  .custom-container {
    max-width: calc(100% - 280px) !important;
    margin-left: 280px !important;
  }
}

/* sidebar */
.nav-wrapper .side-nav-wrapper {
    max-width: 320px;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    margin: 0;
    background-color: #fff;
}
.nav-wrapper .side-nav-wrapper.side-nav-collapse {
    max-width: 48px;
}
.custom-container.container-extraLarge .nav-wrapper .side-nav-wrapper {
  background: transparent;
  max-width: 48px;
}
.side-nav-wrapper .brand-logo {
    padding: 6px 16px;
    height: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid #E6E9F0;
}
.nav-wrapper .side-nav-wrapper.side-nav-collapse .brand-logo, 
.custom-container.container-extraLarge .nav-wrapper .side-nav-wrapper .brand-logo {
    padding: 10px 4px;
}
.side-nav-wrapper .brand-logo img {
    width: 80px;
    height: auto;
    margin: 0 auto;
}
.nav-wrapper .side-nav-wrapper.side-nav-collapse .brand-logo img, 
.custom-container.container-extraLarge .nav-wrapper .side-nav-wrapper .brand-logo img {
  width: 40px;
}
.nav-wrapper .side-nav-wrapper.side-nav-collapse .floating-btn-container {
    height: calc(100% - 124px);
}
.custom-container.container-extraLarge .nav-wrapper .side-nav-wrapper .floating-btn-container {
  display: none;
}
.side-nav-wrapper .btn-floating {
    position: relative !important;
    width: 100%;
    left: unset !important;
    height: 48px;
    padding: 12px 16px;
    background: #00B4CD;
    color: #F9FAFB;
    border-radius: 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: unset;
    transition: unset;
}
.nav-wrapper .side-nav-wrapper.side-nav-collapse .btn-floating {
    transform: rotate(180deg);
    height: 220px;
    padding: 12px;
    justify-content: center !important;
    column-gap: 10px;
    writing-mode: vertical-rl;
}
.btn-text {
    white-space: nowrap; /* Prevent text from wrapping */
}
.side-nav-wrapper .btn-floating i {
    width: unset;
    line-height: inherit;
    font-size: 24px !important;
}
.side-nav-wrapper .custom-side-nav {
    margin: 0;
    border-right: 1px solid #E6E9F0;
    background: transparent !important;
    height: unset !important;
}
.nav-wrapper .side-nav-wrapper.side-nav-collapse .custom-side-nav, 
.custom-container.container-extraLarge .nav-wrapper .side-nav-wrapper .custom-side-nav {
    display: none;
}
.side-nav-wrapper .center_date {
    padding: 4px 16px;
    border-bottom: 1px solid #E6E9F0;
}
.side-nav-wrapper .custom-side-nav p {
    margin: 0;
    font-size: 14px;
    line-height: 21px;
    color: #4B5563;
    font-weight: 500;
}
.side-nav-wrapper .custom-side-nav p span {
    color: #00A4BB;
}
.filter-head {
    margin: 0;
    background: #EBEDF3;
    padding: 8px 16px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #012169;
    text-transform: uppercase;
}
.filter-head a {
    font-size: 14px;
    line-height: 21px;
    color: #00A4BB;
    text-transform: capitalize;
    font-weight: 500;
    margin-top: 0 !important;
    cursor: pointer;
}
.filter-radio {
    padding: 16px;
    column-gap: 24px;
    border-bottom: 1px solid #E6E9F0;
}
.filter-radio input {
    margin: 0;
}
.filter-radio .admin-radio + label {
    padding-left: 24px;
    font-size: 14px;
    line-height: 24px;
    color: #012169;
    font-weight: 400;
}
.filter-radio .admin-radio + label::before {
    border: 1px solid #D1D5DB;
    background-color: #F9FAFB;
    margin: 0;
    top: 50%;
    transform: translateY(-50%);
}
.filter-radio .admin-radio:checked + label::before {
    border: 4px solid #344D87;
}
.filter-radio .admin-radio + label::after {
    display: none;
}
.side-nav-wrapper .custom-side-nav .no-padding {
    height: calc(100vh - 294px);
    overflow-y: auto;
}
/* .side-nav-wrapper .custom-side-nav .no-padding::-webkit-scrollbar {
    width: 5px;
}
.side-nav-wrapper .custom-side-nav .no-padding::-webkit-scrollbar-track {
    background-color: #e6e9f0;
    border-radius: 10px;
}
.side-nav-wrapper .custom-side-nav .no-padding::-webkit-scrollbar-thumb {
    background: #012169; 
    border-radius: 10px;
} */
.side-nav-wrapper .custom-side-nav .no-padding .collapsible {
    margin: 0px;
    border: 0px;
    border-bottom: 1px solid #E6E9F0;
    box-shadow: none;
}
.side-nav-wrapper .custom-side-nav .no-padding .collapsible-header {
    padding: 16px;
    column-gap: 12px;
    font-size: 14px;
    line-height: 21px;
    color: #012169;
}
.side-nav-wrapper .custom-side-nav .no-padding .collapsible-header i {
    width: auto;
    font-size: 16px;
    margin: 0;
}
.side-nav-wrapper .custom-side-nav .no-padding .collapsible-body {
    padding: 16px;
    background-color: #fff !important;
    border-bottom: 0px;
    border-top: 1px solid #E6E9F0;
    row-gap: 12px;
}
.side-nav-wrapper .custom-side-nav .no-padding .collapsible-body textarea, 
.side-nav-wrapper .custom-side-nav .no-padding .collapsible-body .select2-selection--single, 
.main-body .select2-container .select2-dropdown .select2-search--dropdown input {
    margin: 0;
    background-color: #F9FAFB;
    height: 74px;
    padding: 8px 16px;
    border: 1px solid #B0BAD1 !important;
    border-radius: 8px !important;
    overflow-y: auto;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    color: #6B7280 !important;
    outline: unset;
}
.side-nav-wrapper .custom-side-nav .no-padding .collapsible-body textarea::placeholder {
    color: #6B7280;
    opacity: 0.7;
}
.side-nav-wrapper .custom-side-nav .no-padding .collapsible-body .select2-selection--single, 
.main-body .select2-container .select2-dropdown .select2-search--dropdown input {
    height: 37px;
    overflow-y: unset;
}
.side-nav-wrapper .custom-side-nav .no-padding .collapsible-body .select2-selection__rendered {
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    color: #6B7280 !important;
    padding-left: 0px;
    padding-right: 10px;
}
.side-nav-wrapper .custom-side-nav .no-padding .collapsible-body .select2-selection__placeholder {
    color: #6B7280 !important;
}
.side-nav-wrapper .custom-side-nav .no-padding .collapsible-body .select2-selection__arrow {
    height: 12px;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: unset;
    display: flex;
    align-items: center;
    justify-content: center;
}
.side-nav-wrapper .custom-side-nav .no-padding .collapsible-body .select2-selection__arrow:after {
    content: "\f907";
    font-family: 'forecast' !important;
    font-size: 12px;
    line-height: 12px;
}
.side-nav-wrapper .custom-side-nav .no-padding .collapsible-body .select2-selection__arrow b {
    display: none;
}
.main-body .select2-container .select2-dropdown {
    box-shadow: 0 0 8px #b0bad19c !important;
    border-radius: 8px;
}
.main-body .select2-container .select2-dropdown--below {
    margin: 8px 0 0;
}
.main-body .select2-container .select2-dropdown--above {
    margin: 0 0 8px;
}
.main-body .select2-container .select2-dropdown .select2-search--dropdown {
    height: unset;
    border: 0 !important;
    margin: 0;
    padding: 10px;
    background: transparent;
    overflow-y: auto;
}
.main-body .select2-container .select2-dropdown .select2-search--dropdown input {
    box-sizing: border-box;
    width: unset;
}
.main-body .select2-container .select2-dropdown .select2-results .select2-results__options {
    margin-bottom: 10px;
}
.main-body .select2-container .select2-dropdown .select2-results .select2-results__option {
    margin: 0;
    font-size: 14px;
    line-height: 21px;
    padding: 8px 16px;
    font-weight: 400;
    color: #012169 !important;
}
.main-body .select2-container .select2-dropdown .select2-results .select2-results__option.loading-results {
    color: #6B7280 !important;
}
.main-body .select2-container .select2-dropdown .select2-results .select2-results__option.select2-results__option--highlighted, 
.main-body .select2-container .select2-dropdown .select2-results .select2-results__option[forecast-selected=true] {
    background-color: #012169 !important;
    color: #fff !important;
}
.main-body .select2-container .select2-dropdown .select2-results .select2-results__option.select2-results__message {
    color: #E02424 !important;
}
.side-nav-wrapper .custom-side-nav .no-padding .collapsible-body .collapsible {
    border-bottom: 0px;
}
.side-nav-wrapper .custom-side-nav .no-padding .collapsible-header.inner-collapsible {
    background-color: #F9FAFB;
    height: 37px;
    padding: 8px 16px;
    border: 1px solid #B0BAD1 !important;
    border-radius: 8px !important;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    color: #6B7280 !important;
    outline: unset;
}
.side-nav-wrapper .custom-side-nav .no-padding .collapsible-body .collapsible .collapsible-body {
    box-shadow: 0 0 8px #b0bad19c !important;
    border-radius: 8px;
    margin-top: 8px;
    padding: 10px;
    border-top: 0px;
}
.side-nav-wrapper .custom-side-nav .no-padding .collapsible-body .collapsible .collapsible-body .ui-widget-content {
    float: unset !important;
    border-radius: 7px;
    line-height: 44px !important;
    margin-bottom: 0px !important;
}
.side-nav-wrapper .custom-side-nav .no-padding .collapsible-body .collapsible .collapsible-body .ui-widget-content.ui-selected-include {
    background: #012169;
}
.side-nav-wrapper .custom-side-nav .no-padding .collapsible.custom-popout {
    margin-top: 8px;
    background: #E6E9F0;
    padding: 16px;
}
.side-nav-wrapper .custom-side-nav .no-padding .collapsible.custom-popout > li.bold {
    row-gap: 12px;
}
.side-nav-wrapper .custom-side-nav .no-padding .collapsible.custom-popout .collapsible-header {
    font-weight: 700;
    background: transparent;
    padding: 0;
}
.side-nav-wrapper .custom-side-nav .no-padding .collapsible.custom-popout .collapsible-body {
    background-color: transparent !important;
    border-top: 0;
    row-gap: 4px;
}
.side-nav-wrapper .custom-side-nav .no-padding .collapsible.custom-popout .collapsible-body .collapsible {
    background: #fff;
    border-radius: 4px;
}
.side-nav-wrapper .custom-side-nav .no-padding .collapsible.custom-popout .collapsible-body .collapsible .collapsible-header {
    padding: 8px 12px;
    align-items: center;
    font-weight: 400;
}
.side-nav-wrapper .custom-side-nav .no-padding .collapsible.custom-popout .collapsible-body .collapsible .collapsible-header i {
    font-size: 14px;
}
.side-nav-wrapper .custom-side-nav .no-padding .collapsible.custom-popout .collapsible-body .collapsible .collapsible-header i.filter-clear-button {
    font-size: 16px;
    color: #E02424;
}
    .side-nav-wrapper .custom-side-nav .no-padding .collapsible.custom-popout .collapsible-body .collapsible .collapsible-header i.filter-clear-retailbutton {
        font-size: 16px;
        color: #E02424;
    }
.side-nav-wrapper .custom-side-nav .no-padding .collapsible .collapsible-header.active i.fc-down-arrow {
    transform: rotate(180deg);
}
.side-nav-wrapper .custom-side-nav .no-padding .collapsible.custom-popout .collapsible-body .collapsible .collapsible-body {
    box-shadow: unset !important;
    margin-top: 0;
    padding: 4px 12px 8px !important;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 8px;
    row-gap: 8px;
}
.side-nav-wrapper .custom-side-nav .no-padding .collapsible.custom-popout .collapsible-body .chip {
    margin: 0;
    column-gap: 8px;
    padding: 4px 8px;
    border: 1px solid #D1D5DB;
    background: #F3F4F6;
    font-size: 10px;
    line-height: 15px;
    font-weight: 500;
    color: #4B5563;
    height: unset;
    border-radius: 25px;
}
.side-nav-wrapper .custom-side-nav .no-padding .collapsible.custom-popout .collapsible-body.exclude-filter .chip {
  background: #E02424;
  color: #ffffff;
  border-color: #E02424;
}
.side-nav-wrapper .custom-side-nav .no-padding .collapsible.custom-popout .collapsible-body .chip i {
  font-size: 14px;
  color: #E02424;
}
.side-nav-wrapper .custom-side-nav .no-padding .collapsible.custom-popout .collapsible-body.exclude-filter .chip i {
  color: #fff;
}
.save-bookmark {
  padding: 12px 16px 0;
  text-align: center;
  border-right: 1px solid #E6E9F0;
}
.save-bookmark .btn {
  margin: 0 auto;
}
.nav-wrapper .side-nav-wrapper.side-nav-collapse .save-bookmark, .custom-container.container-extraLarge .nav-wrapper .side-nav-wrapper .save-bookmark {
  display: none;
}
.side-nav-wrapper .footer-logo {
  padding: 12px 16px;
  height: 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #E6E9F0;
  align-items: center;
}
.nav-wrapper .side-nav-wrapper.side-nav-collapse .footer-logo {
    padding: 16px 4px;
    height: 76px;
}
.custom-container.container-extraLarge .nav-wrapper .side-nav-wrapper .footer-logo {
  display: none;
}
.side-nav-wrapper .footer-logo img {
    width: 121px;
    height: auto;
}
.nav-wrapper .side-nav-wrapper.side-nav-collapse .footer-logo .large-logo {
    display: none;
}
.side-nav-wrapper .footer-logo img.small-logo {
    display: none;
}
.nav-wrapper .side-nav-wrapper.side-nav-collapse .footer-logo .small-logo {
    display: block;
    width: 38px;
}
@media screen and (max-width: 1440px) {
  .nav-wrapper .side-nav-wrapper {
    max-width: 280px;
  }
  .side-nav-wrapper .btn-floating {
    height: 44px;
    padding: 10px 12px;
    font-size: 14px;
    line-height: 20px;
  }
  .side-nav-wrapper .btn-floating i {
    font-size: 22px !important;
  }
  .side-nav-wrapper .center_date {
    padding: 4px 12px;
  }
  .side-nav-wrapper .custom-side-nav p {
    font-size: 12px;
    line-height: 19px;
  }
  .filter-head {
    padding: 8px 12px;
    font-size: 14px;
    line-height: 20px;
  }
  .filter-radio {
    padding: 12px;
    column-gap: 20px;
  }
  .side-nav-wrapper .custom-side-nav .no-padding .collapsible-header, 
  .side-nav-wrapper .custom-side-nav .no-padding .collapsible.custom-popout {
    padding: 12px;
  }
  .side-nav-wrapper .custom-side-nav .no-padding .collapsible-body {
    padding: 12px;
    row-gap: 8px;
  }
  .save-bookmark {
    padding: 8px 12px 0;
    text-align: center;
  }
  .side-nav-wrapper .footer-logo {
    padding: 8px 12px;
    height: 48px;
  }
  .side-nav-wrapper .footer-logo img {
    width: 110px;
  }
  .side-nav-wrapper .custom-side-nav .no-padding {
    height: calc(100vh - 268px);
  }
}

/* Top Header */
.nav-wrapper .top-header .tabs li a .new.badge.menu-badge {
  top: 0px;
  right: 0px;
  font-size: 12px;
  border-radius: 25px;
  line-height: 20px;
  min-width: 20px;
  min-height: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00b4cd !important;
}
.nav-wrapper #top-nav-wrapper.top-header {
    padding: 8px !important;
    background: #fff;
    border-bottom: 1px solid #E6E9F0;
    height: 48px !important;
    box-sizing: border-box;
}
.custom-container.container-extraLarge .nav-wrapper #top-nav-wrapper.top-header {
  padding: 8px 8px 8px 56px !important;
}
.nav-wrapper .top-header .nav-extended {
    box-shadow: unset;
    line-height: unset;
    background-color: unset;
    color: unset;
}
.nav-wrapper .top-header .tabs {
    width: auto;
    margin: 0;
    height: unset;
    overflow: unset;
    display: flex;
    align-items: center;
}
.nav-wrapper .top-header .tabs li {
    height: auto;
    line-height: unset;
    position: relative;
}
.nav-wrapper .top-header .tabs li a {
    padding: 4px 12px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    background-color: transparent;
    color: #344D87;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    border-radius: 4px;
}
.nav-wrapper .top-header .tabs.tabs-left li a.active {
    color: #fff;
    background-color: #012169;
}
.nav-wrapper .top-header .tabs li .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: block;
  min-width: 100%;
  z-index: 999;
  padding-top: 10px;
  opacity: 0;
  visibility: hidden;
}
.nav-wrapper .top-header .tabs li.show .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nav-wrapper .top-header .tabs li .dropdown-menu .dropdown-nav {
  background: #fff;
  box-shadow: 0 0 12px #0000001f;
  border-radius: 8px;
  padding: 4px 0;
}
.nav-wrapper .top-header .tabs li .dropdown-menu ul li {
  float: unset;
}
.nav-wrapper .top-header .tabs li .dropdown-menu ul li .dropdown-trigger {
  font-size: 14px;
  line-height: 21px;
  color: #374151;
  border-bottom: 1px solid #F3F4F6;
  justify-content: left;
}
.nav-wrapper .top-header .tabs li .dropdown-menu ul li .dropdown-trigger:hover {
  color: #344D87;
}
.nav-wrapper .top-header .tabs li .dropdown-menu ul li:last-child .dropdown-trigger {
  border-bottom: 0px;
}
.nav-wrapper .top-header .tabs li a i {
    height: unset;
    font-size: 24px;
    line-height: 24px;
}
.nav-wrapper .top-header .tabs li#notifications-button a {
    height: 40px;
}
.nav-wrapper .top-header .tabs li.user-tab a {
    padding: 0px;
    column-gap: 8px;
}
.nav-wrapper .top-header .tabs.tabs-right li .dropdown-menu {
  left: auto;
  right: 0;
  min-width: 200px;
}
.nav-wrapper .top-header .tabs li.user-tab .dropdown-menu a {
  padding: 8px 16px;
}
.nav-wrapper .top-header .tabs.tabs-right li .dropdown-menu a i {
  font-size: 20px;
  line-height: 20px;
}
.nav-wrapper .top-header .tabs li .dropdown-menu ul li .dropdown-trigger .dropdown-trigger-text {
  flex: 1 1 auto;
  text-align: start;
}
.nav-wrapper .top-header .tabs li.user-tab a img {
    width: 32px;
    height: 32px;
    border-radius: 32px;
}
.nav-wrapper .top-header .tabs li.user-tab a .user-name {
  background: #012169;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  width: 32px;
  height: 32px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* .nav-wrapper .top-header .tabs li.user-tab::after {
    content: '';
    width: 1px;
    height: 32px;
    background-color: #E6E9F0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
} */
.nav-wrapper .top-header .tabs.tabs-right li a {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
}
.nav-wrapper .top-header .tabs li.downloading-tab {
  padding: 0 16px;
}
.nav-wrapper .top-header .tabs li.downloading-tab::after {
  content: '';
  width: 1px;
  height: 32px;
  background-color: #E6E9F0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.nav-wrapper .top-header .tabs.tabs-right li.downloading-tab a {
  column-gap: 4px;
  background-color: #E6E9F0;
  border-radius: 4px;
  padding: 6px 12px;
  line-height: 24px;
}
.nav-wrapper .top-header li.downloading-tab .dropdown-menu, 
.nav-wrapper .top-header li.notifications-tab .dropdown-menu {
  left: auto;
  right: 16px;
}
.nav-wrapper .top-header li.downloading-tab .dropdown-menu .dropdown-nav {
  padding: 32px;
  width: 580px;
}
.nav-wrapper .top-header li.notifications-tab .dropdown-menu .dropdown-nav {
  padding: 32px;
  width: 455px;
}
.dropdown-menu .dropdown-nav .dropdown-header {
  margin: 0px 0px 10px;
  text-align: left;
  font-size: 24px;
  line-height: 36px;
  font-weight: 400;
  color: #344D87;
  text-transform: capitalize;
}
.dropdown-menu .dropdown-nav li.custom-collection-item {
  padding: 8px 4px;
  margin: 0;
  column-gap: 16px;
  text-transform: capitalize;
  text-align: left;
  border-bottom: 1px dashed #B0BAD1;
}
.nav-wrapper .top-header li.notifications-tab .dropdown-menu .dropdown-nav #notifications-list>.notifications-item {
  box-shadow: unset;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}
.custom-collection .custom-collection-item p span {
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  display: block;
}
.nav-wrapper .top-header .dropdown-menu .dropdown-nav li.custom-collection-item a {
  background: transparent;
  padding: 0;
  width: auto;
  height: auto;
  font-size: 32px;
  line-height: 32px;
}
.nav-wrapper .top-header .dropdown-menu .dropdown-nav li.custom-collection-item a i {
  font-size: 32px;
  line-height: 32px;
}
.nav-wrapper .top-header .dropdown-menu .dropdown-nav li.custom-collection-item a.custom-close-button {
  padding: 4px;
  width: 32px;
  height: 32px;
}
.nav-wrapper .top-header .dropdown-menu .dropdown-nav li.custom-collection-item a.custom-close-button i {
  font-size: 24px;
  line-height: 24px;
}
#sidenav-overlay {
  opacity: 0 !important;
}
.nav-wrapper .top-header li.notifications-tab .dropdown-menu#notifications-side-nav {
  background: transparent;
  overflow-y: unset;
  height: unset;
  transform: unset !important;
  width: unset !important;
  z-index: 999999999;
}
.dropdown-menu .dropdown-nav .dropdown-header #clear-notifications-list {
  background: transparent;
  width: unset;
  padding: 0;
  height: unset !important;
  position: relative;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  color: #00A4BB;
}
.custom-collection .custom-collection-item p.notification-content,
.custom-collection .custom-collection-item p span.notification-title {
    text-wrap: balance;
    font-size: 14px;
    line-height: 21px;
    width: calc(100% - 36px);
}
.nav-wrapper .top-header .tabs li#notifications-button a.custom-close-button {
  width: auto;
  height: auto;
  /*padding: 0;*/
  font-size: 20px;
  line-height: 20px;
  color: #E02424;
}
.nav-wrapper .top-header .tabs li#notifications-button a.custom-close-button i {
  font-size: 20px;
  line-height: 20px;
}
.nav-wrapper .top-header li.notifications-tab .dropdown-menu .dropdown-nav ul#notifications-list {
  max-height: calc(100vh - 200px);
  overflow-y: auto;
  padding-right: 8px;
  margin-right: -8px;
}
@media screen and (max-width: 1440px) {
  .nav-wrapper .top-header .tabs li a {
    font-size: 14px;
    line-height: 20px;
  }
  .nav-wrapper .top-header .tabs li a i {
    font-size: 20px;
    line-height: 20px;
  }
  .nav-wrapper .top-header .tabs li.user-tab a img {
    width: 28px;
    height: 28px;
    border-radius: 28px;
  }
  .nav-wrapper .top-header .tabs li.downloading-tab {
    padding: 0 12px;
  }
  .nav-wrapper .top-header .tabs.tabs-right li.downloading-tab a {
    padding: 4px 10px;
    font-size: 12px;
  }
  /* .nav-wrapper .top-header .tabs li.downloading-tab::after, 
  .nav-wrapper .top-header .tabs li.user-tab::after {
    height: 28px;
  } */
}

/* Main wrapper */
.main-wrapper {
  padding: 8px;
}
.custom-card {
  background-color: #fff;
  border: 1px solid #E6E9F0;
  padding: 8px;
  border-radius: 8px;
  margin-bottom: 8px;
  position: relative;
}
.custom-card .card-header .btn-container {
  column-gap: 8px;
}
.custom-card .card-header .btn {
    margin-bottom: 12px;
    height: 34px;
}
.custom-card .custom-card-content {
  column-gap: 8px;
}
.custom-card h2 {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: #012169;
}
/*.custom-card #ForecastTable_container {
  height: calc(100vh - 388px) !important;
}*/
.custom-card #ForecastTable_container.table-resize {
  height: calc(100vh - 143px) !important;
}
.custom-table {
  background: #fff;
  border: 1px solid #E6E9F0;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}
.custom-table .ag-root-wrapper {
  border: 0px;
  border-radius: 0;
}
.custom-table .ag-header {
  background: #EBEDF3;
}
.custom-table .ag-header-cell {
  padding: 6px 8px;
  height: 48px !important;
}
.custom-table .ag-header-cell .ag-header-cell-resize {
  right: -5px;
}
.custom-table .ag-header-cell .ag-header-cell-resize:after {
  width: 1px;
  height: 100%;
  top: 0;
  background-color: #D9DDE7;
}
.custom-table .ag-header-cell .ag-icon {
  color: #8A99BA;
}
.custom-table .ag-cell-label-container {
  padding: 0;
}
.custom-table .ag-header-cell .ag-header-cell-label {
  white-space: normal;
}
.custom-table .ag-header-cell .ag-header-cell-text {
  font-size: 12px !important;
  line-height: 18px;
  font-weight: 600;
  color: #344D87;
  display: block;
}
.custom-table .ag-input-field-input.ag-text-field-input {
  height: auto !important;
  border-bottom: 0px !important;
  box-shadow: unset !important;
}
.custom-table .ag-row {
  height: 25px !important;
}
.custom-table .ag-row.ag-row-hover::before {
  background: #E6F0F7 !important;
}
.custom-table .ag-row .ag-cell-value {
  border-color: #E5E7EB !important;
  padding: 4px 8px !important;
  border-left: 0px;
  border-top: 0px;
  font-size: 12px !important;
  line-height: 17px;
  font-weight: 500;
  color: #1F2A37;
  min-height: 25px !important;
}
.custom-table .ag-row .ag-cell-value div {
  column-gap: 4px;
  display: flex;
  align-items: center;
  justify-content: end;
}
.custom-table .ag-row .ag-cell-value:first-child {
  padding: 4px 10.25px !important;
}
.custom-table .ag-row .ag-cell-value.text-blue {
  color: #344D87;
}
.custom-table .ag-row .ag-cell-value:last-child {
  border-right: 0px !important;
}
.custom-table .ag-pinned-left-cols-container .ag-row .ag-cell-value:last-child, 
.custom-table .ag-pinned-left-floating-top .ag-row .ag-cell-value:last-child {
  border-right: 1px solid #E5E7EB !important;
}
/* .custom-table .ag-body-vertical-scroll, 
.custom-table .ag-body-vertical-scroll-viewport, 
.custom-table .ag-body-vertical-scroll-container {
  width: 5px !important;
  min-width: 5px !important;
  max-width: 5px !important;
}
.custom-table .ag-body-vertical-scroll .ag-body-vertical-scroll-viewport::-webkit-scrollbar, 
.custom-table .ag-floating-top::-webkit-scrollbar {
  width: 5px;
}
.custom-table .ag-body-vertical-scroll .ag-body-vertical-scroll-viewport::-webkit-scrollbar-track, 
.custom-table .ag-floating-top::-webkit-scrollbar-track, 
.custom-table .ag-body-horizontal-scroll .ag-body-horizontal-scroll-viewport::-webkit-scrollbar-track {
  background-color: #e6e9f0;
  border-radius: 10px;
}
.custom-table .ag-body-vertical-scroll .ag-body-vertical-scroll-viewport::-webkit-scrollbar-thumb, 
.custom-table .ag-floating-top::-webkit-scrollbar-thumb, 
.custom-table .ag-body-horizontal-scroll .ag-body-horizontal-scroll-viewport::-webkit-scrollbar-thumb {
  background: #012169; 
  border-radius: 10px;
}
.custom-table .ag-body-horizontal-scroll, 
.custom-table .ag-body-horizontal-scroll-viewport, 
.custom-table .ag-body-horizontal-scroll-container {
  height: 5px !important;
  min-height: 5px !important;
  max-height: 5px !important;
}
.custom-table .ag-body-horizontal-scroll .ag-body-horizontal-scroll-viewport::-webkit-scrollbar {
  height: 5px;
}
.custom-table .ag-horizontal-right-spacer {
  width: 5px !important;
  min-width: 5px !important;
  max-width: 5px !important;
} */
#hide_sum_boxes.btn-floating {
  line-height: unset;
  background: transparent;
  box-shadow: unset;
  width: unset;
  height: unset;
  border-radius: unset;
  top: 65px;
  right: 18px;
  display: flex;
}
#hide_sum_boxes.btn-floating i {
  font-size: 20px;
  line-height: 20px;
  color: #3389BE;
  transform: rotate(0deg);
  transition: .3s;
}
#hide_sum_boxes.btn-floating.arrow-rotate {
  transform: rotate(180deg);
}
.arrow-rotate + #sum-row_card {
  display: none;
}
#ForecastTable_Grid.custom-table .ag-header, #ipo_table_container.custom-table #upload_table_container.ag-header, .custom-table .ag-header {
  height: 48px !important;
  min-height: 48px !important;
}
#ForecastTable_Grid.custom-table .ag-header .ag-header-cell {
  border-top: 0px !important;
}
.main-wrapper .footer {
  margin-top: 0px;
}
.main-wrapper .footer p, .main-wrapper .footer a {
  line-height: 21px;
}
.ag-header-cell .ag-header-icon.ag-header-cell-menu-button {
  background: transparent !important;
  box-shadow: unset !important;
}
.custom-card #ipo_table_container {
    height: calc(100vh - 157px);
}
.custom-card #upload_table_container, .custom-card #retail_table_container {
  height: calc(100vh - 143px);
}
.custom-card #upload_table_container .ag-body, .custom-card #retail_table_container .ag-body {
    height: calc(100vh - 186px);
}

.custom-card #ipo_table_container .ag-body {
    height: calc(100vh - 208px);
}

/* Modal */
.modal-overlay {
    background: transparent;
    opacity: 1 !important;
}
.modal-dialog {
  position: relative;
  width: auto;
  max-width: 600px;
  margin: 1.75rem auto;
}
.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 3.5rem);
}
.modal-dialog.modal-sm {
  max-width: 400px;
}
.modal.custom-modal {
    left: 0;
    top: 0 !important;
    right: 0;
    bottom: 0;
    width: 100% !important;
    height: 100% !important;
    margin: auto;
    background: rgb(1 33 105 / 80%);
    max-height: unset;
    border-radius: 0;
    box-shadow: unset;
    transform: unset !important;
}
.custom-modal-content {
  width: 100%;
  background-color: #fff;
  border-radius: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
}
.modal-header h2 {
  font-size: 24px;
  line-height: 36px;
  font-weight: 400;
  color: #344D87;
  margin-bottom: 10px;
}
.modal-header a {
  font-size: 24px;
  line-height: 24px;
  color: #8A99BA;
  display: flex;
  position: absolute;
  right: 12px;
  top: 12px;
  cursor: pointer;
}
.modal-body p {
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  color: #4B5563;
  margin: 0;
}
.upload-modal-section-file-name-title {
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  color: #4B5563;
  margin-bottom: 12px;
}
.file-upload-wrapper {
  position: relative;
  width: 100%;
  height: 42px;
  overflow: hidden;
}
.file-upload-wrapper .upload-items-input#uploadBrowse {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  margin: 0;
  padding: 0;
  display: block !important;
  cursor: pointer;
  width: 100%;
}
.file-upload-wrapper:before {
  content: "Choose file";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  height: 42px;
  background: #344D87;
  color: #fff;
  border: 1px solid #E6E9F0;
  z-index: 25;
  padding: 10px 12px;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  pointer-events: none;
  border-radius: 8px 0 0 8px;
  width: 115px;
  text-align: center;
}
.file-upload-wrapper:after {
  content: attr(data-text);
  background: #F9FAFB;
  border: 1px solid #E6E9F0;
  border-radius: 8px;
  height: 42px;
  padding: 12px 16px;
  padding-left: 130px;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #4B5563;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 20;
  width: 100%;
}
.progress-wrapper {
  margin: 10px 0px 0px;
}
.progress-wrapper .progress-value {
  display: block;
  text-align: right;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: #6B7280;
}
.progress-wrapper .progress {
  height: 6px;
  border-radius: 2px;
  background-color: #E5E7EB;
  margin: 0;
  position: relative;
}
.progress-wrapper .progress-bar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background: #1A56DB;
  width: 100%;
  animation: indeterminateAnimation 1.5s infinite linear;
  transform-origin: 0% 50%;
}
/* .progress-wrapper .progress.complete .progress-bar {
  background: #31C48D;
} */
@keyframes indeterminateAnimation {
  0% {
    transform:  translateX(0) scaleX(0);
  }
  40% {
    transform:  translateX(0) scaleX(0.5);
}
  100% {
    transform:  translateX(100%) scaleX(0.7);
}
}
.custom-modal .modal-footer {
  height: auto;
  border-radius: 0;
  background: transparent;
  padding: 0;
  border-top: 1px dashed #B0BAD1;
  padding-top: 36px;
  margin-top: 32px;
  column-gap: 16px;
}
.custom-modal .modal-footer #upload, .custom-modal .modal-footer #iou_upload {
  width: auto;
}
.custom-collection .custom-collection-item {
  border-bottom: 1px dashed #B0BAD1;
  padding: 16px 0;
  column-gap: 20px;
  margin-bottom: 8px;
}
.custom-collection .custom-collection-item:last-child {
  border-bottom: 0px;
  margin-bottom: 0;
}
.custom-collection .custom-collection-item p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #374151;
}
.download-info {
  min-width: 155px;
  column-gap: 32px;
}
.download-info .progress-wrapper {
  width: 91px;
}
.download-info .custom-export-button {
  font-size: 32px;
  line-height: 32px;
  color: #344D87;
}
.download-info .custom-export-button::before {
  display: none !important;
}
.download-info .custom-close-button {
  width: 32px;
  height: 32px;
  font-size: 24px;
  line-height: 24px;
  color: #E02424 !important;
  padding: 4px;
  display: none;
}
.download-info.downloading .custom-export-button {
  display: none !important;
}
.download-info.downloading .custom-close-button {
  display: block !important;
}
.custom-collection.collapsible {
  box-shadow: none;
  max-height: calc(100vh - 248px);
  overflow-y: auto;
  margin-right: -16px;
  padding-right: 16px;
}
/* .custom-collection.collapsible::-webkit-scrollbar {
  width: 5px;
}
.custom-collection.collapsible::-webkit-scrollbar-track {
  background-color: #e6e9f0;
  border-radius: 10px;
}
.custom-collection.collapsible::-webkit-scrollbar-thumb {
  background: #012169; 
  border-radius: 10px;
} */
.custom-collection.collapsible > .custom-collection-item .collapsible-header {
  font-size: 16px;
  line-height: 24px;
  color: #012169;
  padding: 16px 0;
  column-gap: 12px;
  border-bottom: 1px solid #E6E9F0;
}
.custom-collection.collapsible > .custom-collection-item .collapsible-header i {
  font-size: 16px;
  line-height: 16px;
  color: #344D87;
  width: auto;
  margin: 0;
}
.custom-collection .custom-collection-item .collapsible-body {
  border-bottom: 0;
  padding: 10px 24px;
}
.custom-collection .custom-collection-item .collapsible-body .custom-collection .custom-collection-item {
  padding: 8px 0;
  margin-bottom: 0;
  border-bottom: 1px dashed #B0BAD1;
}
.form-control, .form-control#BookmarkName, input[type=text]:not(.browser-default) {
  width: 100%;
  height: 48px;
  background: #fff;
  margin: 0;
  border-radius: 8px;
  border: 1px solid #B0BAD1 !important;
  padding: 12px 24px;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 24px;
  color: #6B7280;
}
.form-control::placeholder, .form-control#BookmarkName::placeholder, 
input[type=text]:not(.browser-default)::placeholder {
  color: #6B7280;
  opacity: 0.8;
}
.search-wrapper .search_field {
  position: relative;
  margin-bottom: 10px;
}
.search-wrapper .search_field i {
  font-size: 24px;
  line-height: 24px;
  color: #6B7280;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 24px;
}
.search-wrapper .search_field .form-control {
  padding-left: 60px;
}
.search-wrapper .search-list-wrapper {
  margin: 4px 0;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  box-shadow: 0px 1px 2px #00000014;
  padding: 16px;
  max-height: calc(100vh - 331px);
  overflow-y: auto;
}
/* .search-wrapper .search-list-wrapper::-webkit-scrollbar {
  width: 5px;
}
.search-wrapper .search-list-wrapper::-webkit-scrollbar-track {
  background-color: #e6e9f0;
  border-radius: 10px;
}
.search-wrapper .search-list-wrapper::-webkit-scrollbar-thumb {
  background: #012169; 
  border-radius: 10px;
} */
.search-wrapper .search-list-wrapper h3 {
  font-size: 14px;
  line-height: 21px;
  font-weight: 600;
  color: #012169;
  margin-bottom: 12px;
}
.search-wrapper .search-list-wrapper ul {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
  margin: 0;
}
.search-wrapper .search-list-wrapper ul li {
  border-radius: 8px;
  padding: 8px 12px;
  background: #F9FAFB;
  column-gap: 4px;
  display: flex;
  align-items: center;
}
.search-wrapper .search-list-wrapper ul li .form-group {
  flex: 1 1 auto;
}
.search-wrapper .search-list-wrapper ul li .form-group input {
  visibility: hidden;
  height: auto;
  width: auto;
}
.search-wrapper .search-list-wrapper ul li .form-group label {
  font-size: 14px;
  line-height: 21px;
  color: #4B5563;
  padding-left: 26px;
  height: auto;
}
.search-wrapper .search-list-wrapper ul li .form-group label:before {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid #C7CACF;
  margin: 0;
  position: absolute;
  top: 1.5px;
  left: 0;
}
.search-wrapper .search-list-wrapper ul li .form-group label:after {
  content: "\f90e";
  font-family: 'forecast' !important;
  margin: 0;
  color: #fff;
  border-radius: 4px;
  width: 18px;
  height: 18px;
  background: #344D87;
  border: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 1.5px;
  opacity: 0;
  visibility: hidden;
}
.search-wrapper .search-list-wrapper ul li .form-group input:checked + label:after {
  opacity: 1;
  visibility: visible;
}
.search-wrapper .search-list-wrapper ul li .delete-bookmark {
  font-size: 10px;
  line-height: 10px;
  color: #858C96;
}

/*div loader*/
.loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loader {
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #3498db;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
}

/* Loader */
.preloader-background.lds-wrapper {
  position: fixed;
  z-index: 99999;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
}
.lds-dual-ring div {
  position: fixed;
  width: 80px;
  height: 80px;
  top: -100px;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  border-radius: 50%;
  border: 6px solid #000;
  border-color: #344D87 transparent #344D87 transparent;
  -webkit-animation: lds-dual-ring 2.2s linear infinite;
  animation: lds-dual-ring 2.2s linear infinite;
}
.lds-dual-ring div:nth-child(2) {
  width: 64px;
  height: 64px;
  border-color: transparent #011E60 transparent #011E60;
  -webkit-animation: lds-dual-ring_reverse 2.2s linear infinite;
  animation: lds-dual-ring_reverse 2.2s linear infinite;
}
.lds-double-ring {
  width: 200px !important;
  height: 200px !important;
  -webkit-transform: translate(-100px, -100px) scale(1) translate(100px, 100px);
  transform: translate(-100px, -100px) scale(1) translate(100px, 100px);
}
.preloader-background p {
  width: 100%;
  font-size: 20px !important;
  line-height: 28px;
  font-weight: 500;
  color: #374151;
  margin: 100px 0 0 !important;
  text-align: center;
  opacity: 1 !important;
}
@keyframes lds-dual-ring {
  0% {
      -webkit-transform: rotate(0);
      transform: rotate(0);
  }

  100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
  }
}

@-webkit-keyframes lds-dual-ring {
  0% {
      -webkit-transform: rotate(0);
      transform: rotate(0);
  }

  100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
  }
}

@keyframes lds-dual-ring_reverse {
  0% {
      -webkit-transform: rotate(0);
      transform: rotate(0);
  }

  100% {
      -webkit-transform: rotate(-360deg);
      transform: rotate(-360deg);
  }
}

@-webkit-keyframes lds-dual-ring_reverse {
  0% {
      -webkit-transform: rotate(0);
      transform: rotate(0);
  }

  100% {
      -webkit-transform: rotate(-360deg);
      transform: rotate(-360deg);
  }
}

.material-tooltip {
  padding: 8px 12px;
  font-size: 14px;
  border-radius: 4px;
  min-height: 32px;
}
.backdrop {
  background-color: #012169;
}

#notifications-side-nav.dropdown-menu.side-nav {
  background: #fff;
  box-shadow: 0 0 12px #0000001f;
  padding: 32px;
  width: 455px !important;
}
#notifications-side-nav.dropdown-menu .dropdown-nav li.custom-collection-item {
  padding: 12px 0px;
  margin: 0;
  box-shadow: unset;
}
#notifications-side-nav.dropdown-menu .dropdown-nav li.custom-collection-item .custom-close-button {
  padding: 0;
  font-size: 20px;
  line-height: 20px;
  color: #E02424;
  height: auto;
}
#notifications-side-nav.dropdown-menu .dropdown-nav li.custom-collection-item .custom-close-button i {
  margin: 0;
  height: auto;
  width: auto;
  color: #E02424;
}
#notifications-side-nav.dropdown-menu.side-nav #notifications-list {
  height: calc(100vh - 112px);
  overflow-y: auto;
  padding-right: 16px;
  margin-right: -16px;
}
/* #notifications-side-nav.dropdown-menu.side-nav #notifications-list::-webkit-scrollbar {
  width: 5px;
}
#notifications-side-nav.dropdown-menu.side-nav #notifications-list::-webkit-scrollbar-track {
  background-color: #e6e9f0;
  border-radius: 10px;
}
#notifications-side-nav.dropdown-menu.side-nav #notifications-list::-webkit-scrollbar-thumb {
  background: #012169; 
  border-radius: 10px;
} */
.ag-selection-checkbox {
  height: 20px !important;
  margin-top: -4px;
}
.custom-card .card-header .btn-container .filter-block {
  flex-wrap: wrap;
  column-gap: 8px;
  row-gap: 8px;
  margin-bottom: 20px;
}
.custom-card .card-header .btn-container .filter-block .btn {
  margin: 0;
  column-gap: 8px;
  padding: 4px 8px;
  border: 1px solid #D1D5DB;
  background: #F3F4F6 !important;
  font-size: 10px !important;
  line-height: 15px;
  font-weight: 500;
  color: #4B5563;
  height: unset;
  border-radius: 25px;
}
.custom-card .card-header .btn-container .filter-block .btn i {
  font-size: 14px;
  color: #E02424;
}

.prior-forecast-wrapper .custom-card-content .custom-table {
  border-radius: 8px;
  border: 1px solid #E6E9F0 !important;
  box-sizing: border-box;
  border-collapse: unset !important;
  padding: 0 !important;
}
.prior-forecast-wrapper .custom-card-content .custom-table thead {
  top: 0;
  position: sticky;
}
.prior-forecast-wrapper .custom-card-content .custom-table tr.header-row th {
  background-color: #E6E9F0;
  font-size: .6vw !important;
  padding: 6px 4px !important;
  line-height: 18px;
  color: #344D87;
  font-weight: 600;
  text-align: left !important;
  border-right: 1px solid #D9DDE7;
}
.prior-forecast-wrapper .custom-card-content .custom-table tr td, 
.prior-forecast-wrapper .custom-card-content .custom-table tr.sums-row th {
  font-size: .58vw !important;
  padding: 4px !important;
  line-height: 17px;
  color: #1F2A37;
  font-weight: 500;
  border-right: 1px solid #D9DDE7;
  border-bottom: 1px solid #E5E7EB !important;
  text-align: right !important;
}
.prior-forecast-wrapper .custom-card-content .custom-table tr.sums-row th {
  font-weight: 600;
}
.prior-forecast-wrapper .custom-card-content .custom-table tr.header-row th:last-child, 
.prior-forecast-wrapper .custom-card-content .custom-table tr td:last-child, 
.prior-forecast-wrapper .custom-card-content .custom-table tr.sums-row th:last-child {
  border-right: 0px;
}
.prior-forecast-wrapper .custom-card-content .custom-table tr:last-child td {
  border-bottom: 0px !important;
}
.prior-forecast-wrapper .custom-card-content .custom-table tr td:first-child {
  font-weight: 600;
  color: #344D87;
  text-align: left !important;
}
.custom-btn {
    background-color: #E6E9F0;
    color: #344D87;
    padding: 0.2625rem 0.3rem;
    font-size: 0.875rem;
    font-weight: 550;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    min-width: 75px;
}

.custom-btn:hover {
    background-color: #D5D8DF;
}

.custom-btn + .custom-btn {
    margin-left: 6px;
}

.header-break {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90%
}

    .header-break::after {
        content: " (Basis Points)";
        font-size: 1em;
        line-height: 0;
        margin-top: 2px;
    }

#user-units-basis-points {
    padding: 0;
    max-width: 100px;
    overflow: hidden;
}
#entryCount{
font-size: 12px !important;
line-height: 18px;
font-weight: 700;
}

#entryCountRetail {
    font-size: 12px !important;
    line-height: 18px;
    font-weight: 700;
}

.sign-in-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
    background-color: #EEF1F6;
    margin: 0;
}

.sign-in-card {
    width: 620px;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
    background-color: #fff;
    text-align: center;
}

.top-banner-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.sign-in-title {
    color: #003a86;
    font-size: 38px;
    font-weight: 300;
    line-height: 52px;
    margin-bottom: 4px;
    text-align: center;
}

.sign-in-subtitle {
    font-size: 16px;
    color: #344d87;
    margin-bottom: 20px;
}
.sign-in-Processing {
    font-size: 16px;
    color: #344d87;
    margin-bottom: 20px;
}
.input-field {
    margin-bottom: 15px;
    text-align: left;
}

    .input-field label {
        display: block;
        font-weight: 600;
        margin-bottom: 6px;
    }

    .input-field input {
        width: 100%;
        padding: 8px 12px;
        font-size: 16px;
        border: 1px solid #ccc;
        border-radius: 6px;
        box-sizing: border-box;
    }

.button-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    margin-top: 30px;
}

.sign-in-button {
    width: 65%;
    height: 50px;
    background-color: #eff0f1; /* Dark blue */
    color: #646465;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

    .sign-in-button:hover {
        background-color: #0056b3;
        color: white;
    }

    .sign-in-button:focus {
        outline: none;
        box-shadow: 0 0 0 4px rgba(25, 118, 210, 0.3);
    }

.sign-in-logo {
    height: 60px;
}

#exceptionsEntryCount {
    font-size: 12px !important;
    line-height: 18px;
    font-weight: 700;
}
.custom-table .ag-watermark {
    display: none !important;
}