:root {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 70px;
}

body {
  /* font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; */
  font-family: "Inter", sans-serif;
  font-weight: 400;
  background-color: #f3f2f2;
}

a {
  color: #273ad8;
  text-decoration: none;
}

a:hover {
  color: #717ff5;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

b,
strong {
  font-weight: 700;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #4154f1;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6776f4;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Light Backgrounds
--------------------------------------------------------------*/
.bg-primary-light {
  background-color: #cfe2ff;
  border-color: #cfe2ff;
}

.bg-secondary-light {
  background-color: #e2e3e5;
  border-color: #e2e3e5;
}

.bg-success-light {
  background-color: #d1e7dd;
  border-color: #d1e7dd;
}

.bg-danger-light {
  background-color: #f8d7da;
  border-color: #f8d7da;
}

.bg-warning-light {
  background-color: #fff3cd;
  border-color: #fff3cd;
}

.bg-info-light {
  background-color: #cff4fc;
  border-color: #cff4fc;
}

.bg-dark-light {
  background-color: #d3d3d4;
  border-color: #d3d3d4;
}

/*--------------------------------------------------------------
# Card
--------------------------------------------------------------*/
.card {
  margin-bottom: 30px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.card-header,
.card-footer {
  border-color: var(--neutral);
  background-color: #fff;
  color: #798eb3;
  padding: 15px;
}

.card-title {
  padding: 20px 0 15px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--secondary);
  font-family: "Montserrat", sans-serif;
}

.card-title span {
  color: #899bbd;
  font-size: 14px;
  font-weight: 400;
}

.card-body {
  padding: 0 20px 20px 20px;
}

.card-img-overlay {
  background-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .card {
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Alerts
--------------------------------------------------------------*/
.alert-heading {
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumb {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  color: var(--primary-light);
  font-weight: 600;
}

.breadcrumb a {
  color: var(--primary-light);
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb .breadcrumb-item::before {
  color: var(--primary-light);
}

.breadcrumb .active {
  color: var(--primary);
  font-weight: 600;
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
  margin-bottom: 10px;
}

.pagetitle h1 {
  font-size: 27px;
  margin-bottom: 0;
  font-weight: 500;
  color: var(--secondary);
}

.pagetitle nav {
  --bs-breadcrumb-divider: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M2.5 0L1 1.5 3.5 4 1 6.5 2.5 8l4-4-4-4z' fill='%236c757d'/%3E%3C/svg%3E");
}

/*--------------------------------------------------------------
# Toasts
--------------------------------------------------------------*/
.invalid-feedback {
  display: block;
}

#toast-container {
  --sidebar-width: 300px;
  position: fixed;
  inset: 80px auto auto calc(50% + var(--sidebar-width) / 2);
  z-index: 1000;
  max-inline-size: calc(90vw - var(--sidebar-width));
  transform: translateX(-50%);
  transition: all 0.3s;
}

@media (min-width: 1200px) {
  body.toggle-sidebar #toast-container {
    --sidebar-width: 1px;
  }
}

@media (max-width: 1199px) {
  body:not(.toggle-sidebar) #toast-container {
    --sidebar-width: 1px;
  }
}

@media (max-width: 992px) {
  #toast-container {
    --sidebar-width: 1px;
  }
}

/*--------------------------------------------------------------
# Close Button
--------------------------------------------------------------*/
.btn-close {
  background-size: 25%;
}

.btn-close:focus {
  outline: 0;
  box-shadow: none;
}

/*--------------------------------------------------------------
# User fields
--------------------------------------------------------------*/
#user-fields__wrapper {
  display: none;
}