:root {
  --bs-primary: #527a2d;
  --bs-success: #527a2d;
  --bs-warning: #c9852b;
  --bs-danger: #c0362c;
  --bs-info: #c9852b;
  --bs-white: #fffaf1;
  --bs-gray-200: #efe3cf;
  --bs-gray-300: #dfcfb2;
  --bs-gray-500: #786850;
  --bs-gray-600: #5f4d34;
  --bs-gray-700: #4b3a24;
  --bs-gray-800: #3a2a19;
  --bs-gray-900: #2a2114;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

img,
svg {
  vertical-align: middle;
}

img {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled,
.disabled {
  pointer-events: none;
  opacity: 0.55;
}

.row {
  --bs-gutter-x: 1.25rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row>* {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 768px) {
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

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

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

@media (min-width: 992px) {
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

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

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

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

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

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

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

@media (min-width: 1200px) {
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

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

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

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

  .g-xl-9,
  .gx-xl-9 {
    --bs-gutter-x: 2.25rem;
  }

  .g-xl-9,
  .gy-xl-9 {
    --bs-gutter-y: 2.25rem;
  }

  .g-xl-10,
  .gx-xl-10 {
    --bs-gutter-x: 2.5rem;
  }

  .g-xl-10,
  .gy-xl-10 {
    --bs-gutter-y: 2.5rem;
  }
}

@media (min-width: 1400px) {
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }

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

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

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

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

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

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

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

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

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

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

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

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

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

@media (max-width: 767.98px) {
  .d-md-block {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  .d-lg-block {
    display: none !important;
  }
}

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

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

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

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

.flex-row-fluid {
  flex: 1 auto;
  min-width: 0;
}

.flex-column-fluid {
  flex: 1 0 auto;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-stack {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }

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

@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }

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

@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-row-fluid {
    flex: 1 auto;
    min-width: 0;
  }

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

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

@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.w-lg-500px {
  width: min(100%, 500px) !important;
}

.w-lg-560px {
  width: min(100%, 560px) !important;
}

.w-40px {
  width: 40px !important;
}

.w-48px {
  width: 48px !important;
}

.w-80px {
  width: 80px !important;
}

.w-125px {
  width: 125px !important;
}

.w-150px {
  width: 150px !important;
}

.w-200px {
  width: 200px !important;
}

.w-225px {
  width: 225px !important;
}

.w-275px {
  width: 275px !important;
}

.w-350px {
  width: 350px !important;
}

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

.w-md-425px {
  width: 425px !important;
}

.w-xl-500px {
  width: 500px !important;
}

.w-1000px {
  width: min(100%, 1000px) !important;
}

.mw-750px {
  max-width: 750px !important;
}

.min-w-0 {
  min-width: 0 !important;
}

.min-w-130px {
  min-width: 130px !important;
}

.min-w-150px {
  min-width: 150px !important;
}

.min-w-170px {
  min-width: 170px !important;
}

.min-w-180px {
  min-width: 180px !important;
}

.min-w-220px {
  min-width: 220px !important;
}

.min-w-230px {
  min-width: 230px !important;
}

.min-w-250px {
  min-width: 250px !important;
}

.min-w-280px {
  min-width: 280px !important;
}

.min-w-300px {
  min-width: 300px !important;
}

.min-w-320px {
  min-width: 320px !important;
}

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

.h-5px {
  height: 5px !important;
}

.h-48px {
  height: 48px !important;
}

.h-60px {
  height: 60px !important;
}

.h-80px {
  height: 80px !important;
}

.h-125px {
  height: 125px !important;
}

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

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

@media (min-width: 992px) {
  .w-lg-50 {
    width: 50% !important;
  }

  .h-lg-75px {
    height: 75px !important;
  }
}

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

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

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

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

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

.my-10 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.my-14 {
  margin-top: 3.5rem !important;
  margin-bottom: 3.5rem !important;
}

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

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

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

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

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

.mt-7 {
  margin-top: 1.75rem !important;
}

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

.mt-10 {
  margin-top: 2.5rem !important;
}

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

.mt-n1 {
  margin-top: -0.25rem !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: 0.75rem !important;
}

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

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

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

.mb-7 {
  margin-bottom: 1.75rem !important;
}

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

.mb-9 {
  margin-bottom: 2.25rem !important;
}

.mb-10 {
  margin-bottom: 2.5rem !important;
}

.mb-11 {
  margin-bottom: 2.75rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.p-10 {
  padding: 2.5rem !important;
}

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

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

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

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

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

.px-7 {
  padding-right: 1.75rem !important;
  padding-left: 1.75rem !important;
}

.px-10 {
  padding-right: 2.5rem !important;
  padding-left: 2.5rem !important;
}

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

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

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

.py-7 {
  padding-top: 1.75rem !important;
  padding-bottom: 1.75rem !important;
}

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

.py-10 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

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

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

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

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

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

.pt-7 {
  padding-top: 1.75rem !important;
}

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

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

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

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

.pb-10 {
  padding-bottom: 2.5rem !important;
}

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

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

@media (min-width: 768px) {
  .px-md-15 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }
}

@media (min-width: 992px) {
  .mx-lg-4 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .px-lg-10 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .py-lg-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .py-lg-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }

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

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

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

@media (min-width: 1200px) {
  .p-xl-5 {
    padding: 1.25rem !important;
  }

  .p-xl-7 {
    padding: 1.75rem !important;
  }

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

  .mb-xl-10 {
    margin-bottom: 2.5rem !important;
  }
}

.fs-2hx {
  font-size: clamp(1.8rem, 3vw, 2.6rem) !important;
}

.fs-2qx {
  font-size: clamp(1.8rem, 3.2vw, 3rem) !important;
}

.fs-2 {
  font-size: 1.35rem !important;
}

.fs-3 {
  font-size: 1.2rem !important;
}

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

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

.fs-6,
.fs-base {
  font-size: 0.9rem !important;
}

.fs-7 {
  font-size: 0.82rem !important;
}

.fs-8 {
  font-size: 0.74rem !important;
}

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

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

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

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

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

.font-monospace {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace !important;
}

@media (min-width: 1200px) {
  .fs-xl-6 {
    font-size: 0.9rem !important;
  }
}

.text-primary,
.link-primary {
  color: var(--bs-primary) !important;
}

.text-success {
  color: var(--bs-success) !important;
}

.text-warning {
  color: var(--bs-warning) !important;
}

.text-danger {
  color: var(--bs-danger) !important;
}

.text-white {
  color: #ffffff !important;
}

.text-muted,
.text-gray-500 {
  color: var(--bs-gray-500) !important;
}

.text-gray-600 {
  color: var(--bs-gray-600) !important;
}

.text-gray-700 {
  color: var(--bs-gray-700) !important;
}

.text-gray-900 {
  color: var(--bs-gray-900) !important;
}

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

.bg-white {
  background-color: #ffffff !important;
}

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

.bg-light,
.bg-secondary {
  background-color: var(--td-muted, #efe3cf) !important;
}

.bg-light-primary {
  background-color: #eaf1ff !important;
}

.bg-light-success {
  background-color: #edf8f2 !important;
}

.bg-light-warning {
  background-color: #fff8e8 !important;
}

.bg-light-danger {
  background-color: #fff1ef !important;
}

.bg-light-info {
  background-color: #e9fbfd !important;
}

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

.bg-active-success.active {
  background-color: var(--bs-success) !important;
}

.border {
  border: 1px solid #d8e0ec !important;
}

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

.border-gray-200 {
  border-color: #e6ebf3 !important;
}

.border-gray-300 {
  border-color: #d8e0ec !important;
}

.rounded {
  border-radius: 8px !important;
}

.rounded-3,
.rounded-4 {
  border-radius: 8px !important;
}

.rounded-lg {
  border-radius: 8px !important;
}

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

.shadow-sm {
  box-shadow: 0 1px 2px rgba(18, 35, 66, 0.05) !important;
}

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

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

@media (min-width: 992px) {
  .order-lg-1 {
    order: 1 !important;
  }

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

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #ffffff;
  border: 1px solid #d8e0ec;
  border-radius: 8px;
}

.card-header,
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.card-title {
  display: flex;
  align-items: center;
  margin: 0;
}

.card-toolbar {
  display: flex;
  align-items: center;
}

.card-body {
  flex: 1 1 auto;
}

.card-flush,
.card-dashed {
  background-clip: border-box;
}

.card-dashed {
  border-style: dashed;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 38px;
  padding: 0.55rem 0.9rem;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #ffffff;
  color: var(--bs-gray-800);
  text-decoration: none;
  line-height: 1.2;
  user-select: none;
}

.btn-sm {
  min-height: 32px;
  padding: 0.42rem 0.7rem;
  font-size: 0.8rem;
}

.btn-lg {
  min-height: 46px;
  padding: 0.72rem 1rem;
}

.btn-icon {
  width: 34px;
  min-width: 34px;
  padding-right: 0;
  padding-left: 0;
}

.btn-flex {
  display: flex;
}

.btn-primary {
  background: var(--bs-primary);
  border-color: var(--bs-primary);
  color: #ffffff;
}

.btn-warning {
  background: #f3b53f;
  border-color: #f3b53f;
  color: #172033;
}

.btn-light,
.btn-light-primary,
.btn-light-info,
.btn-light-warning,
.btn-light-danger,
.btn-active-light-primary {
  background: #ffffff;
  border-color: #c3ccdb;
  color: var(--bs-gray-700);
}

.btn-outline {
  border-color: #c3ccdb;
}

.btn-text-white {
  color: #ffffff !important;
}

.btn-text-gray-700,
.btn-color-light-dark {
  color: var(--bs-gray-700) !important;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 24px;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  border: 1px solid #d8e0ec;
  background: #ffffff;
  color: var(--bs-gray-700);
  font-size: 0.72rem;
  line-height: 1;
  white-space: nowrap;
}

.badge-light,
.badge-light-dark,
.badge-light-info,
.badge-outline-danger {
  background: #ffffff;
  color: var(--bs-gray-700);
}

.badge-light-primary {
  background: #eaf1ff;
  border-color: #b8c9ff;
  color: #12306f;
}

.badge-light-success {
  background: #edf8f2;
  border-color: #b7e2ce;
  color: #16885a;
}

.badge-light-warning {
  background: #fff8e8;
  border-color: #f0d49b;
  color: #b7791f;
}

.badge-light-danger,
.badge-outline-danger {
  background: #fff1ef;
  border-color: #efb5ae;
  color: #c0362c;
}

.form {
  margin: 0;
}

.form-label {
  display: inline-block;
}

.form-control,
.form-select {
  display: block;
  width: 100%;
  min-height: 38px;
  padding: 0.55rem 0.75rem;
  border: 1px solid #c3ccdb;
  border-radius: 8px;
  background: #ffffff;
  color: var(--bs-gray-900);
  line-height: 1.4;
}

.form-select {
  appearance: none;
  padding-right: 2.2rem;
  background-image: linear-gradient(45deg, transparent 50%, #6c7890 50%), linear-gradient(135deg, #6c7890 50%, transparent 50%);
  background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.form-select-sm {
  min-height: 32px;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
  font-size: 0.8rem;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-check-inline {
  display: inline-flex;
}

.form-check-input {
  width: 1rem;
  height: 1rem;
  margin: 0;
  accent-color: var(--bs-primary);
}

.form-switch .form-check-input {
  width: 2rem;
  border-radius: 999px;
}

.required::after {
  content: " *";
  color: var(--bs-danger);
}

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

.table {
  width: 100%;
  border-collapse: collapse;
  vertical-align: top;
}

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

.table-row-dashed tbody tr {
  border-bottom: 1px solid #d8e0ec;
}

.gs-0 {
  border-spacing: 0;
}

.alert {
  padding: 1.15rem 1.25rem;
  border: 1px solid #d8e0ec;
  border-radius: 12px;
  background: #ffffff;
  font-size: 0.98rem;
  line-height: 1.55;
}

.alert-danger {
  border-color: #efb5ae;
  background: #fff1ef;
  color: #8f261f;
}

.alert-light {
  background: #f6f8fb;
}

.separator {
  height: 1px;
  background: #d8e0ec;
}

.separator-dashed {
  border-top: 1px dashed #c3ccdb;
  background: transparent;
}

.separator-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: auto;
  background: transparent;
  text-align: center;
}

.separator-content::before,
.separator-content::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #d8e0ec;
}

.symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.symbol-35px {
  width: 35px;
  height: 35px;
}

.symbol-38px {
  width: 38px;
  height: 38px;
}

.symbol-40px {
  width: 40px;
  height: 40px;
}

.symbol-45px {
  width: 45px;
  height: 45px;
}

.symbol-50px {
  width: 50px;
  height: 50px;
}

.symbol-80px {
  width: 80px;
  height: 80px;
}

.symbol-circle,
.symbol-circle>img,
.symbol-circle .symbol-label {
  border-radius: 8px;
}

.symbol-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

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

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.fade {
  transition: opacity 0.15s linear;
}

.fade:not(.show) {
  opacity: 0;
}

.pagination {
  display: flex;
  gap: 0.35rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 34px;
  padding: 0.35rem 0.65rem;
  border: 1px solid #c3ccdb;
  border-radius: 8px;
  background: #ffffff;
  color: var(--bs-gray-700);
  text-decoration: none;
}

.page-item.active .page-link {
  background: var(--bs-primary);
  border-color: var(--bs-primary);
  color: #ffffff;
}

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

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

.list-group-item {
  display: block;
  padding: 0.75rem 0;
}

.list-group-flush .list-group-item {
  border-bottom: 1px solid #d8e0ec;
}

.td-toast-stack {
  position: fixed;
  right: 16px;
  top: 16px;
  z-index: 1200;
  display: grid;
  gap: 10px;
  width: min(440px, calc(100vw - 32px));
}

.td-toast {
  padding: 16px 18px;
  border: 1px solid #d8e0ec;
  border-left-width: 4px;
  border-radius: 14px;
  background: #ffffff;
  color: var(--bs-gray-800);
  box-shadow: 0 12px 28px rgba(18, 35, 66, 0.12);
}

.td-toast--success {
  border-left-color: var(--bs-success);
}

.td-toast--error {
  border-left-color: var(--bs-danger);
}

.td-toast--info {
  border-left-color: var(--bs-info);
}

.td-toast__title {
  color: var(--bs-gray-900);
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.3;
}

.td-toast__message {
  margin-top: 0.25rem;
  font-size: 0.92rem;
  color: var(--bs-gray-600);
  line-height: 1.45;
}

@media (max-width: 767.98px) {
  .col-6 {
    width: 100%;
  }

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

  .px-10,
  .p-10 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
}
